https://github.com/suissa/bleutrade
https://github.com/suissa/bleutrade
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/suissa/bleutrade
- Owner: suissa
- License: mit
- Created: 2018-01-22T05:10:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-29T21:25:10.000Z (over 7 years ago)
- Last Synced: 2025-03-21T15:12:39.783Z (2 months ago)
- Language: JavaScript
- Size: 68.4 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BleuTrade-API
NodeJS Client Library for the BleuTrade Exchange (BleuTrade.com) APIVery 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:
```javascript
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));
})
}
});
```