Get Finalized Market Trades
Trading
Get Market Events
Returns public, finalized MINED CLOB trades newest first. An exact market slug selects that market; if no market matches, an exact group slug combines all group markets. Stable-slug aliases are not resolved. No authentication is required.
GET
Get Finalized Market Trades
Returns public, finalized CLOB trade activity. Each event represents a
The reduced empty-page shape intentionally omits
MINED trade; this endpoint does not report order placement, cancellation, or liquidity-change events. No authentication is required.
Slug scope
The path accepts either an exact market slug or an exact market-group slug. Market lookup runs first. A market slug returns trades for that market; a group slug combines trades from all markets in the group. Stable-slug aliases are not resolved. The feed is backed only by finalized CLOB trades. Resolving a market that has no such activity returns an empty page.Trade fields and units
Events are ordered newest first.side is the taker side and uses the numeric mapping 0 = BUY, 1 = SELL.
matchedSize is the taker’s filled position-token amount in raw 6-decimal units. makerAmount and takerAmount currently both contain the trade’s collateral cost in raw 6-decimal units. These three values are decimal strings; divide them by 1e6 for display amounts. price is the weighted average fill price as a JSON number.
When available, profile publicly attributes the taker by username, display name, profile-picture URL, social URL, and rank. The field is omitted when no public profile can be resolved.
Pagination
page defaults to 1 and limit defaults to 100. Both must be integers greater than or equal to 1, and limit cannot exceed 100.
A populated page returns events, limit, page, totalPages, and totalRows. The current runtime returns the reduced shape below whenever a page has no events, including an out-of-range page:
limit, page, and totalRows.
Freshness and caching
Successful responses useCache-Control: public, max-age=30, s-maxage=30, stale-while-revalidate=30. Newly mined trades may therefore not appear immediately. A 404 response uses a 5-minute cache and a further 5-minute stale-while-revalidate window.
Errors
Path Parameters
Exact market or market-group slug. Market lookup takes precedence; stable-slug aliases are not resolved.
Example:
"presidential-election-2024"
Query Parameters
One-based page number. Defaults to 1.
Required range:
x >= 1Example:
1
Maximum trades per page. Defaults to 100.
Required range:
1 <= x <= 100Example:
20
Response
Finalized CLOB trade page. A page with no events currently returns only events and totalPages.