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
| Parameter | Type | Default | Description |
|---|---|---|---|
market_id | string | — | Required. Polymarket conditionId to query trades for |
limit | 1-500 | 100 | Page size |
cursor | string | — | Opaque keyset cursor returned by the previous page |
since | integer | — | Unix 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"