---
title: "Get tokens"
method: GET
path: "/tokens"
tags: ["tokens"]
---

# Get tokens

`GET /tokens`

Returns a list of first-party API tokens for your organization. Requires admin access.

## Query parameters

- `cursor` string
- `page_size` integer
- `token_ids` string[]
- `user_id` string, uuid

## Response `200`

A list of API tokens for your organization.

- PaginatedTokensList
  - `next` string, nullable — The cursor with which to continue pagination if additional result pages exist.
  - `previous` string, nullable — The cursor used to obtain the current result page.
  - `results` Token[], required
    - `token_id` string, uuid, required — The ID of the API token.
    - `created_at` string, date-time, required — The date and time the token was created.
    - `token_label` string, required — A human-readable label for the token.
    - `creator_user_id` string, uuid, required — The ID of the user who created the token.
    - `user_id` string, uuid, required — The ID of the user the token authenticates as.
    - `last_used_at` string, date-time, nullable — The date and time the token was last used.
    - `access_level` 'READ_ONLY' | 'FULL_ACCESS', required — The access level of an API token.
    - `expires_at` string, date-time, nullable — The date and time the token expires.

---

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