https://github.com/ibanapi/ibanapi_js
The official repository for the javascript JSONP integration for ibanapi.com
https://github.com/ibanapi/ibanapi_js
iban iban-checker iban-validator ibanking jsonp
Last synced: 3 months ago
JSON representation
The official repository for the javascript JSONP integration for ibanapi.com
- Host: GitHub
- URL: https://github.com/ibanapi/ibanapi_js
- Owner: ibanapi
- License: mit
- Created: 2021-09-18T09:28:46.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-18T10:04:57.000Z (almost 5 years ago)
- Last Synced: 2025-08-09T08:25:30.105Z (11 months ago)
- Topics: iban, iban-checker, iban-validator, ibanking, jsonp
- Language: JavaScript
- Homepage: https://ibanapi.com/get-api#jsonp
- Size: 2.93 KB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# 💳 IBAN API validation using ibanapi.com
The official javascript JSONP module for validating IBAN using the ibanapi.com public API
This module offers methods to validate IBAN (full and basic validation) wherein full validation will return the bank information alongside the basic validations.
## How to use
* Get an [API Key](https://ibanapi.com/get-api) from the ibanapi.com website.
* Download the distribuation file and link it in your project or use public CDN
* You can now initialize & use the library as follows
* For full iban validation
```javascript
//Get all the IBAN Information
var ibanApi = IBANApi();
ibanApi.validateIBAN("EE471000001020145685","API_KEY").then(function(data){
console.log(data);
});
```
* For basic iban validation
```javascript
//Get all the basic IBAN Information
var ibanApi = IBANApi();
ibanApi.validateIBANBasic("EE471000001020145685","API_KEY").then(function(data){
console.log(data);
});
```
* To get the balance
```javascript
//Get the account balance
var ibanApi = IBANApi();
ibanApi.getBalance("API_KEY").then(function(data){
console.log(data);
});
```
## Issue or suggestion
Please feel free to open a bug report or pull request to this repo.
or visit the [iban api website](https://ibanapi.com)