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.
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://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())/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.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
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?
Yes — DownStatus 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 DownStatus up right now?
DownStatus 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.