WAITLIST

WebsiteDown API — in beta

Programmatic access to outage signals, status checks, and uptime intelligence. Join the waitlist — we'll email you when the first endpoints ship.

We'll only email about the API launch. No marketing list.

Who this is for

The API is shaped for the integrations that have already emailed us asking. If yours isn't in this list, the waitlist form has a free-text field — tell us.

Status pages
Pull live up/down + latency for the services your product depends on; render a public status widget.
Hosting dashboards
Show customers whether their site is reachable from outside their network, with an outage source attached.
Monitoring tools
Cross-reference your own probe results against community reports + official status pages to reduce false positives.
Support bots
When a customer asks 'is X down?' on chat, fetch the verdict + sources in 200ms — no human required.
Internal dashboards
Wallboards, NOC TVs, on-call rotations — give the team a single source for 'is the internet OK?'.
Outage retros
Pull historical incidents (start/end timestamps, severity, root cause if known) for post-mortem documents.

Planned endpoints

Shapes likely to ship in the first cut. Labelled planned everywhere — these URLs do not respond yet. If a missing endpoint is the difference between you using us and rolling your own, mention it on the waitlist form.

GET/v1/check?url=https://example.com
Single-domain HTTP probe — status code, latency, reachable, error
GET/v1/speed?url=https://example.com
DNS / TCP / TLS / TTFB waterfall + A–F grade
GET/v1/outages?service=discord
Active + recent outages for a service, with sources
GET/v1/services/{slug}/status
Current operational status + per-source signals
GET/v1/services/{slug}/incidents?limit=10
Historical incident log with severity + duration
GET/v1/internet-status
Aggregate health score across all tracked services

Example response

What GET /v1/services/discord/status will return (shape; values illustrative).

{
  "service": "discord",
  "domain": "discord.com",
  "verdict": "no_confirmed_outage",
  "severity": "healthy",
  "checked_at": "2026-05-16T01:23:45Z",
  "probe": {
    "reachable": true,
    "status_code": 200,
    "latency_ms": 142,
    "region": "us-east-1"
  },
  "official_status": {
    "indicator": "none",
    "description": "All Systems Operational",
    "url": "https://discordstatus.com"
  },
  "user_reports": {
    "reports_24h": 12,
    "anomaly": "normal",
    "spike": false
  },
  "external_signals": [],
  "sources": [
    { "title": "Discord Status",
      "url": "https://discordstatus.com",
      "published_at": "2026-05-16T01:20:00Z" }
  ]
}

Pricing

Free tier for personal use and prototyping. Paid tier for commercial volume, higher rate limits, and SLAs. Final pricing TBA — waitlist members will get a preview before launch.

← Back to WebsiteDown
API — WebsiteDown