# Get a single exploration group

Retrieves a single exploration group by its ID.

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

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

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

[responses]
[[response]]
status = 200
description = "The details of the specified exploration group."
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"
    }
  }
}
'''

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

[[response]]
status = 404
description = "An exploration group with the specified ID was not found."
body = '''
{
  "errors": "Resource with the provided ID was not found"
}
'''
[/responses]

## Example request

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