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

# Logout

> Logout the current user.

Note: JWT tokens are stateless, so this endpoint confirms the logout.
The frontend should discard the tokens. For token blacklisting,
Redis-based revocation can be added later.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json post /auth/logout
openapi: 3.1.0
info:
  title: Backend - Multilingual Voice Agent System
  description: FastAPI backend for multilingual voice agents with tool use
  version: 1.0.0
servers: []
security: []
paths:
  /auth/logout:
    post:
      tags:
        - authentication
      summary: Logout
      description: |-
        Logout the current user.

        Note: JWT tokens are stateless, so this endpoint confirms the logout.
        The frontend should discard the tokens. For token blacklisting,
        Redis-based revocation can be added later.
      operationId: logout_auth_logout_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````