coinspot-api

0.1.20 • Public • Published

Please see https://www.coinspot.com.au/api for documentation on the CoinSpot API.

Example usage

var coinspot = require('coinspot-api');
 
var secret = ''; // insert your secret here
var key = ''; // insert your key here
 
var client = new coinspot(key, secret);
 
client.orders('LTC', function(e, data) {
  console.log(data);
});
 
client.myorders(function(e, data) {
  console.log(data);
});
 
client.spot(function(e, data) {
    console.log(data);
});
 
client.buy('BTC', 0.3, 529, function(e, data) {
    console.log(data);
});
 
client.sell('DOGE', 0.3, 0.00024, function(e, data) {
    console.log(data);
});

Package Sidebar

Install

npm i coinspot-api

Weekly Downloads

8

Version

0.1.20

License

MIT

Last publish

Collaborators

  • coinspot