# 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](https://betterstack.com/docs/logs/api/explorations/get/) endpoint.

[endpoint]
base_url = "https://telemetry.betterstack.com"
path = "/api/v2/explorations"
method = "GET"

[[query_param]]
name = "page"
description = "Page number for pagination."
required = false
type = "integer"

[[query_param]]
name = "per_page"
description = "Number of items per page (max 250)."
required = false
type = "integer"

[[header]]
name = "Authorization"
description = "Bearer `$TOKEN`"
required = true
type = "string"
[/endpoint]

[responses]
[[response]]
status = 200
description = "A paginated list of explorations."
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"
  }
}
'''

[[response]]
status = 401
description = "Invalid or missing authentication token."
[/responses]

## Example request

```shell
[label cURL]
curl --request GET \
     --url "https://telemetry.betterstack.com/api/v2/explorations" \
     --header "Authorization: Bearer $TOKEN"
```
