Get Wallets-balances
HTTP Method: GET
Endpoint URL: /wallets-balances
Description: Retrieves aggregated wallet balances (deposit, withdraw, cold) for the authenticated merchant.
Security: Requires the API-KEY header.
Example cURL
curl https://api.alppay.io/v2/wallets-balances \
-H "API-KEY: ak_live_1234567890abcdef"
Successful Response (200 OK)
{
"deposit": "1000.12345678",
"withdraw": "1000.12345",
"cold": "0"
}
Response Field Descriptions
- deposit — Total balance across all deposit wallets, as a decimal string
- withdraw — Total balance across all withdrawal wallets, as a decimal string
- cold — Total balance across all cold-storage wallets, as a decimal string