# Get monitor group

Returns a single monitor group by ID.

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

[[path_param]]
name = "monitor_id"
description = "The ID of the monitor 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 monitor group'''
body = '''{
  "data": {
    "id": "95251342",
    "type": "monitor_group",
    "attributes": {
      "name": "Backend services",
      "sort_index": null,
      "created_at": "2020-10-03T20:20:43.547Z",
      "updated_at": "2020-10-03T20:20:43.547Z",
      "team_name": "Test team",
      "paused": true
    }
  }
}'''

[/responses]

#### Example cURL 

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

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