# Get status page

Returns a single status page by ID.

[endpoint]
base_url = "https://betteruptime.com"
path = "/api/v2/status-pages/{status_page_id}"
method = "GET"

[[path_param]]
name = "status_page_id"
description = "The ID of the status page you want to get"
required = true
type = "string"

[[header]]
name = "Authorization"
description = "Bearer `$TOKEN`"
required = true
type = "string"
[/endpoint]

[responses]
[[response]]
status = 200
description = '''Returns a single status page'''
body = '''{
  "data": {
    "id": "123456789",
    "type": "status_page",
    "attributes": {
      "company_name": "Best company",
      "company_url": "https://best-company.com",
      "contact_url": null,
      "logo_url": null,
      "dark_logo_url": null,
      "whitelabeled": false,
      "timezone": "Tokyo",
      "subdomain": "best-company-tokyo",
      "custom_domain": null,
      "custom_css": null,
      "custom_javascript": "",
      "google_analytics_id": null,
      "min_incident_length": 400,
      "announcement": null,
      "announcement_embed_visible": false,
      "announcement_embed_css": "",
      "announcement_embed_link": "",
      "automatic_reports": false,
      "status_page_group_id": null,
      "subscribable": false,
      "hide_from_search_engines": false,
      "password_enabled": false,
      "ip_allowlist": [],
      "history": 90,
      "aggregate_state": "operational",
      "design": "v1",
      "navigation_links": []
      "theme": "light",
      "layout": "vertical",
      "created_at": "2020-08-10T07:34:38.848Z",
      "updated_at": "2020-12-08T14:12:31.680Z"
    }
  }
}'''
[/responses]

#### Example cURL 

```shell
[label Example]
curl --request GET \
  --url https://betteruptime.com/api/v2/status-pages/123456789 \
  --header "Authorization: Bearer $TOKEN"
```

[info]
#### Looking for the details of a specific parameter?
Explore [the list of all status pages API parameters](https://betterstack.com/docs/uptime/api/status-pages-api-response-params/)
[/info]
