Show
Show the structure of a status page.
This endpoint requires a valid API key but no specific scopes. Returns the components and component groups configured on a status page. Use this to find component IDs when specifying affected components for incidents or maintenance windows.
GET
Show
Documentation Index
Fetch the complete documentation index at: https://docs.incident.io/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
API key from your incident.io dashboard (Settings → API keys)
Path Parameters
ID of the status page
Example:
"abc123"
Response
200 - application/json
OK response.
Example:
{
"items": [
{
"component": {
"component_id": "01FCNDV6P870EA6S7TK1DSYDG1",
"name": "App"
},
"group": {
"components": [
{
"component_id": "01FCNDV6P870EA6S7TK1DSYDG1",
"name": "App"
}
],
"id": "01FCNDV6P870EA6S7TK1DSYDG1",
"name": "EU Data center"
},
"sub_page": {
"id": "01FCNDV6P870EA6S7TK1DSYDG1",
"items": [
{
"component": {
"component_id": "01FCNDV6P870EA6S7TK1DSYDG1",
"name": "App"
},
"group": {
"components": [
{
"component_id": "01FCNDV6P870EA6S7TK1DSYDG1",
"name": "App"
}
],
"id": "01FCNDV6P870EA6S7TK1DSYDG1",
"name": "EU Data center"
}
}
],
"name": "United Kingdom"
}
}
]
}Show