Groups

Get group

GET /api/v1/groups/{id}

Returns a single monitor group.

Response

{
  "id": 7,
  "name": "Agency Clients",
  "description": "Everything billed monthly",
  "parent_id": null,
  "sort_order": 0,
  "monitors_count": 12,
  "created_at": "2026-08-21T14:02:11Z",
  "updated_at": "2026-08-21T14:02:11Z"
}

Fields

nameUnique within the team, max 60 characters
descriptionOptional, max 255 characters
parent_idThe parent group for a subgroup, or null at the top level. Nesting is one level deep: a subgroup cannot have children.
sort_orderPosition within the sibling set; new groups append to the end
monitors_countMonitors directly in this group (subgroup monitors are counted in the subgroup)

Monitors join a group through the group_id field on the monitor endpoints.