Skip to main content

Authentication Status

Verify if the current token is valid and get user information.

GET /api/user/status

Headers

token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...

Response

{
"authenticated": true,
"user": {
"id": 1,
"email": "[email protected]",
"name": "John Doe",
"role": "user",
"status": "active"
}
}