binlist
v1.2.0
Published
Node.js wrapper for BIN List by PAYOUT
Downloads
387
Readme
binlist
Node.js wrapper for Binlist by PAYOUT https://bins.payout.com
Usage
var binlist = require('binlist');
binlist('XXXXXX').then(function(res){
console.log(res);
/*
{ bin: 'XXXXXX',
brand: 'VISA',
issuer: 'NATIONAL WESTMINSTER BANK PLC',
type: 'DEBIT',
country_code: 'GB',
is_prepaid: false }
*/
}, function(err){
console.log(err);
});