Skip to main content
GET
/
auth
/
me
Retrieve information about the authenticated user including ID, name, and email address.
curl --request GET \
  --url https://your-xano-instance.xano.io/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