Attention : This is a Tools used to get info BIN/IIN from specific card numbers.
- Card Brand
- Card Type
- Card Category
- Card Issuer
- Card Country Code
- Card Country Name
- Install
Git
andNodeJS
- Clone Repository
git clone https://github.com/andhkdwmln/bin-iin-lookup
- Move to directory
cd bin-iin-lookup
- Install required module
npm install
- Build
npm run build
- Compiled code inside
lib
folder
const { BinLookup } = require('./lib/index');
(async () => {
const data = await BinLookup('424242')
console.log(data);
})();