Go to App

List All API Tokens

GET/api/v1/api_tokens

Retrieve all API tokens for the authenticated user, ordered by expiration date (newest first).

Query Parameters

ParameterTypeDescription

pageintegerPage number (default: 1) limitintegerItems per page (default: 10, max: 30)

bash
curl https://exportcomments.com/api/v1/api_tokens \
-H "X-AUTH-TOKEN: your-api-key"
Response200
json
[
{
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"expiresAt": "2027-02-23T12:00:00+00:00",
"isExpired": false,
"createdAt": "2026-02-23T12:00:00+00:00"
}
]
💡
Full token not returned

This endpoint returns token metadata only. The full token value is never returned after initial generation. Use the uuid to identify and manage individual tokens.