Launch Library 2
Database of rocket launches, agencies, and space events
Launch Library 2, by The Space Devs, is a detailed database of past and upcoming rocket launches, providers, pads, and related events. Query upcoming launches to get status, timing windows, launch provider, and rocket details as JSON. It's keyless, but anonymous requests are throttled to a low rate.
GET https://ll.thespacedevs.com/2.2.0/launch/upcoming/?limit=1
{
"count": 365,
"results": [
{
"id": "1ef27ca1-af91-48bb-b934-3da5abd9f711",
"name": "Falcon 9 Block 5 | Starlink Group 10-50",
"status": {
"name": "Go for Launch",
"abbrev": "Go"
},
"net": "2026-07-05T10:50:00Z",
"launch_service_provider": {
"name": "SpaceX",
"type": "Commercial"
}
}
]
}curl "https://ll.thespacedevs.com/2.2.0/launch/upcoming/?limit=1"const res = await fetch("https://ll.thespacedevs.com/2.2.0/launch/upcoming/?limit=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://ll.thespacedevs.com/2.2.0/launch/upcoming/?limit=1")
print(res.json())/launch/upcoming/?limit=1PROBEDDatabase of rocket launches, agencies, and space events
/launchLaunch — documented GET route.
/launch/1Launch details by ID (example: 1).
/launch?limit=10Launch — documented GET route.
/launch/search?q=testSearch by query parameters.
/launch/upcoming/?limit=5Upcoming — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Launch Library 2: common questions
Is Launch Library 2 free to use?
Yes — Launch Library 2 is a free science & space API. Free tier: Free — no key (The Space Devs LL2). Whether the free tier allows commercial use is unclear — check the provider docs.
Does Launch Library 2 need an API key?
No — Launch Library 2 needs no API key or signup. You can call it straight away; rate limits still apply (Anonymous requests are throttled to a low rate (see docs)).
Can I call Launch Library 2 from the browser?
Yes — Launch Library 2 returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Launch Library 2 up right now?
As of our last scheduled check, Launch Library 2 is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.