Get a single status page

Returns a single status page by ID.

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

URL parameters

status_page_id
required string

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"
    }
  }
}

Example cURL

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