# Get status page group

Returns a single status page group by ID.

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/status-page-groups/{status_page_group_id}"
method = "GET"

[[path_param]]
name = "status_page_group_id"
description = "The ID of the status page group 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 group.'''
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"
    }
  }
}'''
[/responses]

#### Example cURL

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

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