latestOpenAPI 3.0.12026-08-0660121245.3 KB

099ef636a5a1

IBAN validation

Validate an IBAN

This endpoint validates an IBAN. If the IBAN is valid, then the API returns details about the number, e.g., the financial institution of the bank account and the account number.

post/v1/iban_lookups

Request body

ibanstring

International Bank Account Number (IBAN).

Example request

{
  "iban": "DE75512108001245126199"
}

Response

The supplied IBAN is valid. The response contains more detailed information about the IBAN.

ibanstring

International Bank Account Number (IBAN).

bicstring

The BIC of the financial institution.

institutionstring

The name of the financial institution to which the account belongs.

Example response

{
  "iban": "DE75512108001245126199",
  "bic": "SOBKDEB2XXX",
  "institution": "SOLARIS"
}