Skip to main content
GET
/
markets
/
{slug}
/
orderbook
Get Orderbook
curl --request GET \
  --url https://api.limitless.exchange/markets/{slug}/orderbook
{
  "adjustedMidpoint": 0.75,
  "asks": [
    {
      "price": 0.76,
      "size": 100
    }
  ],
  "bids": [
    {
      "price": 0.74,
      "size": 150
    }
  ],
  "lastTradePrice": 0.75,
  "maxSpread": 0.05,
  "minSize": 1,
  "tokenId": "19633204485790857949828516737993423758628930235371629943999544859324645414627"
}
For real-time orderbook updates, use the WebSocket API instead of polling this endpoint. Subscribe to subscribe_market_prices with marketSlugs.

Path Parameters

Response

Current orderbook with bids and asks

adjustedMidpoint
number
Example:

0.75

asks
object[]
bids
object[]
lastTradePrice
number
Example:

0.75

maxSpread
number
Example:

0.05

minSize
number
Example:

1

tokenId
string
Example:

"19633204485790857949828516737993423758628930235371629943999544859324645414627"