Skip to main content
The polygon.predictions.open_interest_daily view provides daily snapshots of open interest across all prediction markets. Open interest represents the total value of outstanding positions. These holdings include positions that have not been redeemed. Use this view for market liquidity analysis, total value locked tracking, and understanding the overall size of prediction markets.

Table Columns

Unique Key: unique_id
Column NameData TypeDescription
projectVARCHARProject name (ex. polymarket).
protocolVARCHARProtocol name (ex. polymarket).
dayDATEDate for the open interest snapshot.
addressVARCHARWallet address holding the position.
condition_idVARCHARUnique condition identifier for the market.
market_unique_idVARCHARUnique key for grouping related markets.
market_idVARCHARMarket identifier.
market_nameVARCHARMarket name.
market_descriptionVARCHARMarket description.
question_idVARCHARUnique question identifier.
questionVARCHARMarket question text.
question_descriptionVARCHARDetailed question description.
token_idVARCHARToken ID for the specific outcome token.
token_outcomeVARCHARToken outcome name (Yes/No).
categoryVARCHARMain category of the market.
sub_categoryVARCHARSpecific subcategory of the market.
tagsVARCHARMarket tags.
neg_riskBOOLEANWhether this is a NegRisk market.
resolution_outcomeVARCHARMarket resolution outcome if resolved.
resolved_atTIMESTAMP_NTZ(9)Market resolution timestamp.
open_interestFLOATNumber of outcome tokens held (position size), normalized by dividing by 1e6.
token_priceFLOATPrice per token on this day.
open_interest_usdFLOATUSD value of the open interest position (open_interest * token_price).
market_activeBOOLEANWhether market is currently active.
market_closedBOOLEANWhether market is closed.
market_accepting_ordersBOOLEANWhether market is accepting new orders.
is_winnerBOOLEANWhether this outcome won the market.
unique_idVARCHARUnique identifier combining day, address, and token_id (format ‘day-YYYY-MM-DD_address-_token_id-’).

Sample Query

Understanding Open Interest

  • Position size: open_interest represents the number of outcome tokens held
  • USD value: open_interest_usd is calculated as open_interest * token_price