Free SpaceX overview - latest launch, rocket count, company stats. Try before you buy.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://spacex-data-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Look up a specific SpaceX launch by name or ID
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Launch name (e.g. \"Crew-5\") or launch ID"
}
},
"required": [
"query"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://spacex-data-production.up.railway.app/entrypoints/launch-lookup/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "<Launch name (e.g. \"Crew-5\") or launch ID>"
}
}
'
Get upcoming SpaceX launches with optional filtering
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 10,
"description": "Max launches to return",
"type": "number"
},
"rocketType": {
"default": "all",
"type": "string",
"enum": [
"falcon9",
"falcon-heavy",
"starship",
"all"
]
}
},
"required": [
"limit",
"rocketType"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://spacex-data-production.up.railway.app/entrypoints/upcoming-launches/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0,
"rocketType": "falcon9"
}
}
'
Get detailed rocket specifications by name or all rockets
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"name": {
"description": "Rocket name (e.g. \"Falcon 9\", \"Falcon Heavy\", \"Starship\") or omit for all",
"type": "string"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://spacex-data-production.up.railway.app/entrypoints/rockets/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"name": "<Rocket name (e.g. \"Falcon 9\", \"Falcon Heavy\", \"Starship\") or omit for all>"
}
}
'
Get Starlink satellite constellation data with optional filtering
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 50,
"description": "Max satellites to return",
"type": "number"
},
"version": {
"description": "Filter by version (e.g. \"v1.0\", \"v1.5\")",
"type": "string"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://spacex-data-production.up.railway.app/entrypoints/starlink/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Comprehensive SpaceX report: all rockets, launchpads, recent launches, upcoming launches, and Starlink stats
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"recentLaunchCount": {
"default": 5,
"type": "number"
},
"upcomingLaunchCount": {
"default": 5,
"type": "number"
}
},
"required": [
"recentLaunchCount",
"upcomingLaunchCount"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://spacex-data-production.up.railway.app/entrypoints/full-report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"recentLaunchCount": 0,
"upcomingLaunchCount": 0
}
}
'
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://spacex-data-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://spacex-data-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Export payment data as CSV
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://spacex-data-production.up.railway.app/entrypoints/analytics-csv/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'