# Get escalation policy group

Returns a single escalation policy group by ID.

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/policy-groups/:policy_group_id"
method = "GET"

[[path_param]]
name = "policy_group_id"
description = "The ID of the escalation policy 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 escalation policy group'''
body = '''{
  "data": {
    "id": "95251342",
    "type": "policy_group",
    "attributes": {
      "name": "Log alerts",
      "sort_index": null,
      "created_at": "2024-07-26T15:07:46.350Z",
      "updated_at": "2024-07-26T15:07:46.350Z",
      "team_name": "Test team"
    }
  }
}'''

[/responses]

#### Example cURL 

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

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