IBAN Checker JSON API

The API returns a validation code, a validation description and account properties in JSON format for the IBAN bank account provided as input.

Usage
Simply perform a GET call using this url with the API parameters described below:
https://tls.bankaccountchecker.com/listener.php?key=<your_api_key>&password=<your_password>&output=json&type=iban&bankaccount=GB29NWBK60161331926819
If you don't have an API key yet, just follow this link to register your free API key.

API parameters
Parameter Required Default Value
key Yes N/A API key provided with your account. Alternatively, use the 'guest' key but you will be restricted by the number of call per 24 hours.
password Yes N/A Password associated with the API key.
output No json json, xml
type Yes N/A iban
bankaccount Yes N/A The IBAN bankaccount you want to check.
Output
This is a sample of the output you will get in JSON:
{
   "resultCode":"01",
   "resultDescription":"IBAN is valid",
   "accountProperties":{
      "checksum":"29",
      "bban":"NWBK60161331926819",
      "bank":"NWBK",
      "country":"GB",
      "branch":"601613",
      "account":"31926819",
      "nationalchecksum":""
   }
}
Why do I need to register?

We are always trying to improve on our services and to do so we need to be able to tell who is querying what data and how often. This will enable us to fully optimize our limited resources to providing a more stable and reliable service to our users.

What is this API key and do I need it?

This API key is just a random string of characters which uniquely identifies each user. This is how we can track your usage and we perform security validation.

How do I get this API key?

This API key is free for everyone. You just have to go to here to register and a unique API key will be sent to your email address.

 

by aoWare