@promptapi/bin-checker-pkg is a simple JavaScript wrapper for bincheck-api.
- You need to signup for Prompt API
- You need to subscribe bincheck-api, test drive is free!!!
- You need to set
PROMPTAPI_TOKENenvironment variable after subscription.
then;
$ npm install @promptapi/bin-checker-pkgor, install from GitHub registry;
$ npm install @promptapi/[email protected]const promptapi = require('@promptapi/bin-checker-pkg')
promptapi.binChecker('370244').then(result => {
if(result.error){
console.log(result.error)
} else {
console.log(result.bank_name)
console.log(result.country)
console.log(result.url)
console.log(result.type)
console.log(result.scheme)
console.log(result.bin)
}
})Result:
Banesco
Venezuela (bolivarian Republic Of)
www.banesco.com
Credit
American Express
370244
If you receive an error, result will contain error as string.
All you need is node and npm...
This project is licensed under MIT
- Prompt API - Creator, maintainer
All PR’s are welcome!
fork(https://github.com/promptapi/bin-checker-pkg/fork)- Create your
branch(git checkout -b my-feature) commityours (git commit -am 'Add awesome features...')pushyourbranch(git push origin my-feature)- Than create a new Pull Request!
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.