Skip to main content
Use these reads to understand where trading activity is concentrated and how traders and integrations perform over time.

Market Activity

The examples below assume you already have a market object. To find or fetch one, see Discover Markets.
Given a market, read its condition and event IDs:

Recent Trades

Review the trades recently matched in a market, including their side, price, size, outcome, wallet, and timestamp.
Call listTrades() on a PublicClient or SecureClient.

Open Interest

Measure the value currently held in outstanding positions for one or more markets.
Call fetchOpenInterest() on a PublicClient or SecureClient. Pass up to 20 condition IDs, or omit conditionIds for the single global figure (served as conditionId: null).

Market Holders

Find the largest public holders for each outcome token in a market.
Call listMarketHolders() on a PublicClient or SecureClient and walk the cursor pages. pageSize applies separately to each outcome token, so merge groups by assetId across pages. Set includePnl: true (one condition ID, page size at most 100) to add position economics to every holder row.

Event Live Volume

Summarize activity across an event and break the volume down by market.
Call fetchEventLiveVolume() on a PublicClient or SecureClient. Pass one or more event IDs; a list spans events and returns one combined result.

Market Resolution

Check a market’s resolution progress.
Call fetchResolutions() on a PublicClient or SecureClient.
Each row includes its status and lastUpdatedAt. payouts is present when published. No matching resolution returns an empty array.

Trader Leaderboard

Compare trader volume and profit and loss over a selected period.
Call listTraderLeaderboard() on a PublicClient or SecureClient. window defaults to one day, category to overall, and sortBy to PnL. Tied traders share a rank and the next rank skips.
Call fetchTraderLeaderboardStanding() on a PublicClient or SecureClient to read one wallet’s standing on both boards.
When called on a SecureClient, user can be omitted and defaults to the authenticated account’s wallet.
A null rank means the wallet is unranked on that board.

Biggest Winners

Compare individual winning positions by their profit at resolution.
Call listBiggestWinners() on a PublicClient or SecureClient.
window selects the resolution period. Each row is one position. Check kind before using eventId, which is null for Combos.

Builder Analytics

Evaluate the reach of a builder integration through its attributed trading activity.

Builder Leaderboard

Compare builders by attributed volume and active users.
Call listBuilderLeaderboard() on a PublicClient or SecureClient.

Builder Volume

Track attributed builder volume and active users over time.
Call fetchBuilderVolume() on a PublicClient or SecureClient. interval picks the bucket width and bucketLimit counts the most recent complete buckets (at most 90); every builder active in a bucket gets one row.