An open API service indexing awesome lists of open source software.

https://github.com/pthm/binlist

Node.js wrapper for binlist.net
https://github.com/pthm/binlist

Last synced: 8 months ago
JSON representation

Node.js wrapper for binlist.net

Awesome Lists containing this project

README

          

# binlist
Node.js wrapper for http://www.binlist.net

## Usage
```javascript
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);
});
```