# List API keys

Returns all API keys for the authenticated user, including inactive ones. Each response object includes the raw token value and the active field indicating current status.

Endpoint: GET /public/v1/accounts/tokens/
Version: 1.0.0
Security: Bearer

## Response 200 fields (application/json):

  - `id` (integer, required)
    Unique identifier for the API key token.

  - `name` (string, required)
    Human-readable label for the token.

  - `scopes` (array, required)
    Scopes granted to the token.

  - `active` (boolean, required)
    Whether the token is currently active.

  - `expires_at` (string,null)
    Expiration timestamp, or null if the token never expires.

  - `token` (string)
    The API key value used as the Bearer credential. Returned in full on every read.

  - `created_at` (string, required)
    When the token was created.

  - `last_used_at` (string,null)
    When the token was last used to authenticate a request, or null if never used.


## Response 400 fields

## Response 401 fields

## Response 422 fields
