Market Data

Trades

Recent trades for a market, with keyset pagination.

GET /trades

Recent trades for a market. Keyset pagination on composite (timestamp DESC, id DESC) within condition_id. Pass the returned next_cursor to advance; use since for forward-only consumers.

Parameters

ParameterTypeDefaultDescription
market_idstringRequired. Polymarket conditionId to query trades for
limit1-500100Page size
cursorstringOpaque keyset cursor returned by the previous page
sinceintegerUnix seconds. Only trades with timestamp ≥ since. Passing milliseconds will silently exclude every real row.
curl -H "x-api-key: YOUR_KEY" \
  "https://api.scanna.xyz/trades?market_id=0xfb1835...&limit=100"