Skip to main content
GET
/
v1
/
user
/
personal-access-tokens
List personal access tokens
curl --request GET \
  --url http://0.0.0.0:3000/v1/user/personal-access-tokens \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "My Token",
    "createdAt": "2026-03-17T10:00:00Z",
    "expiresAt": null
  }
]

Authorizations

Authorization
string
header
required

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

Response

List of personal access tokens

name
string
createdAt
string<date-time>
expiresAt
string<date-time> | null