IBAN API
The IBAN API allows you to look up and validate any International Bank Account Number (IBAN).
Checking API status...
/v1/iban GET
https://api.api-ninjas.com/v1/iban
Returns detailed information on a given IBAN.
Parameters
ibanrequiredThe IBAN to look up.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
ibanThe IBAN that was looked up.
bank_namepremium onlyThe name of the bank associated with the IBAN.
account_numberThe account number portion of the IBAN.
bank_codeThe bank code portion of the IBAN.
countryThe country code portion of the IBAN.
checksumThe checksum portion of the IBAN.
validpremium onlyWhether the IBAN is valid or not.
bbanThe Basic Bank Account Number (BBAN) portion of the IBAN.
Sample Request Live Demo!
https://api.api-ninjas.com/v1/iban?iban=DE16200700000532013000Headers
X-Api-KeyLog in or sign up to get your API KeySample Response
1
2
3
4
5
6
7
8
9
10
{
"iban": "DE16200700000532013000",
"bank_name": "Deutsche Bank",
"account_number": "0532013000",
"bank_code": "20070000",
"country": "DE",
"checksum": "16",
"valid": true,
"bban": "200700000532013000"
}Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v1/iban?iban=GB29NWBK60161331926819" \
-H "X-Api-Key: YOUR_API_KEY"If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.