Highest-volume open Polymarket questions
Scope source and status, then rank by volume.
SELECT market_key, title, volume, close_time FROM markets.catalog WHERE source = 'polymarket' AND status = 'active' ORDER BY volume DESC LIMIT 20;
Source
One folded row per prediction market across Kalshi, Polymarket, and Manifold — title, category, status, resolution, open/close/settle times, volume, liquidity, and probability — queryable with read-only SQL.
markets.catalogmanifold.marketsmanifold.betsPublic venue APIs (Kalshi, Polymarket, Manifold); latest observation per market wins.
market_keysourcemarket_native_idevent_native_idcanonical_urititledescriptioncategoryoutcomesstatusresolutionopen_timeclose_timeresolve_timevolumevolume_24hliquidityopen_interestprobabilityunique_tradersextrasbuilt_atRead live from the schema registry for markets.catalog — 22 columns. Every relation's full contract is served by /v1/scry/schema.
Scope source and status, then rank by volume.
SELECT market_key, title, volume, close_time FROM markets.catalog WHERE source = 'polymarket' AND status = 'active' ORDER BY volume DESC LIMIT 20;
One aggregate shows how each venue’s catalog splits across lifecycle states.
SELECT source, status, count() AS markets FROM markets.catalog GROUP BY source, status ORDER BY markets DESC LIMIT 20;