Utilbot Status

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

GET

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.json
GET

Status

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.json
GET

Components

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.json

Incidents

GET

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.json
GET

All 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.json

Scheduled maintenances

GET

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.json
GET

Active

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.json
GET

All 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.json

Feeds

GET

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.rss
GET

Incidents 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.atom
GET

Maintenance RSS

RSS 2.0 feed of the 50 most recent scheduled maintenances.

curl https://status.utilbot.co/api/v3/maintenance.rss
GET

Maintenance Atom

Atom 1.0 feed of the 50 most recent scheduled maintenances.

curl https://status.utilbot.co/api/v3/maintenance.atom

Markdown 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.