Skip to main content
GET
/
1
/
auth
List Authorizations
curl --request GET \
  --url https://api.honeycomb.io/1/auth \
  --header 'X-Honeycomb-Team: <api-key>'
{
  "id": "FL_xMM5LapLC",
  "type": "configuration",
  "api_key_access": {
    "events": true,
    "markers": true,
    "triggers": false,
    "boards": false,
    "queries": false,
    "columns": false,
    "createDatasets": true,
    "slos": false,
    "recipients": false,
    "privateBoards": false
  },
  "environment": {
    "name": "Production",
    "slug": "production"
  },
  "team": {
    "name": "Honeycomb Docs",
    "slug": "honeycomb-docs"
  }
}

Authorizations

X-Honeycomb-Team
string
header
required

A Honeycomb Configuration Key is required to use this API. A Configuration Key can be found in the API Keys section of the environment configuration, which can be found under Environment Settings -> API Keys -> Configuration tab. Check out our documentation to find your API Keys.

More information can be found in Manage Environments.

Response

Success

id
string
required

Unique identifier (ID) of the API Key.

type
enum<string>
required

The type of API Key.

Available options:
configuration,
ingest
api_key_access
object
required
environment
object
required
team
object
required
time_to_live
string

An optional property of an ingest key that determines the time at which the key becomes unauthorized. When the time_to_live passes, the key will no longer be usable. Expressed as a RFC3339-formatted time.

Example:

"2025-11-19T18:01:02+00:00"