List all explorations

Retrieves a paginated list of your team's explorations.

This endpoint returns a summary of each exploration. For full details, including chart, query, and variable configurations, use the Get an exploration endpoint.

The Explorations API is only available for the Telemetry product and can only be accessed via the telemetry.betterstack.com hostname.

GET https://telemetry.betterstack.com/api/v2/explorations

Query parameters

page
1 integer
per_page
50 integer
query
string
exploration_group_id
integer

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/explorations?page=1",
    "last": "https://telemetry.betterstack.com/api/v2/explorations?page=10",
    "prev": null,
    "next": "https://telemetry.betterstack.com/api/v2/explorations?page=2"
  }
}
401

Example Request

cURL
curl --request GET \
     --url "https://telemetry.betterstack.com/api/v2/explorations?per_page=5" \
     --header "Authorization: Bearer $TOKEN"