Auth
Get current user
Return the signed-in user from the session cookie.
GET
The authenticated user. Always present on 200.
ISO 8601 UTC timestamp when the current session will expire.
How the dashboard uses this
TheAuthProvider calls /v1/auth/me on every page load. If 401, the
user is unauthenticated; if 200, the user object hydrates useAuth().
The dashboard polls this endpoint every 5 minutes as a session keepalive —
the server-side expiresAt slides forward on every authenticated request,
so as long as you have the dashboard open, the session stays fresh.