Skip to main content
GET
/
api
/
accounts
/
{accountId}
/
balances
Get account balance
curl --request GET \
  --url https://api.sandbox.tracefinance.com/api/accounts/{accountId}/balances \
  --header 'Authorization: Bearer <token>'
{ "accountId": "5b7c1f2a-3d4e-4f8a-9b1c-2d3e4f5a6b7c", "fiat": [ { "amount": { "value": "5000.00", "asset": "BRL", "decimals": 2 }, "synced": true } ], "crypto": [ { "amount": { "value": "1.500000", "asset": "USDC", "decimals": 6 }, "synced": true } ] }

Documentation Index

Fetch the complete documentation index at: https://tracefinance-docs-withdrawal-beneficiary-events.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT bearer token. Include as Authorization: Bearer <token>. See the Authentication guide for how to obtain one.

Headers

X-Trace-Version
string

API version. Omit to use the default version.

Example:

"1"

Path Parameters

accountId
string<uuid>
required

UUID of the account.

Response

Account balance.

Multi-currency balance grouped by asset class.

accountId
string<uuid>
required

Identifier of the account these balances belong to.

Example:

"5b7c1f2a-3d4e-4f8a-9b1c-2d3e4f5a6b7c"

fiat
object[]
required

Fiat balances, one entry per enabled fiat currency.

crypto
object[]
required

Crypto balances, one entry per enabled crypto currency.