Spaceflight News
News, blogs, and reports about spaceflight in one JSON API
The Spaceflight News API (SNAPI v4) aggregates articles, blogs, and reports from across the space industry. Results are paginated JSON with titles, summaries, source sites, and links, and can be tied to specific launches or events. No key required.
GET https://api.spaceflightnewsapi.net/v4/articles/?limit=1
{
"count": 34986,
"results": [
{
"id": 38810,
"title": "Vast's Haven-1 continues to advance through milestones ahead of planned 2027 launch",
"news_site": "NASASpaceflight",
"published_at": "2026-07-04T22:10:06Z",
"url": "https://www.nasaspaceflight.com/2026/07/vast-update-070426/"
}
]
}curl "https://api.spaceflightnewsapi.net/v4/articles/?limit=1"const res = await fetch("https://api.spaceflightnewsapi.net/v4/articles/?limit=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.spaceflightnewsapi.net/v4/articles/?limit=1")
print(res.json())/articles/?limit=1PROBEDNews, blogs, and reports about spaceflight in one JSON API
/articles/?limit=5Articles — documented GET route.
/articles/?page=1Articles — documented GET route.
/docsDocs — 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.
Spaceflight News: common questions
Is Spaceflight News free to use?
Yes — Spaceflight News is a free open data API. Free tier: Free — no key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Spaceflight News need an API key?
No — Spaceflight News needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Spaceflight News from the browser?
Yes — Spaceflight News 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 Spaceflight News up right now?
As of our last scheduled check, Spaceflight News is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.