Skip to main content
GET
/
status-pages
/
{id}
/
services
curl "https://kodostatus.com/api/v1/status-pages/sp_abc123/services" \
  -H "X-API-Key: your_api_key"
{
  "services": [
    {
      "id": "uuid",
      "service_id": "svc_abc123",
      "display_order": 0,
      "services": {
        "id": "svc_abc123",
        "name": "API Gateway",
        "status": "operational"
      }
    },
    {
      "id": "uuid",
      "service_id": "svc_def456",
      "display_order": 1,
      "services": {
        "id": "svc_def456",
        "name": "Web App",
        "status": "degraded"
      }
    }
  ]
}

Path Parameters

id
string
required
The status page ID

Response

Returns the list of service assignments with display order and service details.
services
array

Common Errors

StatusMessageDescription
404Status page not foundThe ID does not match a page in your organization
curl "https://kodostatus.com/api/v1/status-pages/sp_abc123/services" \
  -H "X-API-Key: your_api_key"
{
  "services": [
    {
      "id": "uuid",
      "service_id": "svc_abc123",
      "display_order": 0,
      "services": {
        "id": "svc_abc123",
        "name": "API Gateway",
        "status": "operational"
      }
    },
    {
      "id": "uuid",
      "service_id": "svc_def456",
      "display_order": 1,
      "services": {
        "id": "svc_def456",
        "name": "Web App",
        "status": "degraded"
      }
    }
  ]
}