Skip to main content
GET
/
api
/
markets
/
{symbol}
/
trades
Public trade tape
curl --request GET \
  --url https://core-api.adipredictstreet.com/api/markets/{symbol}/trades
{
  "symbol": "<string>",
  "trades": [
    {
      "id": "<string>",
      "price": "<string>",
      "quantity": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "settledAt": "2023-11-07T05:31:56Z",
      "maker": "<string>",
      "taker": "<string>",
      "makerFee": "<string>",
      "takerFee": "<string>",
      "outcomeIndex": 123,
      "outcomeLabel": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.adipredictstreet.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

symbol
string
required

Market symbol, e.g. UAE-CUP-FINAL-20260425. Used by sub-resource endpoints (/orderbook, /trades, /ohlc, /traders). The root market-detail endpoint /api/markets/{slug} accepts the slug instead — see MarketSlug.

Query Parameters

limit
integer
default:50

Page size. < 1 (including 0 / negatives) → 400 invalid_limit. Server silently clamps values above maximum to maximum.

Required range: 1 <= x <= 200
before
string<date-time>

ISO-8601 timestamp; returns trades strictly older than this (exclusive). Pair with limit to page backwards. Combine with after for a bounded (after, before) range. Unknown pagination params (offset, page, cursor) are silently ignored — this endpoint is time-cursor only.

after
string<date-time>

ISO-8601 timestamp; returns trades strictly newer than this (exclusive). Honoured only on sort=time (default). Pair with before for a bounded (after, before) range — typical use case is WS-vs-REST reconcile after a disconnect (after = last seen createdAt).

Response

200 - application/json

OK

symbol
string
required
trades
object[]
required