Status feeds

Machine‑readable and subscription‑based access to incident and maintenance updates.

JSON feed

The JSON feed contains a structured overview of recent incidents and maintenance events. It is suitable for integrations, scripts, dashboards, and monitoring tools.

Endpoint

/feed.json

Typical use cases

  • Status integrations in internal tools
  • Automated monitoring or alerting
  • Custom dashboards

Example response

{
  "generated_at": "2026-01-13T18:42:00+00:00",
  "items": [
    {
      "type": "incident",
      "id": 27,
      "title": "API latency issues",
      "status": "investigating",
      "started_at": "2026-01-12T14:13:00+00:00",
      "resolved_at": null,
      "summary": "Some users may experience increased response times."
    },
    {
      "type": "maintenance",
      "id": 43,
      "title": "Database maintenance",
      "status": "completed",
      "scheduled_at": "2026-01-12T15:00:00+00:00",
      "ended_at": "2026-01-12T15:30:00+00:00",
      "summary": "Scheduled database upgrades completed successfully."
    }
  ]
}
RSS feed

The RSS feed is designed for humans and can be subscribed to using standard RSS readers. Each entry represents an incident or maintenance event.

Endpoint

/feed.rss

Typical use cases

  • RSS readers (Feedly, NetNewsWire, etc.)
  • Email‑to‑RSS services
  • Personal monitoring dashboards
Note: Feeds are automatically updated and cached. Very recent changes may take a short moment to appear.