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

ibanapi

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

The official IBANAPI.com node module, the ibanapi.com is an online service to validate iban and get bank information from it.

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

💳 IBAN API validation using ibanapi.com

The official node 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.

  • Install the package using the following command npm install --save ibanapi

  • You can now initialize & use the package as follows

  • For full iban validation

    //Get all the IBAN Information
    ibanapi.setConfig("API_KEY")
    ibanapi.validateIBAN("EE471000001020145685",ibanResult);
    function ibanResult(res){
        console.log(res);
    }
  • For basic iban validation
    //Get all the basic IBAN Information
    ibanapi.setConfig("API_KEY")
    ibanapi.validateIBANBasic("EE471000001020145685",ibanBasicResult);
    function ibanBasicResult(res){
        console.log(res);
    }
  • To get the balance
    //Get the account balance
    ibanapi.setConfig("API_KEY")
    ibanapi.getBalance(balanceResult);
    function balanceResult(res){
        console.log(res);
    }

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 04 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