Skip to main content
POST
/
v1
/
auth
/
logout
curl -X POST https://gpuoutlet.ai/v1/auth/logout --cookie "sid=$SID"
{ "ok": true }
Server-side, the session record is hard-deleted. The sid cookie is cleared on the response.
curl -X POST https://gpuoutlet.ai/v1/auth/logout --cookie "sid=$SID"
{ "ok": true }
After this, any future request bearing that sid value returns 401 unauthorized. Logout is immediate and irreversible — the user needs to re-authenticate via OTP or OAuth to get a new session.

Logout from all devices

Today, the API doesn’t expose a “log out everywhere” — only the current session is destroyed. To force-revoke every session, contact help@gpuoutlet.ai and we’ll do it manually. A self-serve “Sessions” tab is on the Settings roadmap.