coinspot-api-promises
v0.0.2
Published
coinspot.com.au API client for node.js using promises
Downloads
1
Maintainers
Readme
Please see https://www.coinspot.com.au/api for documentation on the CoinSpot API.
Example usage
var coinspot = require('coinspot-api-promises');
var secret = ''; // insert your secret here
var key = ''; // insert your key here
var client = new coinspot(key, secret);
client.orders('LTC').then(response => {
console.log(response.data);
});
Functions retain the same signatures as they have in coinspot-api, which this project is based off.