z_zbapi

1.0.2 • Public • Published

zb.com API Wrapper

A node.js wrapper for the REST APIs exposed by bitcoin exchange zb.com. You will need to have a registered account with zb.com and generated API keys to access the private methods.

Please contact support@zb.com if you are having trouble opening an account or generating an API key.

A node.js wrapper for the REST APIs exposed by bitcoin exchange zb.com. You will need to have a registered account with zb.com and generated API keys to access the private methods.

Please contact support@zb.com if you are having trouble opening and account or generating an API key.

Install

npm install z_zbapi

var zb.com = require('z_zbapi');
 
// Test public data APIs
var publicClient = new ZB();
 
// get BTCUSDT ticker
publicClient.getTicker(console.log, 'btc_usdt');
 
// get BTCUSDT order book
publicClient.getDepth(console.log, 'btc_usdt');
 
// get BTCUSDT trades
publicClient.getTrades(console.log, 'btc_usdt');
 
// replace the parameters with your API key and secret
var privateClient = new ZB('your-api-key', 'your-api-secret');
 
privateClient.getUserInfo(console.log);
 
// buy limit order for 0.01 BTC at price 4000 USDT
privateClient.createOrder(console.log, 'btc_usdt', 'buy', '0.01', '4000');
 

Package Sidebar

Install

npm i z_zbapi

Weekly Downloads

0

Version

1.0.2

License

MIT

Unpacked Size

15.9 kB

Total Files

5

Last publish

Collaborators

  • zuoye520