1.0.0 • Published 4 years ago

bintable_api v1.0.0

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

api_nodejs

The Nodejs Package for BINTable.com API

Installation

Please run > npm i bintable_api

Usage

The package contains two endpoints

  • BIN Lookup endpoint
  • Balance check endpoint

For calling BIN lookup, you can use the following code after replacing the BIN, and API_KEY with valid data.

const  bintableApi = require('bintable_api');
bintableApi.Lookup(BIN,API_KEY,lookup);

function lookup(data){
    console.log(data);
}

For Calling Balance check

const  bintableApi = require('bintable_api');
bintableApi.Balance(API_KEY,balance);

function balance(data){
    console.log(data);
}

For more information and API key, please visit BINTable BIN Lookup API https://bintable.com/get-api