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

# Log out

> End the session and revoke the current access token.

Invalidates the refresh session, blacklists the current access token in Redis for the remainder of its lifetime, and clears the auth cookies. Authenticated endpoint — send the access token as `Authorization: Bearer <token>` (or rely on the `token` cookie).

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST https://api.vouchmark.com/v1/logout \
    -H "Authorization: Bearer $TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "message": "Logged out successfully"
  }
  ```
</ResponseExample>
