Get status page group

Returns a single status page group by ID.

GET https://uptime.betterstack.com/api/v2/status-page-groups/{status_page_group_id}

URL parameters

status_page_group_id
required string

Headers

Authorization
required string
200

Response body

{
  "data": {
    "id": "1372854",
    "type": "status_page_group",
    "attributes": {
      "name": "Testing group",
      "sort_index": null,
      "created_at": "2024-11-07T11:33:24.408Z",
      "updated_at": "2024-11-07T11:33:24.408Z",
      "team_name": "Test Team"
    }
  }
}

Example cURL

Example
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/status-page-groups/1372854 \
  --header "Authorization: Bearer $TOKEN"