Skip to main content
GET
/
api
/
me
/
personal-keys
List Personal Keys
curl --request GET \
  --url https://api.example.com/api/me/personal-keys \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "key_prefix": "<string>",
    "masked_key": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "revoked_at": "2023-11-07T05:31:56Z",
    "expires_at": "2023-11-07T05:31:56Z"
  }
]

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
integer
required
key_prefix
string
required
masked_key
string
required
created_at
string<date-time>
required
revoked_at
string<date-time> | null
expires_at
string<date-time> | null