Node.js unofficial client to
Purse.ioAPI
Right now v1 API are supported.
npm install --save purse.io
const Purse = require('purse.io')
let purse = new Purse()
purse.limit(25)
.offset(0)
.country('UK')
.amount(null)
.hide(null)
.fetch()
.then(console.log)
.catch(console.error)
// OR
purse({
limit: 25,
offset: 0,
country: 'UK', // if none specified, offers are mixed
amount: '0.5-1',
hide: null
}).fetch()
.then(console.log)
.catch(console.error)fetch(): Get Purse.io offers and return a Promise with the result.fetchRates(): Get Purse.io currency rates. It returns a Promise.getCountries(): Get list of supported countries.getLimits(): Get supported limits.version(): Get API version.
To enable debug set the env var DEBUG=purse.io
Rocco Musolino (@roccomuso)
MIT