cURL
curl --request GET \ --url https://apis.hopnow.io/v1/customers/{customer_id}/accounts/{account_id} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "object": "<string>", "customer_id": "<string>", "name": "<string>", "status": "<string>", "balances": [ { "currency": "<string>", "available_balance": "<string>", "pending_payout": "<string>", "pending_payin": "<string>", "total_balance": "<string>" } ], "created": "<string>", "updated": "<string>" }
Retrieve detailed information about a specific account
cus_
acc_
"account"
active
suspended
inactive
Show Balance Fields
{ "id": "acc_1234567890abcdef", "object": "account", "customer_id": "cus_abc123", "name": "Primary Trading Account", "status": "active", "balances": [ { "currency": "USD", "available_balance": "10000.50", "pending_payout": "250.00", "pending_payin": "500.00", "total_balance": "10750.50" }, { "currency": "EUR", "available_balance": "5000.25", "pending_payout": "0.00", "pending_payin": "100.00", "total_balance": "5100.25" } ], "created": "2024-01-01T00:00:00Z", "updated": "2024-01-15T12:30:00Z" }