List Financial Accounts
Fetch all wallets belonging to your organization — fiat and crypto.
Request
curl --request GET \
--url "$baseUrl/organizations/accounts?status=ACTIVE¤cy=USD" \
--header 'x-api-key: YOUR_API_KEY'| Query param | Required | Description |
|---|---|---|
status | No | Filter by account status, e.g. ACTIVE |
currency | No | Filter by currency, e.g. USD |
Response
[
{
"id": "acc-uuid-123",
"name": "Main Wallet",
"currency": "USD",
"walletStatus": "ACTIVE"
}
]Call this next
- Get Account Details for full details on one wallet
- Get Currency Balance for a quick balance check
Updated 13 days ago
Did this page help you?