FIRST News API
FIRST News API — Public query for FIRST News with additional parameters …
FIRST News API exposes public query for FIRST News with additional parameters for filtering results. No credentials required. We verified a keyless GET endpoint returning JSON (News). Check the provider docs for rate limits and terms before production use.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://api.first.org/data/v1/news?channel=What%27s+New&limit=3&pretty=true
{
"status": "OK",
"status-code": 200,
"version": "1.0",
"access": "public",
"total": 501,
"offset": 0,
"limit": 100,
"data": [
{
"id": 41240,
"title": "When FIRSTCON26 Rode into Denver",
"summary": "Well, partner... what a week. This June, 700 cybersecurity professionals saddled up in Denver, Colorado for the 38th Annual FIRST Conference (FIRSTCON26), proving once again that when the global incident response community gets together, great things happen.",
"link": "https://www.first.org/blog/20260703-When-FIRSTCON26-Rode-into-Denver",
"image": "https://www.first.org/blog/",
"published": "Fri, 03 Jul 2026 00:00:00 GMT"
},
{
"id": 41239,
"title": "FIRST Concludes FIRSTCON26 Amid Record Surge in Cyber Vulnerabilities",
"summary": "Five-day summit highlights AI-driven CVE spikes, breakthrough incident response frameworks, and a major expansion of global capacity-building initiatives",
"link": "https://www.first.org/newsroom/releases/20260619",
"published": "Fri, 19 Jun 2026 19:00:00 GMT"
}
]
}curl "https://api.first.org/data/v1/news?channel=What%27s+New&limit=3&pretty=true"const res = await fetch("https://api.first.org/data/v1/news?channel=What%27s+New&limit=3&pretty=true");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.first.org/data/v1/news?channel=What%27s+New&limit=3&pretty=true")
print(res.json())/data/v1/news?channel=What%27s+New&limit=3&pretty=truePROBEDFIRST News API — Public query for FIRST News with additional parameters …
/dataData — documented GET route.
/data/1Data details by ID (example: 1).
/data?limit=10Data — documented GET route.
/data/search?q=testSearch by query parameters.
/data/v1/news?limit=5News articles or headlines.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
FIRST News API: common questions
Is FIRST News API free to use?
Yes — FIRST News API is a free open data API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does FIRST News API need an API key?
No — FIRST News API needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call FIRST News API from the browser?
Yes — FIRST News API 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 FIRST News API up right now?
FIRST News API is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.