IBAN Validation API

IBAN Validation API

Validate and check IBAN codes

Overview

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).

Features

The IBAN Validation API allows you to validate the following:

Example

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"
}

Endpoints

This API provides the following endpoints:

Check out the IBAN Validation API Docs for more details.