Get a user

Returns a single user and the wallets registered to them. A user label is unique within its own account, so subaccountId selects which account the label is resolved against.

Path Parameters
  • label
    Type: string
    required
Query Parameters
  • subaccountId
    Type: string Format: uuid

    Scope this read to one of your subaccounts instead of the authenticated account. Must be a direct child of the authenticated account.

Responses
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/api/v1/users/{label}
curl 'https://api.bettermoney.com/api/v1/users/{label}'
{
  "id": "string",
  "label": "string",
  "accountId": "123e4567-e89b-12d3-a456-426614174000",
  "wallets": [
    {
      "address": "string",
      "chain": "string",
      "status": "PENDING"
    }
  ]
}