Bittrex Get Order Book Details

Get order book for a given market via Bittrex 's API.


Stuff You Need to Know

This component uses the Bittrex API to retrieve order details for any of the markets they support. Possible details are listed in the tables below.


How to Configure

Component-specific settings:
  • market (field) - This field is required. Enter the market name you plan to use (ex: BTC-LTC).
  • type (field) - This field is required. Select the type of the order (sell, buy or both).

Standard settings:

Click here to view information on standard settings.


What Happens Next

Response includes the following for each trading market

{
  "success": true,
  "message": "''",
  "result": [
    {
      "buy": [
        {
          "quantity": 12.37,
          "rate": 32.55412402
        }
      ],
      "sell": [
        {
          "quantity": 12.37,
          "rate": 32.55412402
        }
      ]
    }
  ]
}


Want More Info?

Read more about the Bittrex API hereWant access to more Bittrex API endpoints? Contact us here for more info!