---
title: "List Authorization Tokens"
method: GET
path: "/api/v1/authorization-tokens"
tags: ["Authorization Tokens"]
---

# List Authorization Tokens

`GET /api/v1/authorization-tokens`

List authorization tokens of end users.

## Query parameters

- `page` integer — The page number to fetch.
- `size` integer — The number of items per page.
- `skip_count` boolean — Whether to skip counting the total number of items.
- `user_ids` string[] — The unique identifiers of the users.
- `user_types` string[] — User types to filter. Only end users are currently supported.

## Response `200`

Successful Response

- ListAuthTokensResponse
  - `total` integer, required
  - `page` integer, required
  - `size` integer, required
  - `auth_tokens` AuthToken[], required — Authorization tokens list.
    - `id` string, uuid, required — The unique identifier of the object in the Fordefi platform.
    - `created_at` string, date-time, required — The date and time when the object was created.
    - `modified_at` string, date-time, required — The date and time when the object was last modified. Any change to any field of the resource is considered a modification.
    - `user_id` string, uuid, required — ID of the end user the authorization token is issued for.
    - `expired_at` string, date-time, required — Token expiration time.
    - `user_type` 'end_user', required — Type of the user the authorization token is issued for.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized User
- `403` — Forbidden User
- `408` — Request Timeout
- `422` — Validation Error
- `429` — Rate Limit Exceeded
- `500` — Unexpected Error

---

[API](https://skmtc.net/fordefi/apis/fordefi-api.md) · [All operations](https://skmtc.net/fordefi/apis/fordefi-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fordefi/fordefi-api/versions/c4c28d233105/schema)
