New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

ibanapi_jsonp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ibanapi_jsonp

The javascript library to validate the IBAN number using JSONP for the ibanapi.com website.

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

💳 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 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);
    });
  • For basic iban validation
    //Get all the basic IBAN Information
    var ibanApi = IBANApi();
    ibanApi.validateIBANBasic("EE471000001020145685","API_KEY").then(function(data){
        console.log(data);
    });
  • To get the balance
    //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

Keywords

IBAN

FAQs

Package last updated on 18 Sep 2021

Did you know?

Socket

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.

Install

Related posts