Utilbot Status API
Programmatic access to Utilbot service status, incidents, and scheduled maintenance.
Basics
Most endpoints return JSON and require no authentication. The URLs below use this deployment’s configured base URL (https://status.utilbot.co).
Page Status
Summary
Get a snapshot of the entire status page — overall indicator, service statuses, unresolved incidents, and any upcoming or in-progress scheduled maintenances. Most consumers only need this endpoint.
curl https://status.utilbot.co/api/v2/summary.jsonStatus
Get the rollup status for the whole page. Returns a single indicator — one of none, minor, major, or critical — plus a human-readable description like "All Systems Operational" or "Partial System Outage".
curl https://status.utilbot.co/api/v2/status.jsonComponents
Get the services for the page. Each one is listed along with its status — one of operational, under_maintenance, degraded_performance, partial_outage, or major_outage. under_maintenance only appears when an otherwise-operational service is affected by an in-progress maintenance window.
curl https://status.utilbot.co/api/v2/components.jsonIncidents
Unresolved incidents
Get a list of any unresolved incidents. Returns only incidents in the investigating, identified, or monitoring state.
curl https://status.utilbot.co/api/v2/incidents/unresolved.jsonAll incidents
Get the 50 most recent incidents. Includes all unresolved incidents as described above, plus those in the resolved state.
curl https://status.utilbot.co/api/v2/incidents.jsonScheduled maintenances
Upcoming
Get a list of any upcoming maintenances. Returns only scheduled maintenances still in the scheduled state.
curl https://status.utilbot.co/api/v2/scheduled-maintenances/upcoming.jsonActive
Get a list of any active maintenances. Returns only scheduled maintenances in the in_progress state.
curl https://status.utilbot.co/api/v2/scheduled-maintenances/active.jsonAll maintenances
Get the 50 most recent scheduled maintenances. Includes upcoming and active maintenances as described above, plus those in the completed state.
curl https://status.utilbot.co/api/v2/scheduled-maintenances.jsonFeeds
Incidents RSS
RSS 2.0 feed of the 50 most recent incidents. Each item links back to the public incident page.
curl https://status.utilbot.co/api/v3/incidents.rssIncidents Atom
Atom 1.0 feed of the 50 most recent incidents. Each entry links back to the public incident page.
curl https://status.utilbot.co/api/v3/incidents.atomMaintenance RSS
RSS 2.0 feed of the 50 most recent scheduled maintenances.
curl https://status.utilbot.co/api/v3/maintenance.rssMaintenance Atom
Atom 1.0 feed of the 50 most recent scheduled maintenances.
curl https://status.utilbot.co/api/v3/maintenance.atomMarkdown for agents
Send Accept: text/markdown to / or /history to get a plain-text summary instead of HTML — useful for agents and scripts that would rather not parse the page.