# List explorations in a group

Retrieves a paginated list of explorations within a specific group.

[endpoint]
base_url = "https://telemetry.betterstack.com"
path = "/api/v2/exploration-groups/{id}/explorations"
method = "GET"

[[path_param]]
name = "id"
description = "The unique identifier of the exploration group."
required = true
type = "integer"

[[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"

[[query_param]]
name = "query"
description = "Search for explorations by name within the group."
required = false
type = "string"

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

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

[[response]]
status = 404
description = "An exploration group with the specified ID was not found."
[/responses]

## Example request

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