DownStatus
Real-time up/down status for 90+ popular services
A keyless JSON feed reporting whether services like Discord, GitHub and Cloudflare are operational, degraded or down, aggregated from user reports. Query one service by slug, list every tracked service, or pull ongoing outages. Each record carries recent report counts and a link to the human-readable status page.
GET https://isitdownstatus.com/api/v1/status/discord
{
"ok": true,
"data": {
"slug": "discord",
"name": "Discord",
"category": "social",
"status": "operational",
"report_count_24h": 0,
"updated_at": "2026-07-05T16:23:55.268Z"
}
}curl "https://isitdownstatus.com/api/v1/status/discord"const res = await fetch("https://isitdownstatus.com/api/v1/status/discord");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://isitdownstatus.com/api/v1/status/discord")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/status/discordPROBEDReal-time up/down status for 90+ popular services
/healthHealth check — confirms the service is up.
/pingLightweight ping endpoint.
/statusService status metadata.
/status/1Status details by ID (example: 1).
/status?limit=10Service status metadata.
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.
DownStatus: common questions
Is DownStatus free to use?
Yes — DownStatus is a free developer tools API. Free tier: Free — no API key (per docs). Whether the free tier allows commercial use is unclear — check the provider docs.
Does DownStatus need an API key?
No — DownStatus needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call DownStatus from the browser?
Not directly — DownStatus doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is DownStatus up right now?
As of our last scheduled check, DownStatus is dying with 60.8% uptime over 90 days and a 589 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.