v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Banking > BankAccount

Reads all Bank accounts

Fetch one or all bank accounts for the company.

get/api/2026-07-01/resources/banking/bank_accounts

Query parameters

ids[]string[]

An array of bank account IDs to filter by.

An array of bank account IDs to filter by.

[
  "1"
]
currencystring

A currency to filter by.

Example:EUR

A currency to filter by.

legal_entity_ids[]string[]

An array of legal entity IDs to filter by.

An array of legal entity IDs to filter by.

[
  "11"
]
updated_fromstring

Filter by accounts updated from a specific date.

Example:2021-01-01

Filter by accounts updated from a specific date.

Response

OK

Example response

{
  "data": [
    {
      "id": "1",
      "external_id": "ext_135",
      "currency": "EUR",
      "country": "es",
      "account_number": "ES28209582976036485969781",
      "account_number_type": "iban",
      "sort_code": "123456",
      "bic": "FAKEBB33",
      "iban": "ES28209582976036485969781",
      "routing_number": "12345678",
      "beneficiary_name": "factorial INC. - B66854530",
      "bank_name": "Fake Bank",
      "account_alias": "My Bank Account",
      "updated_at": "2021-01-01T00:00:00.000Z",
      "legal_entity_id": "11"
    }
  ]
}