GET
/
user-balances
/
{user_id}
cURL
curl --request GET \
  --url https://api.breeze.baby/user-balances/{user_id} \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "token_address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
      "token_symbol": "USDC",
      "token_name": "USD Coin",
      "decimals": 6,
      "total_balance": 13465672,
      "yield_balance": {
        "fund_id": "8pfa41TvGWyttSViHRaNwFwbjhDEgmf3tHj81XR3CwWV",
        "funds": "8000002",
        "amount_of_yield": "811",
        "fund_apy": 4.993670216216565
      }
    },
    {
      "token_address": "11111111111111111111111111111112",
      "token_symbol": "SOL",
      "token_name": "Solana",
      "decimals": 9,
      "total_balance": 17974104,
      "yield_balance": null
    }
  ],
  "meta": {
    "page": 1,
    "per_page": 10,
    "total": 2,
    "total_pages": 1,
    "has_more": false
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

user_id
string
required

Fund user identifier

Query Parameters

asset
string

Filter by specific asset (token symbol or mint address)

sort_by
string

Sort by balance, default 'balance'

sort_order
string

Sort order: 'asc' or 'desc', default 'desc'

page
integer

Page number for pagination, default 1

Required range: x >= 0
limit
integer

Items per page, default 10

Required range: x >= 0

Response

User balances retrieved successfully

Aggregated wallet and Breeze fund balances for a user.