v1

latestOpenAPI 3.1.02026-07-24180245513.9 KB
Bank Code Lookup

Bank code lookup

Retrieve the bank code of the bank holding an account from its IBAN

post/bank_code_lookup

Request body

account_numberstring required

The IBAN used to identify the associated bank code. In sandbox, every IBAN returns BANKXXPP with XX being the first 2 letters of the IBAN, except for FR5814508000307438479856J64 that returns a functional error.

Example request

{
  "account_number": "FR1112739000503237488219N55"
}

Response

200

bank_codestring required

The bank code associated with the IBAN.

Example response

{
  "bank_code": "BANKFRPP"
}