Skip to main content
Account balances are served under /developer/company/accounts. Every request needs Authorization: Bearer <access_token> and X-On-Behalf-Of: <company_id> — see Authentication.

Endpoints

List accounts

Response (truncated):
  • balance is the available balance in the account’s own currency, with pending outgoing payments already deducted.
  • total_balance converts every account into base_currency at the current FX rate and sums them.
  • funding_accounts holds the bank details for paying into the account: local for domestic rails and swift for international transfers. Either is null when not available.
  • Accounts are ordered main account first, then by the member’s dashboard preference.
  • Only accounts the API key’s member can access are listed.
There is no pagination on this endpoint.

Get an account

Returns the same account object as a list item, wrapped in account, plus pending_outgoing: the amount of outbound payments that are authorised but not yet settled. It is already subtracted from balance. You get 404 with { "error": "Account not found" } when the account belongs to another company or the member cannot access it.