Skip to main content
GET
/
api
/
auth
/
api-keys
List Api Keys
curl --request GET \
  --url http://localhost:8080/api/auth/api-keys \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<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
created_at
string
required
last_used_at
string | null