GET
/
tokens
{token_id}
curl --request GET \
  --url https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws/tokens{token_id} \
  --header 'Authorization: Bearer <token>'
{
  "created_at": "<string>",
  "created_by": "<string>",
  "created_by_name": "<string>",
  "expires_at": "<string>",
  "id": "<string>",
  "last_used": "<string>",
  "metadata": "<any>",
  "name": "<string>",
  "scopes": [
    "<string>"
  ],
  "status": "<string>",
  "token_type": "<string>",
  "usage_count": 1
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

token_id
string
required

Unique identifier of the token to retrieve

Response

200
application/json

Successfully retrieved token information

Detailed information about a specific API token

Provides comprehensive details about a token including its permissions, usage statistics, and metadata. The actual token value is never included for security reasons.