HitBtc Node SDK - small node.js Promise-like library for the HitBtc API https://hitbtc.com
- full REST v2 API
npm i hitbtc-node-sdk
let APIKey ='APIKey';
let SecretKey ='SecretKey';
const hitbtc = require('hitbtc-node-sdk');
hitbtc.auth(APIKey, SecretKey);
hitbtc.accountBalance()
.then(balances => console.log(balances))
.catch(e =>console.log(e));See examples for more details