Get balance of bip card (Chile)
npm install bip





> Get balance of bip card (Chile)
``bash`
npm i -S bip
Try on RunKit
`js
const bip = require('bip');
const number = 11111111;
bip(number)
.then(console.log)
.catch(console.error);
`
Result:
`js``
{
number: XXXXX, // a number
balance: XXXXX, // a number
date: XXXXX, // a date
message: XXXXX, // a string
valid: XXXXX // a boolean
}