---
title: "List all bank account"
method: GET
path: "/bank-accounts"
tags: ["BankAccount"]
---

# List all bank account

`GET /bank-accounts`

Returns a list of your bank accounts. The bank accounts are returned sorted by creation date, with the most recent bank account appearing first.

## Query parameters

- `page` integer
- `per_page` integer

## Response `200`

Success response

- BankAccountList — A object with a data property that contains an array of up to limit bank accounts. Each entry in the array is a separate bank account object. If no more bank accounts are available, the resulting array will be empty.
  - `data` BankAccount[]
    - `id` integer
    - `name` string, required
    - `account_number` string, required
    - `account_number_iban` string
    - `swift` string
    - `currency` 'AUD' | 'BGN' | 'BRL' | 'CAD' | 'CHF' | 'CNY' | 'CZK' | 'DKK' | 'EUR' | 'GBP' | 'HKD' | 'HRK' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'ISK' | 'JPY' | 'KRW' | 'LTL' | 'LVL' | 'MXN' | 'MYR' | 'NOK' | 'NZD' | 'PHP' | 'PLN' | 'RON' | 'RSD' | 'RUB' | 'SEK' | 'SGD' | 'THB' | 'TRY' | 'UAH' | 'USD' | 'ZAR', required
    - `need_qr` boolean
  - `total` integer
  - `per_page` integer
  - `current_page` integer
  - `last_page` integer
  - `prev_page_url` string
  - `next_page_url` string

## Other responses

- `400` — The request is malformed.
- `401` — Authorization information is missing or invalid.
- `422` — Validation errors occured.
- `500` — Internal server error.

---

[API](https://skmtc.dev/swaggerhub/apis/billingo-api-v3.md) · [All operations](https://skmtc.dev/swaggerhub/apis/billingo-api-v3/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/swaggerhub/billingo-api-v3/revisions/03576cabefad/schema)
