List all existing status pages

Returns a list of all your status pages.

GET https://betteruptime.com/api/v2/status-pages

Headers

Authorization
required string
200

Response body

{
  "data": [
    {
      "id": "123456789",
      "type": "status_page",
      "attributes": {
        "company_name": "Best company",
        "company_url": "https://best-company.com",
        "contact_url": null,
        "logo_url": null,
        "timezone": "Tokyo",
        "subdomain": "best-company-tokyo",
        "custom_domain": null,
        "custom_css": null,
        "google_analytics_id": null,
        "min_incident_length": 400,
        "announcement": null,
        "announcement_embed_visible": false,
        "announcement_embed_css": "",
        "announcement_embed_link": "",
        "automatic_reports": false,
        "subscribable": false,
        "hide_from_search_engines": false,
        "password_enabled": false,
        "history": 90,
        "aggregate_state": "operational",
        "design": "v1",
        "theme": "light",
        "layout": "vertical",
        "created_at": "2020-08-10T07:34:38.848Z",
        "updated_at": "2020-12-08T14:12:31.680Z"
      }
    }
  ],
  "pagination": {
    "first": "https://betteruptime.com/api/v2/status-pages?page=1",
    "last": "https://betteruptime.com/api/v2/status-pages?page=1",
    "prev": null,
    "next": null
  }
}

Example cURL

Example
curl --request GET \
  --url https://betteruptime.com/api/v2/status-pages \
  --header "Authorization: Bearer $TOKEN"