> ## Documentation Index
> Fetch the complete documentation index at: https://docs.talkover.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete User API Token

> Revoke a personal access token (PAT)

# Delete User API Token

Revoke a personal access token. The token is invalidated immediately and any further requests using it return `401`.

<Info>
  This endpoint is part of the **Account API** and is authenticated with a user session token.
</Info>

## Endpoint

```
DELETE /api/v1/user/api-tokens/{token_id}
```

## Path parameters

<ParamField path="token_id" type="string" required>
  ID of the token to revoke. Use [List User API Tokens](/api-reference/endpoints/list-user-api-tokens) to find the ID.
</ParamField>

## Request headers

<ParamField header="Authorization" type="string" required>
  User session token. Format: `Bearer <user_session_token>`.
</ParamField>

## Examples

<RequestExample>
  ```bash theme={null}
  curl -X DELETE "https://app.talkover.ai/api/v1/user/api-tokens/token-uuid-1" \
    -H "Authorization: Bearer your_user_session_token"
  ```
</RequestExample>

## Response

<ResponseExample>
  ```json theme={null}
  {
    "message": "Token revoked"
  }
  ```
</ResponseExample>

## Notes

* Revocation is immediate and irreversible.
* Existing requests in flight using the revoked token will complete; new requests will fail with `401`.
