Skip to main content
POST
/
api
/
auth
/
sign-out
curl -X POST https://nest.feather.mupeni.dev/api/auth/sign-out \
  -H "Cookie: session=<session_cookie>"
{
  "success": true
}

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.
curl -X POST https://nest.feather.mupeni.dev/api/auth/sign-out \
  -H "Cookie: session=<session_cookie>"
{
  "success": true
}