Account Balance Query

The balances of an account can be queried using the GET /account/{id}/balance method. The system will return all balances of all currencies for the specified account.

Example of querying balances:

GET /account/19720852-be40-489a-a3b3-985f51a0458c/balance

Response example:

{
  "data": [
    {
      "id": "a6eec3a6-682b-4701-a139-8cfcdb07769e",
      "currency": "brl",
      "type": "available",
      "amount": 159660,
      "seq_num": 56
    }
  ]
}

Last updated