Orderbook

Retrieves a derivative market's orderbook by marketID

get
Path parameters
market_idstringRequired

Market ID for the market

Query parameters
limitstring · uint64Optional
limit_cumulative_notionalstringOptional
Responses
200
A successful response.
application/json
get
GET /injective/exchange/v1beta1/derivative/orderbook/{market_id} HTTP/1.1
Host: inj.nownodes.io
Accept: */*
{
  "buys_price_level": [
    {
      "p": "text",
      "q": "text"
    }
  ],
  "sells_price_level": [
    {
      "p": "text",
      "q": "text"
    }
  ]
}