Skip to main content
GET
/
v0
/
api-keys
curl --request GET \
  --url 'https://api.unify.ai/v0/api-keys' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "personal_keys": "[Any]",
    "organization_keys": "object"
}
List all API keys for the authenticated user. Returns both personal API keys and organization-specific API keys, grouped by organization.

Authorizations

Authorization
string
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
  --url 'https://api.unify.ai/v0/api-keys' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "personal_keys": "[Any]",
    "organization_keys": "object"
}