List Financial Accounts

Fetch all wallets belonging to your organization — fiat and crypto.


Request

curl --request GET \
  --url "$baseUrl/organizations/accounts?status=ACTIVE&currency=USD" \
  --header 'x-api-key: YOUR_API_KEY'
Query paramRequiredDescription
statusNoFilter by account status, e.g. ACTIVE
currencyNoFilter by currency, e.g. USD

Response

[
  {
    "id": "acc-uuid-123",
    "name": "Main Wallet",
    "currency": "USD",
    "walletStatus": "ACTIVE"
  }
]

Call this next



Did this page help you?