---
title: "List PATs"
method: GET
path: "/user/personal-access-tokens"
tags: ["user-personal-access-tokens"]
---

# List PATs

`GET /user/personal-access-tokens`

Return all personal access tokens that belong to the authenticated user.

Use this endpoint to audit and manage active API credentials for your account.

Each item includes:

- `name` - Human-readable identifier for the token.
- `createdAt` - When the token was issued.
- `expires` - Optional expiry timestamp (if configured).

Typical usage pattern:

1. Call this endpoint to review existing tokens.
2. Delete tokens that are no longer needed.
3. Keep only the minimum number of active tokens required for your integrations.

This endpoint is for token management only. To authenticate API requests with a personal access token,
send it in the `Authorization` header as `Bearer <token>`.

## Response `200`

Personal access tokens for the user

- PersonalAccessToken[]
  - `name` string, required — The personal access token name
  - `value` string, required — The personal access token value. This is only available immediately after creation.
  - `createdAt` string, date-time, required — ISO timestamp indicating when the token was created
  - `expires` string, date-time — ISO timestamp indicating when the token expires

---

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