IBAN Validation API is an interface for validation and extraction of IBAN codes. This API follows the ISO 9362 standard which defines a standard format of Business Identifier Codes (also known as SWIFT-BIC, BIC, SWIFT ID or SWIFT code) approved by the International Organization for Standardization (ISO).
The IBAN Validation API allows you to validate the following:
IBAN Validation API only supports one GET
endpoint. Send this request to validate an IBAN code:
curl -L 'https://anyapi.io/api/v1/iban/BE68539007547034?apiKey=<YOUR_API_KEY>'
which would return this payload:
{ "valid": true, "iban": "BE68 5390 0754 7034", "countryCode": "BE", "bban": "539007547034", "electronicFormat": "BE68539007547034" }
This API provides the following endpoints:
Check out the IBAN Validation API Docs for more details.