Skip to main content
GET
/
v1
/
auth
/
keys
List Api Keys
curl --request GET \
  --url https://api.example.com/v1/auth/keys \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "prefix": "<string>",
    "created_at": "<string>",
    "last_used_at": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful Response

id
string
required
name
string
required
prefix
string
required
created_at
string
required
last_used_at
string | null
required