bintable_api

1.0.0 • Public • Published

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

/bintable_api/

    Package Sidebar

    Install

    npm i bintable_api

    Weekly Downloads

    2

    Version

    1.0.0

    License

    ISC

    Unpacked Size

    2.54 kB

    Total Files

    3

    Last publish

    Collaborators

    • samymassoud