List all exploration groups

Retrieves a paginated list of your team's exploration groups.

GET https://telemetry.betterstack.com/api/v2/exploration-groups

Query parameters

page
1 integer
per_page
50 integer
query
string

Headers

Authorization
required string
200

Response body

{
  "data": [
    {
      "id": 456,
      "type": "exploration_group",
      "attributes": {
        "name": "Production Monitoring",
        "created_at": "2026-02-20T10:00:00Z",
        "updated_at": "2026-02-23T14:30:00Z"
      }
    }
  ],
  "pagination": {
    "first": "https://telemetry.betterstack.com/api/v2/exploration-groups?page=1",
    "last": "https://telemetry.betterstack.com/api/v2/exploration-groups?page=2",
    "prev": null,
    "next": "https://telemetry.betterstack.com/api/v2/exploration-groups?page=2"
  }
}
401

Example Request

cURL
curl --request GET \
     --url "https://telemetry.betterstack.com/api/v2/exploration-groups" \
     --header "Authorization: Bearer $TOKEN"