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

# Logout User

> Log out user from the current session



## OpenAPI

````yaml GET /auth/logout
openapi: 3.0.1
info:
  title: User Authentication API
  version: 1.0.0
  description: API for user registration, OTP request, and OTP verification
servers:
  - url: https://our-secret-api-url.com
security: []
paths:
  /auth/logout:
    get:
      description: Log out user from the current session
      responses:
        '200':
          description: Session successfully retrieved
          content:
            application/json: {}
        '401':
          description: Unauthorized - No valid session found
          content:
            application/json: {}
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````