matmunn / coinspot-api-promises

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

License:Other


Languages

Language:JavaScript 100.0%