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

# Sign Out

> Signs out the current dashboard session and clears the session cookie.

## Usage

This endpoint is for browser-based dashboard auth.

* Deletes the current session if present.
* Clears the session cookie.
* Returns success even when no active session exists.

<RequestExample>
  ```bash theme={null}
  curl -X POST https://nest.feather.mupeni.dev/api/auth/sign-out \
    -H "Cookie: session=<session_cookie>"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true
  }
  ```
</ResponseExample>
