Check the current token (whoami)
GET/api/client/v1/auth/me
Whoami / token check. A cheap endpoint the client can call to confirm its bearer token is still valid: 200 with the user when the token is good, 401 when it's missing, expired, or revoked. (Also renews the sliding expiry, like any authenticated call.)
Responses
- 200
- 401
The token is valid; returns the signed-in user.
Missing, expired, or revoked token.