Skip to main content
GET
/
api
/
markets
/
{symbol}
/
orderbook
Orderbook snapshot
curl --request GET \
  --url https://core.api.dev.predictstreet.sde.adifoundation.ai/api/markets/{symbol}/orderbook
{
  "symbol": "<string>",
  "seq": 123,
  "bids": [
    {
      "price": "<string>",
      "quantity": "<string>"
    }
  ],
  "asks": [
    {
      "price": "<string>",
      "quantity": "<string>"
    }
  ]
}

Path Parameters

symbol
string
required

Market symbol, e.g. UAE-CUP-FINAL-20260425.

Query Parameters

outcome
string
depth
integer
default:20
Required range: x <= 50

Response

200 - application/json

OK

symbol
string
seq
integer
bids
object[]
asks
object[]