Skip to main content
GET
/
2
/
auth
List Authorizations V2
curl --request GET \
  --url https://api.honeycomb.io/2/auth \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "hcxik_12345678901234567890123456",
    "attributes": {
      "name": "mgmt write key",
      "disabled": false,
      "scopes": [
        "api-keys:write"
      ],
      "timestamps": {
        "created": "2022-09-22T17:32:11Z",
        "updated": "2022-10-31T15:08:11Z"
      }
    },
    "relationships": {
      "team": {
        "data": {
          "id": "hxctm_12345678901234567890123456"
        }
      }
    }
  },
  "included": [
    {
      "id": "hcxtm_12345678901234567890123456",
      "type": "teams",
      "attributes": {
        "name": "My Team",
        "slug": "my-team"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.honeycomb.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate using a Honeycomb Management Key.

Pass the Management Key as a Bearer token in the Authorization header:

Authorization: Bearer hcxmk_12345678901234567890123456:12345678901234567890123456789012

Construct the key value by joining the Key ID and Secret with a colon (:).

To learn how to create a Management Key, visit Manage Team API Keys. To learn more about authenticating requests, visit API Authentication.

Response

Success

data
object
required
included
object[]
Example:
[
{
"id": "hcxtm_12345678901234567890123456",
"type": "teams",
"attributes": { "name": "My Team", "slug": "my-team" }
}
]