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",
    "type": "api-keys",
    "attributes": {
      "name": "mgmt write key",
      "key_type": "management",
      "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",
          "type": "teams"
        }
      }
    }
  },
  "included": [
    {
      "id": "hcxtm_12345678901234567890123456",
      "type": "teams",
      "attributes": {
        "name": "My Team",
        "slug": "my-team"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

A Honeycomb Management Key is required to use this API.

The token should be passed in the "Authorization" header, and the secret should be prefixed with "Bearer " followed by the API Key's ID and secret, separated by a colon.

For example, Authorization: Bearer hcxmk_12345678901234567890123456:12345678901234567890123456789012

More information can be found in the Manage API Keys documentation.

Response

Success

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