GET
/
v1
/
public
/
get_order_book
/
{instrument_name}
curl --request GET \
  --url https://api.doppapp.com/v1/public/get_order_book/{instrument_name}
[
  {
    "ask_iv": 123,
    "asks_amounts": [
      123
    ],
    "asks_prices": [
      123
    ],
    "best_ask_amount": 123,
    "best_ask_price": 123,
    "best_bid_amount": 123,
    "best_bid_price": 123,
    "bid_iv": 123,
    "bids_amounts": [
      123
    ],
    "bids_prices": [
      123
    ],
    "change_id": 123,
    "delta": 123,
    "estimated_delivery_price": 123,
    "expiration_date": 123,
    "gamma": 123,
    "high": 123,
    "index_price": 123,
    "instrument_id": "<string>",
    "instrument_name": "<string>",
    "interest_rate": 123,
    "last_price": 123,
    "low": 123,
    "mark_iv": 123,
    "mark_price": 123,
    "max_price": 123,
    "min_price": 123,
    "open_interest": 123,
    "price_change": 123,
    "rho": 123,
    "settlement_price": 123,
    "side": "<string>",
    "state_": "<string>",
    "strike_price": 123,
    "theta": 123,
    "time_last_trade": 123,
    "ttm": 123,
    "underlying": "<string>",
    "underlying_index": "<string>",
    "underlying_price": 123,
    "vega": 123,
    "volume": 123
  }
]

Path Parameters

instrument_name
string
required

Instrument name

Response

200 - application/json

Retrieves the order book, along with other market values for a given instrument.

The response is of type object[].