Science
Deep detail for a single rocket launch by id API
Full normalized record for one Launch Library 2 launch UUID: countdown / is-past, status with hold/fail reasons, window, weather probability, rocket family, mission + orbit, pad + country, attempt-count stats (pad/agency/orbital), and media links. Answers 'details of this specific launch', 'was this launch successful', 'orbit and pad for launch X'.
Price$0.01per request
MethodPOST
Route/v1/science/launch-detail
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
sciencespacelaunchrocketdetailspaceflightmissionlaunch-library
API URL
Integration docshttps://x402.hexl.dev/v1/science/launch-detailExample request
{
"id": "cfff5e89-af2e-46b1-9446-7b0f18de4ef7"
}Example response
{
"id": "cfff5e89-af2e-46b1-9446-7b0f18de4ef7",
"name": "Falcon 9 Block 5 | Starlink Group 10-43",
"slug": "falcon-9-block-5-starlink-group-10-43",
"net": "2026-06-04T10:26:30Z",
"windowStart": "2026-06-04T08:00:00Z",
"windowEnd": "2026-06-04T12:00:00Z",
"countdown": "imminent/now",
"secondsToLaunch": -49676,
"isPast": true,
"status": "Launch Successful",
"statusAbbrev": "Success",
"holdReason": null,
"failReason": null,
"weatherProbabilityPct": 95,
"webcastLive": false,
"provider": "SpaceX",
"providerType": "Commercial",
"rocket": "Falcon 9",
"rocketFamily": "Falcon",
"mission": "Starlink Group 10-43",
"missionType": "Communications",
"orbit": "Low Earth Orbit",
"pad": "Space Launch Complex 40",
"location": "Cape Canaveral SFS, FL, USA",
"countryCode": "USA",
"stats": {
"padLaunchAttempt": 385,
"agencyLaunchAttempt": 685,
"orbitalLaunchAttempt": 7301
},
"image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/falcon2520925_image_20221009234147.png",
"video": "https://www.youtube.com/watch?v=ZBpk_W5VFBI",
"lastUpdated": "2026-06-04T11:57:18Z"
}Input schema
{
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"description": "Launch Library 2 launch UUID",
"pattern": "^[a-fA-F0-9-]{8,40}$"
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}