cURL
curl --request GET \ --url https://api.breeze.com/user-balances/{user_id} \ --header 'x-api-key: <api-key>'
{ "data": [ { "count": 1, "protocol": "<string>", "yield_sources": [ { "base_assets": [ "<string>" ], "current_apy": 123, "pubkey": "<string>", "risk": 1, "source": "<string>", "updated_at_timestamp": 1, "yield_type": "<string>" } ] } ], "meta": { "has_more": true, "page": 1, "per_page": 1, "total": 1, "total_pages": 1 } }
Fund user identifier
Filter by specific asset (token symbol or mint address)
Sort by balance, default 'balance'
Sort order: 'asc' or 'desc', default 'desc'
Page number for pagination, default 1
x >= 0
Items per page, default 10
User balances retrieved successfully
Paginated response wrapper
Show child attributes
Pagination metadata
Was this page helpful?