Socket
Socket
Sign inDemoInstall

bittrex-api-js

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bittrex-api-js

Very simple Bittrex API wrapper for Node JS


Version published
Weekly downloads
1
Maintainers
1
Install size
4.58 kB
Created
Weekly downloads
 

Readme

Source

bittrex-js

Very simple Bittrex API wrapper for Node JS.

Created by GAFO TECH;

Information for the API can be found here

Installation

npm install bittrex-js

Usage

Usage of bittrex-js is very simple. There is only one method after initialization: req.

To make an API call, just call the req method with the endpoint and data object as parameters.

var Bittrex = require('bittrex-js');

(async () => {
  var b = new Bittrex('apiKey', 'apiSecret');

  var ticker = await b.req('/public/getticker', {market: 'BTC'});

})

Endpoints

Request parameters coming soon

Public API

  • /public/getmarkets
  • /public/getmarkets
  • /public/getcurrencies
  • /public/getticker
  • /public/getmarketsummaries
  • /public/getmarketsummary
  • /public/getorderbook
  • /public/getmarkethistory

Market API

  • /market/buylimit
  • /market/selllimit
  • /market/cancel
  • /market/getopenorders

Account API

  • /account/getbalances
  • /account/getbalance
  • /account/getdepositaddress
  • /account/withdraw
  • /account/getorder
  • /account/getorderhistory
  • /account/getwithdrawalhistory
  • /account/getdeposithistory

Keywords

FAQs

Last updated on 09 Jul 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc