0.0.7 • Published 8 years ago

bleutrade-api v0.0.7

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

BleuTrade-API

NodeJS Client Library for the BleuTrade Exchange (BleuTrade.com) API

Very much based on the work of https://github.com/nothingisdead/npm-cryptsy-api

It exposes all the API methods found here: https://bleutrade.com/help/API

Example Usage:

var util = require('util');

var BleutradeAPI = require('bleutrade-api');
var bleutrade = new BleutradeAPI("YOUR-KEY-FOR-PRIVATE-FUNCTIONS", "YOUR-SECRET-FOR-PRIVATE-FUNCTIONS");

bleutrade.getmarketsummaries(function(err, summaries) {
	if(err) return;

	if(summaries.success) {
		summaries.result.forEach(function(market) {
			console.log(util.format("%s: %d Low %d High %d Volume", market.MarketName, market.Low, market.High, market.Volume));
		})
	}
});
0.0.7

8 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago