GET
/
v2
/
bank_accounts
curl --request GET \
  --url https://thirdparty.qonto.com/v2/bank_accounts \
  --header 'Authorization: Bearer <token>'
{
  "bank_accounts": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "Primary bank account",
      "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "active",
      "main": true,
      "iban": "FR7610004000000112345678901",
      "bic": "BNPAFRPPXXX",
      "currency": "EUR",
      "balance": 142188.43,
      "balance_cents": 14218843,
      "authorized_balance": 141148.12,
      "authorized_balance_cents": 14114812,
      "updated_at": "2024-04-03T12:00:00.000Z",
      "is_external_account": false,
      "account_number": 1234567890
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authorization header: Bearer <token>, where <token> is the access token received from the authorization server at the end of the OAuth 2.0 flow.

Headers

X-Qonto-Staging-Token
string

Required only for Sandbox API requests; to get one, please sign up to the Developer Portal.

Query Parameters

page
integer
default:1

Page number for pagination. Must be greater than 0.

Required range: x >= 1
per_page
integer
default:100

Number of business accounts per page. Must be between 1 and 100.

Required range: 1 <= x <= 100

Response

200
application/json
List of business accounts retrieved successfully

The response is of type object.