# List severities in a group

Returns severities belonging to the given severity group. This endpoint [supports pagination](https://betterstack.com/docs/uptime/api/pagination/).

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/urgency-groups/{urgency_group_id}/urgencies"
method = "GET"

[[path_param]]
name = "urgency_group_id"
description = "The ID of the severity group you want to get severities from."
required = true
type = "string"

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

[responses]
[[response]]
status = 200
description = '''Returns a paginated list of severities in the specified group.'''
body = '''{
  "data": [
    {
      "id": "123",
      "type": "urgency",
      "attributes": {
        "name": "High Severity",
        "team_name": "Test team",
        "sms": false,
        "call": true,
        "email": true,
        "push": true
      }
    },
    {
      "id": "456",
      "type": "urgency",
      "attributes": {
        "name": "Low Severity",
        "team_name": "Test team",
        "sms": false,
        "call": false,
        "email": true,
        "push": false
      }
    }
  ],
  "pagination": {
    "first": "https://uptime.betterstack.com/api/v2/urgency-groups/95251342/urgencies?page=1",
    "last": "https://uptime.betterstack.com/api/v2/urgency-groups/95251342/urgencies?page=1",
    "prev": null,
    "next": null
  }
}'''
[/responses]

#### Example cURL

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

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