Skip to main content
GET
/
users
/
me
Dados do Usuário
curl --request GET \
  --url https://dashboard.gratian.pro/api/v2/users/me \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "userId": "<string>",
    "username": "<string>",
    "email": "<string>",
    "plan": {},
    "usage": {},
    "limits": {}
  }
}

Authorizations

Authorization
string
header
required

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

Response

Dados do usuário

success
boolean
Example:

true

data
object