cURL
curl --request GET \ --url https://api.hopnow.io/v1/customers/{customer_id}/accounts \ --header 'Authorization: Bearer <token>'
{ "items": [ { "id": "<string>", "object": "<string>", "customer_id": "<string>", "name": "<string>", "status": "<string>", "balances": [ { "currency": "<string>", "currency_type": "<string>", "available_balance": "<string>", "pending_payout": "<string>", "pending_payin": "<string>", "total_balance": "<string>", "updated_at": "<string>" } ], "created": "<string>" } ], "page": 123, "size": 123, "total": 123, "pages": 123 }
Retrieve all accounts for a customer
Documentation IndexFetch the complete documentation index at: https://apidocs.hopnow.io/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://apidocs.hopnow.io/llms.txt
Use this file to discover all available pages before exploring further.
cus_
active
suspended
Show Account Fields
acc_
"account"
inactive
Show Balance Fields
fiat
crypto
{ "items": [ { "id": "acc_1234567890abcdef", "object": "account", "customer_id": "cus_abc123", "name": "Primary Trading Account", "status": "active", "balances": [ { "currency": "USD", "currency_type": "fiat", "available_balance": "10000.50", "pending_payout": "250.00", "pending_payin": "500.00", "total_balance": "10750.50", "updated_at": "2024-01-15T12:30:00Z" } ], "created": "2024-01-01T00:00:00Z" }, { "id": "acc_fedcba0987654321", "object": "account", "customer_id": "cus_abc123", "name": "Savings Account", "status": "active", "balances": [], "created": "2024-01-02T00:00:00Z" } ], "page": 1, "size": 10, "total": 25, "pages": 3 }