About this endpoint
What it does
Validates an IBAN submitted in the request body. On success, it returns a JSON object with a data field that is either a detailed IBAN information object or a boolean false when the IBAN is invalid.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| iban | String | Yes | The IBAN to validate. |
Response
Returns a JSON object with a data field. The data value is either an object containing IBAN details or the boolean false when the IBAN is invalid.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| data | Object / Boolean | Yes | Either an object with IBAN details, or false when the IBAN is invalid. |
| data.bban | String | No | The BBAN portion of the IBAN. |
| data.iban | String | No | The IBAN. |
| data.valid | Boolean | No | Indicates whether the IBAN is valid. |
| data.country_code | String | No | The IBAN country code. |
| data.sepa_country | Boolean | No | Indicates whether the country is a SEPA country. |
| data.printable_format | String | No | The IBAN in printable format. |