Skip to main content
GET
/
auth
/
api-tokens
List active tokens
curl --request GET \
  --url https://api.limitless.exchange/auth/api-tokens \
  --header 'X-API-Key: <api-key>'
[
  {
    "tokenId": "<string>",
    "label": "<string>",
    "scopes": [
      "<string>"
    ],
    "createdAt": "2023-11-07T05:31:56Z",
    "lastUsedAt": "2023-11-07T05:31:56Z"
  }
]
Returns all active (non-revoked) API tokens for the authenticated partner. Token secrets are never included in the response. Requires token management to be enabled for the partner (see Get Partner Capabilities).

Authorizations

X-API-Key
string
header
required

API key for programmatic access. Generate at limitless.exchange -> profile menu -> Api keys.

Response

List of active tokens

tokenId
string
required

Unique token identifier

label
string | null
required

Human-readable label

scopes
string[]
required

Granted scopes

createdAt
string<date-time>
required

Token creation timestamp

lastUsedAt
string<date-time> | null
required

Last time the token was used for authentication