/v1/stackEverything you follow, with a current status summary.
Planned REST API
A read-only interface for the same service, component and incident status that IgniteStatus presents in the browser. The contract below is illustrative and may change before launch.
{
"updated_at": "2026-09-21T14:02:40Z",
"summary": {
"operational": 11,
"degraded": 1
},
"services": [
{
"slug": "github",
"status": "operational"
},
{
"slug": "azure-devops",
"status": "degraded"
}
]
}Proposed access model
If personal-stack endpoints ship, requests will use revocable, account-scoped bearer tokens. Token creation, scopes and retention have not been implemented or finalized.
# Illustrative only — this host and token do not exist curl https://api.example.invalid/v1/stack \ -H "Authorization: Bearer <account-token>"
Draft contract
/v1/stackEverything you follow, with a current status summary.
/v1/servicesThe public service catalogue, filterable by category.
/v1/services/{slug}One service with components and its current incident.
/v1/incidentsActive incidents across a synchronized stack.
/v1/incidents/{id}One incident with its published provider timeline.
/v1/historyResolved incidents within the supported retention window.
Draft contract
Webhooks are a possible later addition, not an active delivery channel or committed MVP feature.
service.degradedA followed service reports an incident or partial outage.
service.recoveredThe service returns to operational after an incident.
maintenance.scheduledA provider publishes a planned maintenance window.