List explorations in a group

Retrieves a paginated list of explorations within a specific group.

This is a convenience endpoint and is equivalent to GET /api/v2/explorations?exploration_group_id=:id.

GET https://telemetry.betterstack.com/api/v2/exploration-groups/{id}/explorations

URL parameters

id
required integer

Query parameters

page
1 integer
per_page
50 integer
query
string

Headers

Authorization
required string
200

Response body

{
  "data": [
    {
      "id": 123,
      "type": "exploration",
      "attributes": {
        "name": "Error Rate Analysis",
        "date_range_from": "now-3h",
        "date_range_to": "now",
        "exploration_group_id": 456,
        "created_at": "2026-02-20T10:00:00Z",
        "updated_at": "2026-02-23T14:30:00Z"
      }
    }
  ],
  "pagination": {
    "first": "https://telemetry.betterstack.com/api/v2/exploration-groups/456/explorations?page=1",
    "last": "https://telemetry.betterstack.com/api/v2/exploration-groups/456/explorations?page=1",
    "prev": null,
    "next": null
  }
}
404

Example Request

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