0.1.3 • Published 5 years ago
@promptapi/bin-checker-pkg v0.1.3
Prompt API - BIN Checker - Node Package
@promptapi/bin-checker-pkg is a simple JavaScript wrapper for bincheck-api.
Requirements
- 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/bin-checker-pkg@0.1.3Example Usage
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
370244If you receive an error, result will contain error as string.
Development
All you need is node and npm...
License
This project is licensed under MIT
Contributer(s)
- Prompt API - Creator, maintainer
Contribute
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.