Get single monitor group

Returns a single monitor group by ID.

GET https://uptime.betterstack.com/api/v2/monitor-groups/:monitor_group_id

URL parameters

monitor_id
required string

Headers

Authorization
required string
200

Response 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",
      "paused": true
    }
  }
}

Example cURL

Example
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/monitor-groups/95251342 \
  --header "Authorization: Bearer $TEAM_TOKEN"