Skip to main content
GET
/
v1
/
api-tokens
/
{api_token}
Get Api Token
curl --request GET \
  --url https://api.example.com/v1/api-tokens/{api_token} \
  --header 'Authorization: Bearer <token>'
{
  "token": "<string>",
  "created_at": 123,
  "name": "<string>",
  "token_id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Headers

xi-api-key
string | null

Path Parameters

api_token
string
required

Response

Successful Response

token
string
required
created_at
integer
required

creation unix timestamp

name
string
required
token_id
string | null