Skip to main content
GET
/
auth
/
me
Validate the Access Token and identify the account details.
curl --request GET \
  --url https://app.xano.com/api:meta/auth/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "email": "<string>",
  "extras": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Success!

id
string
name
string
email
string
extras
string
I