0.2.0 • Published 9 years ago

bitso-api v0.2.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

Bitso API Client

bitso-api is a simple wrapper for communicating with Bitso in Node.JS. This library is a fork from Bitstamp API as bitso is fully compatible with Bitstamp API

Installation

npm install bitso-api

Usage

var Bitso = require('bitso-api');
var api = new Bitso();

api.transactions({time: 'minute'}, function(err, result) {
  if(!err) {
    console.log(result);
  } else {
    console.log(err);
  }
});

Dependencies

  • underscore
  • request

FAQ

0.2.0

9 years ago

0.1.9

9 years ago