Skip to content

/api/v1/me

GET
/api/v1/me
curl --request GET \
--url https://example.com/api/v1/me

The authenticated user

Media type application/json
object
id
required
string
email
required
string format: email
displayName
required
string
>= 1 characters
emailVerified
required
boolean
Example generated
{
"id": "example",
"email": "hello@example.com",
"displayName": "example",
"emailVerified": true
}

No valid session

Media type application/problem+json
object
type
required
string
title
required
string
status
required
number
code
required
string
Example generated
{
"type": "example",
"title": "example",
"status": 1,
"code": "example"
}