Balances
Retrieve available, pending, and reserved balances across currencies and networks.
List balances
GET /v1/balances
curl "$M2_BASE_URL/v1/balances" \
-H "Authorization: Bearer $M2_API_KEY"Response
{
"data": [
{
"currency": "USDC",
"network": "ethereum",
"available": "125000.00",
"pending": "5000.00",
"reserved": "1000.00"
}
]
}Balance fields
| Field | Meaning |
|---|---|
available | Funds available for payouts or settlements. |
pending | Funds detected but not fully confirmed. |
reserved | Funds locked by active quotes, payouts, or settlements. |