Create an exploration group

Creates a new exploration group for organizing explorations.

POST https://telemetry.betterstack.com/api/v2/exploration-groups

Headers

Authorization
required string

Body parameters

name
required string
team_name
string
201

Response body

{
  "data": {
    "id": 456,
    "type": "exploration_group",
    "attributes": {
      "name": "Production Monitoring",
      "created_at": "2026-02-20T10:00:00Z",
      "updated_at": "2026-02-20T10:00:00Z"
    }
  }
}
422

Response body

{
  "errors": "Sorry, some values are incorrect",
  "invalid_values": {
    "name": [
      "can't be blank"
    ]
  }
}

Example Request

cURL
curl --request POST \
  --url https://telemetry.betterstack.com/api/v2/exploration-groups \
  --header "Authorization: Bearer $TOKEN" \
  --header "Content-Type: application/json" \
  --data '{
    "name": "Production Monitoring"
  }'