Retrieve Balances of Wallet Accounts
Retrieve the balances of currency accounts in a Rapyd Wallet.
See Wallet Balance Types.
Note
This endpoint replaces the deprecated endpoint - GET /v1/user/:wallet/accounts
Rapyd no longer supports the deprecated endpoint.
ewallet
ID of the Rapyd Wallet. String starting with ewallet_.
/v1/ewallets/:ewallet/accounts
Retrieve Balances of Wallet Accounts
curl -X get https://sandboxapi.rapyd.net/v1/ewallets/ewallet_b9cbf3f4691aab019efacc3e376548df/accounts -H 'access_key: your-access-key-here' -H 'Content-Type: application/json' -H 'salt: your-random-string-here' -H 'signature: your-calculated-signature-here' -H 'timestamp: your-unix-timestamp-here'
{ "status": { "error_code": "", "status": "SUCCESS", "message": "", "response_code": "", "operation_id": "061532a0-bd67-4070-ab98-982ba3c07e4b" }, "data": [ { "id": "644410b8-e721-43b2-8847-4764cc0e4a00", "currency": "EUR", "alias": "EUR", "balance": 900, "received_balance": 0, "on_hold_balance": 0, "reserve_balance": 0, "limits": null, "limit": null } ] }