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

bintable_api

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

bintable_api

BIN lookup api provided by bintable.com

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

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

Keywords

bin

FAQs

Package last updated on 06 Jan 2020

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