Skip to main content
GET
/
api
/
core
/
user
/
current-user
Get current user info
curl --request GET \
  --url https://api.example.com/api/core/user/current-user \
  --header 'Authorization: Bearer <token>'
{
  "email": "<string>",
  "display_name": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Format: 'Bearer '

Response

200 - application/json

Successful Response

Response model for current user info

email
string | null
display_name
string | null