Skip to main content
GET
/
status-pages
curl "https://kodostatus.com/api/v1/status-pages" \
  -H "X-API-Key: your_api_key"
{
  "pages": [
    {
      "id": "uuid",
      "name": "Public Status",
      "slug": "acme",
      "custom_domain": null,
      "logo_url": null,
      "primary_color": "#22c55e",
      "status_page_visibility": "public",
      "is_default": true,
      "service_count": 5,
      "created_at": "2024-01-01T00:00:00Z",
      "updated_at": "2024-06-15T12:00:00Z"
    },
    {
      "id": "uuid",
      "name": "Internal Ops",
      "slug": "acme-internal",
      "custom_domain": null,
      "logo_url": null,
      "primary_color": "#3b82f6",
      "status_page_visibility": "internal",
      "is_default": false,
      "service_count": 12,
      "created_at": "2024-06-01T00:00:00Z",
      "updated_at": "2024-06-15T12:00:00Z"
    }
  ]
}
This endpoint is API-key accessible.

Response

pages
array
curl "https://kodostatus.com/api/v1/status-pages" \
  -H "X-API-Key: your_api_key"
{
  "pages": [
    {
      "id": "uuid",
      "name": "Public Status",
      "slug": "acme",
      "custom_domain": null,
      "logo_url": null,
      "primary_color": "#22c55e",
      "status_page_visibility": "public",
      "is_default": true,
      "service_count": 5,
      "created_at": "2024-01-01T00:00:00Z",
      "updated_at": "2024-06-15T12:00:00Z"
    },
    {
      "id": "uuid",
      "name": "Internal Ops",
      "slug": "acme-internal",
      "custom_domain": null,
      "logo_url": null,
      "primary_color": "#3b82f6",
      "status_page_visibility": "internal",
      "is_default": false,
      "service_count": 12,
      "created_at": "2024-06-01T00:00:00Z",
      "updated_at": "2024-06-15T12:00:00Z"
    }
  ]
}