Retrieve accounts

Returns a list of accounts available to your organisation.

Use this endpoint to retrieve account identifiers and metadata. You’ll typically call this before initiating payments or account movements.

Endpoint

GET /accounts

Response

Returns a list of accounts.

📘

Only accounts you have permission to access are returned.

📘

The response does not include balances. To retrieve balances, use Retrieve account balances.

Example response
{
  "data": [
    {
      "accountId": 4111,
      "name": "Insurova - Carrier Funding",
      "currency": "GBP",
      "subAccountType": "Funding",
      "status": "Active"
    },
    {
      "accountId": 4104,
      "name": "US Property Funding Account",
      "currency": "USD",
      "subAccountType": "Funding",
      "status": "Active"
    }
  ]
}