Skip to content

Get the signed-in user.

GET
/api/auth/me
curl --request GET \
--url https://api.tradr.cloud/api/auth/me

Authed. The canonical “who am I” call — clients use it on boot to decide whether a session is still valid.

The current user.

Media typeapplication/json
object
email
string format: email
emailVerified
boolean
id
string format: uuid
isAdmin
boolean
Examplegenerated
{
"email": "hello@example.com",
"emailVerified": true,
"id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"isAdmin": true
}

No valid session.