Free overview of current space activity - astronauts in space and daily astronomy picture title
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://space-data-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
NASA Astronomy Picture of the Day with full details, explanation, and media URL
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"date": {
"description": "Date in YYYY-MM-DD format (defaults to today)",
"type": "string"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://space-data-agent-production.up.railway.app/entrypoints/apod/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"date": "<Date in YYYY-MM-DD format (defaults to today)>"
}
}
'
Current humans in space, grouped by spacecraft (ISS, Tiangong, etc.)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://space-data-agent-production.up.railway.app/entrypoints/astronauts/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Near-Earth objects (asteroids) approaching Earth within date range
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"startDate": {
"description": "Start date YYYY-MM-DD (defaults to today)",
"type": "string"
},
"endDate": {
"description": "End date YYYY-MM-DD (defaults to start + 3 days)",
"type": "string"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://space-data-agent-production.up.railway.app/entrypoints/asteroids/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"startDate": "<Start date YYYY-MM-DD (defaults to today)>",
"endDate": "<End date YYYY-MM-DD (defaults to start + 3 days)>"
}
}
'
Current International Space Station location (latitude/longitude)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://space-data-agent-production.up.railway.app/entrypoints/iss/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Comprehensive space briefing: APOD, astronauts, asteroids, and ISS location in one call
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"includeAsteroids": {
"default": true,
"description": "Include near-Earth objects (adds latency)",
"type": "boolean"
}
},
"required": [
"includeAsteroids"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://space-data-agent-production.up.railway.app/entrypoints/report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"includeAsteroids": true
}
}
'
Payment analytics summary
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"description": "Time window in ms",
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://space-data-agent-production.up.railway.app/entrypoints/analytics/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'
analytics-transactions
Invoke
Recent payment transactions
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
},
"limit": {
"default": 50,
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://space-data-agent-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'