v1

latestOpenAPI 3.1.0Proprietary2026-07-2464170247.4 KB
Assets

Get Balances

Retrieve assets for a specific Customer

get/v1/customers/{customer_id}/assets

Path parameters

customer_idstring required

Customer ID

Query parameters

assetstring
  • Stablecoin assets: USDC, USDT, PYUSD, RLUSD, USDG, USDP, EURC, MXNB, 1USD(1USD/USDC conversion only, deposit/withdrawal not supported)
  • Digital assets: BTC
  • Fiat currencies: USD
Example:USDC
sort_order'ASC' | 'DESC'

Sort order by time (ASC: oldest first, DESC: newest first)

Response

customer_idstring required

Portfolio ID — also exposed as customer_id in OpenAPI. Identifies one individual application / portfolio row within an entity.

assetstring required
  • Stablecoin assets: USDC, USDT, PYUSD, RLUSD, USDG, USDP, EURC, MXNB, 1USD(1USD/USDC conversion only, deposit/withdrawal not supported)
  • Digital assets: BTC
  • Fiat currencies: USD
available_amountstring required

Available balance amount

unavailable_amountstring required

Unavailable/locked balance amount

created_atstring required
modified_atstring required

Example response

[
  {
    "customer_id": "14f20ebd-893b-11f0-b308-2eaa4f6974f2",
    "asset": "USDC",
    "available_amount": "10000.78",
    "unavailable_amount": "100.00",
    "created_at": "2025-08-21T07:56:57.981Z",
    "modified_at": "2025-08-21T07:56:57.981Z"
  }
]