Skip to main content
GET
/
balances
Get aggregated balances
curl --request GET \
  --url https://api.breezing.io/v1/balances
{
  "success": true,
  "data": [
    {
      "token": "ETH",
      "amount": "12.5",
      "fiat": "25000.00"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://learn.breezing.io/llms.txt

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

Query Parameters

org_id
string
required

Organization ID. Use GET /v1/companies to discover available org/company pairs.

Example:

"1"

company_id
string
required

Company ID. Use GET /v1/companies to discover available companies and their access levels.

Example:

"1"

wallet_id
string

Filter by wallet ID to see balances for a specific custody account. Omit for company-wide balances.

Example:

"1"

date_from
string

Start of date range (unix timestamp in seconds). Use with date_to for period-end balance snapshots.

Example:

"1704067200"

date_to
string

End of date range (unix timestamp in seconds). Use with date_from for period-end balance snapshots.

Example:

"1735689599"

Response

Balances retrieved successfully

success
enum<boolean>
required
Available options:
true
data
object[]
required
Last modified on April 12, 2026