GET/v1/api_tokens

api_tokens.list

Returns a paginated list of API tokens in the caller's tenant. The raw token body is NEVER returned here — only `prefix` (first 24 chars), `name`, `scope`, and last-used metadata. The token bytes are shown exactly once at creation and unrecoverable thereafter (the DB stores only an HMAC-pepper-hashed digest).

Parameters

NameTypeRequiredDescription
cursorstringoptionalOpaque pagination cursor returned in `next_cursor` of the previous response.
limitintegeroptionalPage size, 1..100, default 50.

Response

NameTypeRequiredDescription
objectstringrequired
Enum: list
dataarray of ApiTokenrequired
has_morebooleanrequired
next_cursorstringnullrequiredOpaque pagination cursor returned in the previous list response.

Examples

curl -sS -X GET \
  -H "Authorization: Bearer $CULPRIT_API_TOKEN" \
  https://api.theculprit.ai/v1/api_tokens

Try it

Stored locally in your browser at localStorage.docs.tryit.token. Never sent to Culprit's analytics. Use a read-only token.