tradebyte-node-api
v3.0.0
Published
Node module to access Tradebyte REST API
Downloads
194
Readme
tradebyte node api
Usage
const Promise = require('bluebird');
const tradebyte = require('tradebyte-node-api')({
hnr: 1234,
user: 'my-username',
pass: 'my-password',
isSandbox: true // Remove this line if you want to hit Tradebyte production server
});
tradebyte
.getOrders({channel: 8})
.then((res) => console.log(res));