DownStatus

Real-time up/down status for 90+ popular services

AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
ON PROBE SCHEDULE

We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗

Uptime historystarts after first probe

On our probe schedule. Uptime charts appear after the first check lands.

Example responsefrom provider docs — not verified by us
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"
  }
}
Call itcurl · fetch · python
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())
Endpoints · 6On scheduleFULL DOCS ↗
On schedule — GET /status/discord awaits first probe
GET/status/discordPROBED

Real-time up/down status for 90+ popular services

GET/health

Health check — confirms the service is up.

GET/ping

Lightweight ping endpoint.

GET/status

Service status metadata.

GET/status/1

Status details by ID (example: 1).

GET/status?limit=10

Service status metadata.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

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.