0.2.0 • Published 8 years ago

bitstamp-api v0.2.0

Weekly downloads
5
License
MIT
Repository
github
Last release
8 years ago

Bitstamp API Client

bitstamp-api is a simple wrapper for communicating with BitStamp in Node.JS.

Installation

npm install bitstamp-api

Usage

var Bitstamp = require('bitstamp-api');
var api = new Bitstamp();

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

Dependencies

  • underscore
  • request

FAQ

  • Q: I often receive invalid nonce / invalid signature errors, how do I fix that?
  • A: Generate a new API key on the Bitstamp website.
0.2.0

8 years ago

0.1.9

10 years ago

0.1.8

10 years ago

0.1.7

10 years ago

0.1.6

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago