
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
ibanapi_jsonp
Advanced tools
The javascript library to validate the IBAN number using JSONP for the ibanapi.com website.
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.
Get an API Key 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
//Get all the IBAN Information
var ibanApi = IBANApi();
ibanApi.validateIBAN("EE471000001020145685","API_KEY").then(function(data){
console.log(data);
});
//Get all the basic IBAN Information
var ibanApi = IBANApi();
ibanApi.validateIBANBasic("EE471000001020145685","API_KEY").then(function(data){
console.log(data);
});
//Get the account balance
var ibanApi = IBANApi();
ibanApi.getBalance("API_KEY").then(function(data){
console.log(data);
});
Please feel free to open a bug report or pull request to this repo.
or visit the iban api website
FAQs
The javascript library to validate the IBAN number using JSONP for the ibanapi.com website.
We found that ibanapi_jsonp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.