Authentication

get

Get user info

Authorizations
Path parameters
idstringRequired
Responses
200

Default Response

application/json
Responseone of
or
get
/users/{id}
GET /users/{id} HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "registerType": "cpf",
  "email": "[email protected]",
  "role": [
    "text"
  ],
  "walletAddress": "text",
  "annualGrossIncome": 1,
  "financialInvestments": 1,
  "qualifiedInvestor": true,
  "created_at": "2025-11-03T00:02:41.994Z",
  "updated_at": "2025-11-03T00:02:41.994Z",
  "personalData": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "fullName": "text",
    "cpf": "text",
    "rgOrDriverLicense": "text",
    "birthDate": "2025-11-03T00:02:41.994Z",
    "phone": "text",
    "profession": "text"
  },
  "residentialAddress": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "zipCode": "text",
    "address": "text",
    "number": "text",
    "complement": "text",
    "district": "text",
    "city": "text",
    "state": "text"
  }
}

Was this helpful?