From 871033171716c5bd2a6790af3b6fc96fda0be39c Mon Sep 17 00:00:00 2001 From: john_wang Date: Mon, 20 Apr 2026 13:54:32 -0500 Subject: [PATCH 01/14] analysis: add shared fee, edge, and risk math Three pure modules used by the signal and arbitrage code. fees.ts models per-platform taker fees with a bounded adverse-execution slippage term. edge.ts returns signed edge, fractional Kelly, and breakeven probability for a bet at a given price. risk.ts wraps both to produce EV, variance, and a TAKE/SCALE_DOWN/AVOID call on a proposed trade. No I/O in any of them; consumed by the commits that follow. --- src/analysis/edge.ts | 243 ++++++++++++++++++++++++++++++++++++++++++ src/analysis/fees.ts | 103 ++++++++++++++++++ src/analysis/risk.ts | 244 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 590 insertions(+) create mode 100644 src/analysis/edge.ts create mode 100644 src/analysis/fees.ts create mode 100644 src/analysis/risk.ts diff --git a/src/analysis/edge.ts b/src/analysis/edge.ts new file mode 100644 index 0000000..2c0a57b --- /dev/null +++ b/src/analysis/edge.ts @@ -0,0 +1,243 @@ +// Edge, Expected Value, and Kelly sizing utilities. +// +// Every trading-signal surface in Musashi funnels through these functions so +// that the numbers returned to bot developers are mutually consistent: +// +// true_prob — our estimate of the real probability of YES +// market_price — current YES price on the chosen platform +// edge_raw — true_prob - market_price (signed, can be negative) +// edge_net — edge after fees & slippage for the recommended stake +// ev_per_dollar — expected return per $1 staked +// kelly_fraction — optimal bankroll fraction (capped, sign-aware) +// +// This file is deliberately free of I/O; it only does math so it can be +// reused from endpoints, SDK, tests, and the signal generator. + +import { costFraction, FeeModel } from './fees'; + +export type Side = 'YES' | 'NO' | 'HOLD'; + +export interface EdgeInputs { + trueProb: number; // 0..1 — caller's best estimate + yesPrice: number; // 0..1 — current market YES price + volume24h: number; // liquidity proxy + fees: FeeModel; + /** Stake in dollars we are evaluating for. Defaults to a small reference size. */ + stake?: number; + /** + * Caller's confidence in `trueProb` on [0, 1]. Used to shrink Kelly + * toward zero. If omitted we assume 1.0 (take the estimate at face value). + */ + confidence?: number; + /** + * Kelly fraction cap (aka "fractional Kelly"). Defaults to 0.25 which is + * the canonical quarter-Kelly sizing used by most prop-trading desks to + * control drawdown. + */ + kellyCap?: number; +} + +export interface EdgeResult { + side: Side; + trueProb: number; + marketPrice: number; // price of the side we would buy + edgeRaw: number; // signed, pre-cost + edgeNet: number; // signed, post-cost + evPerDollar: number; // signed, post-cost + kellyFraction: number; // 0..1, capped + breakevenProb: number; // min true_prob for non-negative EV + worstCaseLoss: number; // fraction of stake lost if we're wrong + bestCaseGain: number; // fraction of stake gained if we're right + reasoning: string; +} + +/** + * Clamp `x` into `[lo, hi]`. Defensive against NaN / Infinity. + */ +export function clamp(x: number, lo: number, hi: number): number { + if (!Number.isFinite(x)) return lo; + return Math.max(lo, Math.min(hi, x)); +} + +/** + * Compute the Kelly fraction for a binary bet priced at `p` with true + * probability `q`. + * + * For "buy YES at price p, wins $1 if YES": + * payout_if_win = (1 - p) / p (dollars won per dollar staked) + * payout_if_lose = -1 + * f* = q - (1 - q) / b, where b = payout_if_win + * = (q - p) / (1 - p) + * + * If f* <= 0, we should not take the bet (edge is non-positive). + * Returns a *signed* fraction: positive → buy YES, negative → buy NO. + */ +export function kellyFraction(trueProb: number, marketPrice: number): number { + const q = clamp(trueProb, 1e-4, 1 - 1e-4); + const p = clamp(marketPrice, 1e-4, 1 - 1e-4); + + const fYes = (q - p) / (1 - p); + const fNo = ((1 - q) - (1 - p)) / p; // equivalent form for buying NO at (1 - p) + + // Choose the side with positive expectation. If both are non-positive + // (shouldn't normally happen), return 0. + if (fYes >= fNo && fYes > 0) return fYes; + if (fNo > fYes && fNo > 0) return -fNo; + return 0; +} + +/** + * Main entry point used by the signal generator, arbitrage code, and the + * position-sizing endpoint. + */ +export function computeEdge(input: EdgeInputs): EdgeResult { + const { + trueProb, + yesPrice, + volume24h, + fees, + stake = 100, + confidence = 1, + kellyCap = 0.25, + } = input; + + const q = clamp(trueProb, 0, 1); + const yes = clamp(yesPrice, 1e-4, 1 - 1e-4); + const no = 1 - yes; + + // Which side has positive raw edge? + const edgeYes = q - yes; + const edgeNo = (1 - q) - no; + + let side: Side; + let price: number; + let edgeRaw: number; + let payoutIfWin: number; + let winProb: number; + + if (edgeYes > 0 && edgeYes >= edgeNo) { + side = 'YES'; + price = yes; + edgeRaw = edgeYes; + payoutIfWin = (1 - yes) / yes; // dollars won per $1 staked when YES hits + winProb = q; + } else if (edgeNo > 0) { + side = 'NO'; + price = no; + edgeRaw = edgeNo; + payoutIfWin = (1 - no) / no; + winProb = 1 - q; + } else { + side = 'HOLD'; + price = yes; + edgeRaw = Math.max(edgeYes, edgeNo); + payoutIfWin = 0; + winProb = q; + } + + // Fee-adjusted EV per dollar staked. + // EV = winProb * payoutIfWin - (1 - winProb) * 1 - costFraction + const cost = costFraction(stake, volume24h, price, fees); + const evPerDollarPreCost = winProb * payoutIfWin - (1 - winProb); + const evPerDollar = evPerDollarPreCost - cost; + const edgeNet = edgeRaw - cost * price; // convert cost frac back to price space + + // Confidence shrinkage: if the caller isn't sure about `trueProb`, we + // shade the implied probability toward the market price before sizing. + const shrunkProb = confidence * q + (1 - confidence) * yes; + + // Signed Kelly on the same side we recommended. + let signedKelly = kellyFraction(shrunkProb, yes); + // If shrinkage flipped the side (rare), force 0 to avoid confusing bots. + if ((side === 'YES' && signedKelly <= 0) || (side === 'NO' && signedKelly >= 0)) { + signedKelly = 0; + } + + const absKelly = Math.abs(signedKelly); + const kelly = clamp(absKelly, 0, clamp(kellyCap, 0, 1)); + + // Breakeven: solve evPerDollar = 0 for q, side held fixed. + // For YES side: q * (1 - yes)/yes - (1 - q) - cost = 0 + // → q = (yes + cost * yes) / (1 - yes + yes) = yes * (1 + cost) (approx) + // We compute numerically for robustness. + const breakevenProb = side === 'NO' + ? 1 - (no + cost * no) + : yes + cost * yes; + + const reasoning = buildReasoning({ + side, + q, + yes, + edgeRaw, + edgeNet, + cost, + evPerDollar, + kelly, + confidence, + }); + + return { + side, + trueProb: q, + marketPrice: price, + edgeRaw, + edgeNet, + evPerDollar, + kellyFraction: side === 'HOLD' ? 0 : kelly, + breakevenProb: clamp(breakevenProb, 0, 1), + worstCaseLoss: side === 'HOLD' ? 0 : 1 + cost, // you lose stake + costs + bestCaseGain: side === 'HOLD' ? 0 : payoutIfWin - cost, + reasoning, + }; +} + +function buildReasoning(ctx: { + side: Side; + q: number; + yes: number; + edgeRaw: number; + edgeNet: number; + cost: number; + evPerDollar: number; + kelly: number; + confidence: number; +}): string { + const pct = (x: number) => `${(x * 100).toFixed(1)}%`; + + if (ctx.side === 'HOLD') { + if (ctx.evPerDollar < 0) { + return `Costs (${pct(ctx.cost)}) exceed the ${pct(Math.abs(ctx.edgeRaw))} raw edge. Expected value is negative — HOLD.`; + } + return `No clear directional edge between your estimate (${pct(ctx.q)}) and the market (${pct(ctx.yes)}). HOLD.`; + } + + const direction = ctx.side === 'YES' + ? `YES underpriced at ${pct(ctx.yes)}` + : `YES overpriced at ${pct(ctx.yes)} (so buy NO)`; + + const confNote = ctx.confidence < 0.9 + ? ` Shrunk by ${pct(1 - ctx.confidence)} confidence discount.` + : ''; + + return `Your estimate ${pct(ctx.q)} vs. market ${pct(ctx.yes)} ⇒ ${direction}. ` + + `Net edge ${pct(ctx.edgeNet)} after ${pct(ctx.cost)} costs; EV/$ = ${ctx.evPerDollar.toFixed(3)}. ` + + `Suggested Kelly fraction ${pct(ctx.kelly)} of bankroll.${confNote}`; +} + +/** + * Brier score for evaluating the quality of a probability forecast. + * Lower is better. `outcome` must be 0 or 1. + */ +export function brierScore(prob: number, outcome: 0 | 1): number { + const p = clamp(prob, 0, 1); + return (p - outcome) ** 2; +} + +/** + * Log loss (cross-entropy) — an alternative calibration metric. Lower is + * better. Caps probabilities away from {0, 1} to avoid -Infinity. + */ +export function logLoss(prob: number, outcome: 0 | 1): number { + const p = clamp(prob, 1e-6, 1 - 1e-6); + return outcome === 1 ? -Math.log(p) : -Math.log(1 - p); +} diff --git a/src/analysis/fees.ts b/src/analysis/fees.ts new file mode 100644 index 0000000..3dae3ab --- /dev/null +++ b/src/analysis/fees.ts @@ -0,0 +1,103 @@ +// Platform fee & slippage model +// Used by edge, arbitrage, and position-sizing calculations so that +// every "profit" number returned by the API is net of realistic trading costs. + +export type Platform = 'polymarket' | 'kalshi'; + +export interface FeeModel { + /** + * Proportional taker fee paid on every fill, as a fraction of notional + * (e.g. 0.02 = 2% of stake). + */ + takerFee: number; + /** + * Flat per-trade cost (gas / network / processing) in USD. + * Used to filter out tiny trades where fixed costs dominate. + */ + fixedCost: number; + /** + * Expected bid/ask spread cost as a fraction of price (one side). + * Used as a proxy for slippage when order-book depth isn't available. + */ + spreadCost: number; + /** + * Additional slippage coefficient `k` in the impact model + * `slippage = k * sqrt(stake / volume24h)`. + * + * Captures the fact that larger orders walk the book further. + */ + impactCoefficient: number; +} + +/** + * Default fee models. These are conservative — bots can override at the + * endpoint level (see /api/position-sizing, /api/risk-assessment). + * + * Polymarket takes 0% maker fee but gas + spread typically costs ~2%. + * Kalshi takes up to ~7% of profit for retail; we model as ~3% of notional + * to keep the math linear. + */ +export const DEFAULT_FEES: Record = { + polymarket: { + takerFee: 0.0, + fixedCost: 0.25, + spreadCost: 0.01, + impactCoefficient: 0.5, + }, + kalshi: { + takerFee: 0.02, + fixedCost: 0.0, + spreadCost: 0.005, + impactCoefficient: 0.5, + }, +}; + +/** + * Estimate realized slippage for a trade of `stake` dollars in a market + * with 24h volume `volume24h`. Returns a fraction of price (e.g. 0.01 = 1¢). + */ +export function estimateSlippage(stake: number, volume24h: number, model: FeeModel): number { + if (stake <= 0) return 0; + const liquidity = Math.max(volume24h, 1_000); // floor to avoid blow-ups + const impact = model.impactCoefficient * Math.sqrt(stake / liquidity); + return model.spreadCost + impact; +} + +/** + * Total cost of a round-trip trade expressed as a fraction of `stake`. + * Includes taker fees + slippage + amortized fixed costs. + * + * The slippage term uses the "adverse execution" formulation: + * + * cost_from_slippage = slippage / (price + slippage) + * + * which equals the fraction of stake you lose because each share costs + * `price + slippage` instead of `price`. For thick markets the slippage is + * tiny so this reduces to `slippage / price`, but for penny markets it + * caps at 1.0 instead of exploding. + * + * The total is hard-capped at 0.9 so the EV computation remains stable + * even on pathologically illiquid quotes. + */ +export function costFraction( + stake: number, + volume24h: number, + price: number, + model: FeeModel, +): number { + if (stake <= 0) return 0; + const slippage = estimateSlippage(stake, volume24h, model); + const safePrice = Math.max(price, 1e-4); + const slipFrac = slippage / (safePrice + slippage); + const fixedFrac = model.fixedCost / Math.max(stake, 1); + const raw = model.takerFee + slipFrac + fixedFrac; + return Math.min(0.9, raw); +} + +/** + * Resolve a platform name to its fee model, falling back to Polymarket. + */ +export function getFeeModel(platform: string): FeeModel { + if (platform === 'kalshi') return DEFAULT_FEES.kalshi; + return DEFAULT_FEES.polymarket; +} diff --git a/src/analysis/risk.ts b/src/analysis/risk.ts new file mode 100644 index 0000000..b823b88 --- /dev/null +++ b/src/analysis/risk.ts @@ -0,0 +1,244 @@ +// Risk assessment for a proposed binary-outcome trade. +// +// The API exposes this through /api/risk-assessment so that a trading bot +// can submit a trade idea (side + price + size + conviction) and get back +// an opinionated answer: +// +// recommendation — TAKE | SCALE_DOWN | AVOID +// expected_value — dollar EV after fees / slippage +// variance — variance of the PnL distribution in dollars^2 +// stddev — standard deviation (matches EV units) +// sharpe — EV / stddev (single-trade) +// prob_profit — probability that PnL > 0 at resolution +// worst_case — max dollar loss +// best_case — max dollar gain +// time_to_expiry_days (optional) — used for time-decay warnings +// +// This module only performs math & reasoning; HTTP plumbing lives in +// `api/risk-assessment.ts`. + +import { computeEdge, clamp } from './edge'; +import { FeeModel, getFeeModel, costFraction } from './fees'; + +export type Side = 'YES' | 'NO'; +export type Recommendation = 'TAKE' | 'SCALE_DOWN' | 'AVOID'; + +export interface RiskInputs { + side: Side; + /** Current YES price (0..1). NO price is 1 - yesPrice. */ + yesPrice: number; + /** + * Caller's estimate of P(YES). If omitted, we fall back to the market + * price — in which case EV will be negative once fees apply (useful as + * a sanity check: "why should I take this trade?"). + */ + trueProb?: number; + stake: number; // dollars at risk + bankroll?: number; // optional — gates the SCALE_DOWN recommendation + volume24h: number; // liquidity proxy + platform?: string; + fees?: FeeModel; + confidence?: number; // 0..1, shrinks true_prob toward market + endDate?: string; // ISO date — used to compute days-to-expiry + /** + * Max acceptable fraction of bankroll at risk (e.g. 0.1 = don't bet more + * than 10% of bankroll on a single idea). Defaults to 0.1. + */ + maxBankrollFraction?: number; +} + +export interface RiskAssessment { + recommendation: Recommendation; + side: Side; + stake: number; + expectedValue: number; + variance: number; + stddev: number; + sharpe: number; + probProfit: number; + worstCase: number; + bestCase: number; + evPerDollar: number; + edgeNet: number; + kellySuggestedStake: number; + timeToExpiryDays: number | null; + warnings: string[]; + reasoning: string; +} + +export function assessRisk(input: RiskInputs): RiskAssessment { + const fees = input.fees ?? getFeeModel(input.platform ?? 'polymarket'); + const yes = clamp(input.yesPrice, 1e-4, 1 - 1e-4); + const entry = input.side === 'YES' ? yes : 1 - yes; + const trueProb = input.trueProb === undefined + ? yes // neutral fallback: assume market is right → EV will be ≤ 0 + : clamp(input.trueProb, 0, 1); + + // Probability our side wins. + const winProb = input.side === 'YES' ? trueProb : 1 - trueProb; + + // Payout per $1 staked if our side wins. Buying at `entry` and + // redeeming at $1 returns (1 / entry) dollars, or (1/entry - 1) net. + const payoutIfWin = (1 - entry) / entry; + const cost = costFraction(input.stake, input.volume24h, entry, fees); + + const evPerDollar = winProb * payoutIfWin - (1 - winProb) - cost; + const expectedValue = input.stake * evPerDollar; + + // Variance of PnL per $1: E[X^2] - E[X]^2 + // X = payoutIfWin w.p. winProb, else -1 + const ex2 = winProb * payoutIfWin * payoutIfWin + (1 - winProb) * 1; + const ex = winProb * payoutIfWin - (1 - winProb); + const variancePerDollar = Math.max(0, ex2 - ex * ex); + const variance = input.stake * input.stake * variancePerDollar; + const stddev = Math.sqrt(variance); + const sharpe = stddev > 0 ? expectedValue / stddev : 0; + + // For a single binary trade PnL > 0 iff our side wins. + const probProfit = winProb; + const worstCase = -input.stake * (1 + cost); + const bestCase = input.stake * (payoutIfWin - cost); + + // Kelly-suggested stake in dollars. We reuse the edge module and cap at + // `maxBankrollFraction` of the bankroll (default 10%). + const edge = computeEdge({ + trueProb, + yesPrice: yes, + volume24h: input.volume24h, + fees, + stake: input.stake, + confidence: input.confidence ?? 1, + }); + const maxFrac = clamp(input.maxBankrollFraction ?? 0.1, 0, 1); + const bankroll = input.bankroll && input.bankroll > 0 ? input.bankroll : input.stake / Math.max(maxFrac, 0.01); + const kellyStake = edge.side === input.side + ? bankroll * Math.min(edge.kellyFraction, maxFrac) + : 0; + + const timeToExpiryDays = computeDaysToExpiry(input.endDate); + + const warnings = buildWarnings({ + evPerDollar, + stake: input.stake, + bankroll, + maxFrac, + timeToExpiryDays, + volume24h: input.volume24h, + recommendedSide: edge.side, + actualSide: input.side, + winProb, + }); + + const recommendation = chooseRecommendation({ + evPerDollar, + side: input.side, + recommendedSide: edge.side, + stake: input.stake, + kellyStake, + bankroll, + maxFrac, + }); + + return { + recommendation, + side: input.side, + stake: input.stake, + expectedValue, + variance, + stddev, + sharpe, + probProfit, + worstCase, + bestCase, + evPerDollar, + edgeNet: edge.edgeNet, + kellySuggestedStake: Math.round(kellyStake * 100) / 100, + timeToExpiryDays, + warnings, + reasoning: buildReasoning({ + recommendation, + side: input.side, + trueProb, + yes, + evPerDollar, + sharpe, + kellyStake, + stake: input.stake, + }), + }; +} + +function computeDaysToExpiry(endDate: string | undefined): number | null { + if (!endDate) return null; + const t = new Date(endDate).getTime(); + if (!Number.isFinite(t)) return null; + return Math.max(0, (t - Date.now()) / (1000 * 60 * 60 * 24)); +} + +function buildWarnings(ctx: { + evPerDollar: number; + stake: number; + bankroll: number; + maxFrac: number; + timeToExpiryDays: number | null; + volume24h: number; + recommendedSide: 'YES' | 'NO' | 'HOLD'; + actualSide: 'YES' | 'NO'; + winProb: number; +}): string[] { + const w: string[] = []; + if (ctx.evPerDollar < 0) { + w.push('Expected value is negative after fees and slippage.'); + } + if (ctx.recommendedSide !== 'HOLD' && ctx.recommendedSide !== ctx.actualSide) { + w.push(`Model prefers ${ctx.recommendedSide} side; you chose ${ctx.actualSide}.`); + } + if (ctx.bankroll > 0 && ctx.stake / ctx.bankroll > ctx.maxFrac) { + w.push(`Stake is ${((ctx.stake / ctx.bankroll) * 100).toFixed(1)}% of bankroll, above ${(ctx.maxFrac * 100).toFixed(0)}% cap.`); + } + if (ctx.volume24h < 5_000) { + w.push(`Low liquidity: 24h volume is only $${ctx.volume24h.toFixed(0)}. Expect slippage.`); + } + if (ctx.timeToExpiryDays !== null && ctx.timeToExpiryDays < 1 / 24) { + w.push('Market expires in under an hour — execution risk is elevated.'); + } + if (ctx.winProb < 0.1 || ctx.winProb > 0.9) { + w.push('Probability is near the tails; small estimation errors lead to large relative losses.'); + } + return w; +} + +function chooseRecommendation(ctx: { + evPerDollar: number; + side: Side; + recommendedSide: 'YES' | 'NO' | 'HOLD'; + stake: number; + kellyStake: number; + bankroll: number; + maxFrac: number; +}): Recommendation { + if (ctx.evPerDollar <= 0) return 'AVOID'; + if (ctx.recommendedSide !== 'HOLD' && ctx.recommendedSide !== ctx.side) return 'AVOID'; + if (ctx.kellyStake > 0 && ctx.stake > ctx.kellyStake * 1.5) return 'SCALE_DOWN'; + if (ctx.bankroll > 0 && ctx.stake / ctx.bankroll > ctx.maxFrac) return 'SCALE_DOWN'; + return 'TAKE'; +} + +function buildReasoning(ctx: { + recommendation: Recommendation; + side: Side; + trueProb: number; + yes: number; + evPerDollar: number; + sharpe: number; + kellyStake: number; + stake: number; +}): string { + const pct = (x: number) => `${(x * 100).toFixed(1)}%`; + const header = `${ctx.recommendation} ${ctx.side}: your p=${pct(ctx.trueProb)} vs market YES=${pct(ctx.yes)}.`; + const ev = `EV/$ = ${ctx.evPerDollar.toFixed(3)}, single-trade Sharpe = ${ctx.sharpe.toFixed(2)}.`; + const kelly = ctx.kellyStake > 0 + ? `Kelly suggests $${ctx.kellyStake.toFixed(2)} vs. your $${ctx.stake.toFixed(2)}.` + : 'Kelly recommends zero size on this side.'; + return `${header} ${ev} ${kelly}`; +} From 878446db3c47566e1f894fd76d88d8b07eb23a03 Mon Sep 17 00:00:00 2001 From: john_wang Date: Mon, 20 Apr 2026 13:54:43 -0500 Subject: [PATCH 02/14] sentiment: weighted lexicon with phrases, emoji, negation scope Replaces the bag-of-words scorer. Per-token weights, ~150 prediction- market terms, multi-word phrases, emoji graphemes, intensifier and hedge multipliers, and a three-token negation scope. ALL-CAPS and trailing "!!" bump magnitude. The analyzeSentiment(text) signature is unchanged so the keyword matcher and signal generator keep working without modification. --- src/analysis/sentiment-analyzer.ts | 372 ++++++++++++++++++++++------- 1 file changed, 291 insertions(+), 81 deletions(-) diff --git a/src/analysis/sentiment-analyzer.ts b/src/analysis/sentiment-analyzer.ts index 21d73b0..645f058 100644 --- a/src/analysis/sentiment-analyzer.ts +++ b/src/analysis/sentiment-analyzer.ts @@ -1,105 +1,315 @@ /** - * Simple sentiment analyzer for tweets - * Detects bullish/bearish/neutral sentiment based on keyword analysis + * Weighted lexicon sentiment analyzer for prediction-market tweets & news. + * + * Key upgrades over the legacy bag-of-words implementation: + * • Word- AND emoji-level scoring with per-token weights. + * • Multi-word phrases ("rate cut", "up only", "to the moon"). + * • Negation scope (next 3 tokens after "not", "no", "won't", …). + * • Intensifiers and hedges ("very" vs. "maybe") multiply magnitude. + * • ALL-CAPS words and trailing "!!" boost magnitude. + * • Category-aware reweighting via `analyzeSentimentForMarket()`, so + * "crash" next to a crypto market tags bearish, but next to a "Will + * crash?" market tags *bullish for YES* (aligned with the + * market's own resolution criteria). + * + * Output shape (`sentiment`, `confidence`) is backward compatible with the + * existing signal-generator, so callers don't break. */ export type Sentiment = 'bullish' | 'bearish' | 'neutral'; export interface SentimentResult { sentiment: Sentiment; - confidence: number; // 0-1, how confident we are in this classification + confidence: number; // 0..1 — strength of the net signal + score: number; // signed net score (bullish positive) + magnitude: number; // sum of absolute weights encountered + signals: string[]; // tokens/phrases that contributed (top 8) } -// Bullish indicators -const BULLISH_KEYWORDS = [ - 'bullish', 'moon', 'rally', 'pump', 'surge', 'soar', 'skyrocket', - 'buy', 'long', 'calls', 'green', 'win', 'winning', 'yes', 'definitely', - 'confirmed', 'happening', 'inevitable', 'obvious', 'clearly', 'certain', - 'guarantee', 'lock', 'easy', 'confident', 'predict', 'will happen', - 'going to', 'up', 'rise', 'increase', 'gain', 'profit', 'success', - 'boom', 'growth', 'explosive', 'parabolic', 'breakout' -]; - -// Bearish indicators -const BEARISH_KEYWORDS = [ - 'bearish', 'dump', 'crash', 'plunge', 'tank', 'collapse', 'fall', - 'sell', 'short', 'puts', 'red', 'lose', 'losing', 'no', 'impossible', - 'unlikely', 'doubt', 'skeptical', 'concern', 'worried', 'fear', 'risk', - 'down', 'decline', 'drop', 'decrease', 'loss', 'fail', 'failure', - 'bubble', 'overvalued', 'recession', 'bear', 'correction' -]; - -// Strong modifiers (increase weight) -const STRONG_MODIFIERS = [ - 'very', 'extremely', 'highly', 'absolutely', 'completely', 'totally', - 'definitely', 'certainly', 'obviously', 'clearly', 'strongly', 'really' -]; - -// Negations (reverse sentiment) -const NEGATIONS = [ - 'not', 'no', "don't", "won't", "can't", "isn't", "aren't", "doesn't", - 'never', 'neither', 'nor', 'none', 'nobody', 'nothing', 'nowhere' -]; +// ─── Lexicons ──────────────────────────────────────────────────────────── -/** - * Analyze tweet text and return sentiment - */ -export function analyzeSentiment(tweetText: string): SentimentResult { - const text = tweetText.toLowerCase(); - const words = text.split(/\s+/); - - let bullishScore = 0; - let bearishScore = 0; - - for (let i = 0; i < words.length; i++) { - const word = words[i].replace(/[^a-z]/g, ''); - const prevWord = i > 0 ? words[i - 1].replace(/[^a-z]/g, '') : ''; - - // Check for negation - const isNegated = NEGATIONS.includes(prevWord); - - // Check for strong modifier - const isStrong = STRONG_MODIFIERS.includes(prevWord); - const weight = isStrong ? 2 : 1; - - // Check bullish - if (BULLISH_KEYWORDS.includes(word)) { - if (isNegated) { - bearishScore += weight; - } else { - bullishScore += weight; - } +type WeightMap = Record; + +// Positive sentiment words. Weights calibrated so that a single rocket +// emoji (+3) outweighs a generic "up" (+1), and hype phrases like "to the +// moon" (+4) dominate casual language. +const BULLISH_LEXICON: WeightMap = { + // Market slang + 'moon': 3, 'mooning': 3, 'moonshot': 3, 'rocket': 3, 'rocketing': 3, + 'pump': 2, 'pumping': 2, 'rally': 2, 'rallying': 2, 'surge': 2, 'surging': 2, + 'soar': 2, 'soaring': 2, 'skyrocket': 3, 'parabolic': 3, 'breakout': 2, + 'explode': 2, 'exploding': 2, 'ripping': 2, 'ripped': 2, 'melt-up': 3, + 'meltup': 3, 'bullish': 2, 'bull': 1, 'bulls': 1, 'green': 1, + 'gmi': 2, 'wagmi': 2, 'btfd': 2, 'ath': 2, + + // Directional + 'up': 1, 'higher': 1, 'rise': 1, 'rising': 1, 'rose': 1, 'climb': 1, + 'climbing': 1, 'gain': 1, 'gaining': 1, 'gained': 1, 'grow': 1, + 'growing': 1, 'boom': 2, 'booming': 2, 'strong': 1, 'stronger': 1, + + // Certainty / conviction (positive framing) + 'confirmed': 2, 'confirming': 2, 'confirm': 1, 'announced': 1, 'approved': 2, + 'approval': 1, 'win': 2, 'wins': 2, 'winning': 2, 'won': 2, 'victory': 2, + 'landslide': 3, 'lock': 2, 'inevitable': 2, 'certain': 2, 'guaranteed': 3, + 'definitely': 1, 'obvious': 1, 'clearly': 1, 'easy': 1, + + // Policy-flavored bullish + 'rate cut': 3, 'rate-cut': 3, 'ratecut': 3, 'cutting rates': 3, + 'dovish': 2, 'stimulus': 2, 'qe': 2, 'liquidity': 1, 'injection': 2, + 'soft landing': 2, 'softlanding': 2, + + // Outcome-flavored bullish + 'passed': 2, 'passes': 2, 'signed': 2, 'ratified': 2, 'ceasefire': 2, + 'deal reached': 3, 'agreement': 1, +}; + +const BEARISH_LEXICON: WeightMap = { + // Market slang + 'dump': 2, 'dumping': 2, 'crash': 3, 'crashing': 3, 'plunge': 3, 'plunging': 3, + 'tank': 2, 'tanking': 2, 'collapse': 3, 'collapsing': 3, 'meltdown': 3, + 'capitulation': 3, 'capitulate': 3, 'rekt': 3, 'rug': 3, 'rugged': 3, + 'ngmi': 2, 'bagholder': 2, 'bearish': 2, 'bear': 1, 'bears': 1, 'red': 1, + + // Directional + 'down': 1, 'lower': 1, 'fall': 1, 'falling': 1, 'fell': 1, 'drop': 1, + 'dropping': 1, 'dropped': 1, 'decline': 1, 'declining': 1, 'loss': 1, + 'losing': 1, 'lost': 1, 'weak': 1, 'weaker': 1, 'slump': 2, 'slumping': 2, + + // Negative framing + 'failed': 2, 'fails': 2, 'fail': 2, 'failure': 2, 'rejected': 2, 'rejection': 2, + 'denied': 2, 'impossible': 2, 'doubt': 1, 'skeptical': 1, 'unlikely': 1, + 'concern': 1, 'worried': 1, 'worry': 1, 'fear': 2, 'panic': 3, 'crisis': 2, + 'risk': 1, 'risky': 1, 'dangerous': 1, 'default': 2, + + // Policy-flavored bearish + 'rate hike': 2, 'rate-hike': 2, 'ratehike': 2, 'hiking rates': 2, + 'hawkish': 2, 'austerity': 2, 'tightening': 2, 'tighten': 1, + 'recession': 2, 'depression': 3, 'stagflation': 3, 'shutdown': 2, + 'downgrade': 2, 'downgraded': 2, 'bubble': 2, 'overvalued': 2, 'correction': 1, + + // Outcome-flavored bearish + 'vetoed': 2, 'blocked': 2, 'filibuster': 2, 'defeat': 2, 'defeated': 2, + 'war': 2, 'invasion': 3, 'strike': 2, 'sanctions': 2, 'escalation': 2, +}; + +const INTENSIFIERS: WeightMap = { + 'very': 1.5, 'extremely': 2, 'highly': 1.5, 'absolutely': 2, 'completely': 1.8, + 'totally': 1.8, 'definitely': 1.5, 'certainly': 1.5, 'obviously': 1.3, + 'clearly': 1.3, 'strongly': 1.5, 'really': 1.3, 'insanely': 2, 'massively': 2, + 'super': 1.5, 'mega': 1.5, 'hella': 1.5, +}; + +const HEDGES: WeightMap = { + 'maybe': 0.5, 'possibly': 0.5, 'perhaps': 0.5, 'might': 0.6, 'could': 0.7, + 'probably': 0.85, 'likely': 0.9, 'somewhat': 0.7, 'kinda': 0.6, 'sorta': 0.6, + 'slightly': 0.6, 'rumor': 0.5, 'rumored': 0.5, 'allegedly': 0.5, +}; + +// Words that flip the following clause's polarity. +const NEGATIONS = new Set([ + 'not', 'no', "don't", 'dont', "won't", 'wont', "can't", 'cant', "isn't", 'isnt', + "aren't", 'arent', "doesn't", 'doesnt', "didn't", 'didnt', "wouldn't", 'wouldnt', + "couldn't", 'couldnt', "shouldn't", 'shouldnt', 'never', 'neither', 'nor', + 'none', 'nobody', 'nothing', 'nowhere', 'without', +]); + +const NEGATION_SCOPE = 3; // tokens after a negation that get flipped. + +// Emoji / symbol lexicon. Scored separately because they usually carry the +// strongest tone signal in prediction-market tweets. +const EMOJI_LEXICON: WeightMap = { + '🚀': 3, '🌙': 2, '📈': 2, '💎': 2, '🔥': 1.5, '🟢': 2, '✅': 1.5, + '💪': 1.5, '🤑': 2, '💰': 1.5, '🏆': 2, '🎉': 1.5, '🥳': 1.5, + '📉': -2, '🔴': -2, '💀': -2, '🪦': -2, '😱': -1.5, '😭': -1.5, + '🐻': -1.5, '🐂': 1.5, '⚠️': -1, '❌': -1.5, '☠️': -2, '💸': -1.5, +}; + +// Multi-word phrases that must be detected before unigrams. Stored as +// space-joined lowercase strings so we can test against sliding windows. +const PHRASE_LEXICON: WeightMap = { + 'to the moon': 4, 'all time high': 3, 'all-time high': 3, 'up only': 3, + 'breaking out': 2, 'break out': 2, 'number go up': 3, 'risk on': 2, + 'risk-on': 2, 'green candle': 2, 'green candles': 2, + 'going to zero': -4, 'to zero': -3, 'dead cat': -2, 'dead-cat': -2, + 'bear market': -2, 'risk off': -2, 'risk-off': -2, 'blood bath': -3, + 'bloodbath': -3, 'red candle': -2, 'red candles': -2, 'dead money': -2, + 'rug pull': -3, 'rugpull': -3, 'game over': -2, +}; + +// ─── Tokenization ──────────────────────────────────────────────────────── + +interface Token { + raw: string; + lower: string; + alpha: string; // letters only, used for lexicon lookups + allCaps: boolean; + emphasized: boolean; // trailing "!" +} + +function tokenize(text: string): Token[] { + // Split on whitespace but preserve emoji / punctuation for emphasis detection. + const parts = text.split(/\s+/).filter(Boolean); + const tokens: Token[] = []; + + for (const raw of parts) { + const lower = raw.toLowerCase(); + const alpha = lower.replace(/[^a-z']/g, ''); + if (!alpha && !/[\p{Extended_Pictographic}]/u.test(raw)) continue; + + tokens.push({ + raw, + lower, + alpha, + allCaps: raw.length >= 3 && raw === raw.toUpperCase() && /[A-Z]/.test(raw), + emphasized: /[!?]{2,}$/.test(raw), + }); + } + + return tokens; +} + +// ─── Core scoring ──────────────────────────────────────────────────────── + +interface ScoreAccumulator { + bullish: number; + bearish: number; + magnitude: number; + signals: Array<{ token: string; weight: number }>; +} + +function recordSignal(acc: ScoreAccumulator, token: string, weight: number): void { + if (weight > 0) acc.bullish += weight; + if (weight < 0) acc.bearish += -weight; + acc.magnitude += Math.abs(weight); + acc.signals.push({ token, weight }); +} + +function getContextMultiplier(tokens: Token[], idx: number): { mult: number; negated: boolean } { + let mult = 1; + let negated = false; + + // Look back up to NEGATION_SCOPE tokens for negation / intensifier / hedge. + for (let back = 1; back <= NEGATION_SCOPE && idx - back >= 0; back++) { + const prev = tokens[idx - back]; + if (NEGATIONS.has(prev.alpha) || NEGATIONS.has(prev.lower)) { + negated = true; + break; } + const intens = INTENSIFIERS[prev.alpha]; + if (intens !== undefined) mult *= intens; + const hedge = HEDGES[prev.alpha]; + if (hedge !== undefined) mult *= hedge; + } + + return { mult, negated }; +} - // Check bearish - if (BEARISH_KEYWORDS.includes(word)) { - if (isNegated) { - bullishScore += weight; - } else { - bearishScore += weight; - } +function scorePhrases(text: string, acc: ScoreAccumulator): void { + const lower = ' ' + text.toLowerCase().replace(/[^a-z0-9\s-]/g, ' ').replace(/\s+/g, ' ') + ' '; + for (const [phrase, weight] of Object.entries(PHRASE_LEXICON)) { + if (lower.includes(` ${phrase} `)) { + recordSignal(acc, phrase, weight); } } +} - // Calculate total and determine sentiment - const total = bullishScore + bearishScore; +function scoreEmojis(text: string, acc: ScoreAccumulator): void { + // Iterate graphemes for emoji support. + const chars = Array.from(text); + for (const ch of chars) { + const weight = EMOJI_LEXICON[ch]; + if (weight !== undefined) recordSignal(acc, ch, weight); + } +} - if (total === 0) { - return { sentiment: 'neutral', confidence: 0 }; +/** + * Analyze the sentiment of a piece of text. Backwards compatible with the + * previous `analyzeSentiment` signature. + */ +export function analyzeSentiment(text: string): SentimentResult { + if (!text || typeof text !== 'string') { + return { sentiment: 'neutral', confidence: 0, score: 0, magnitude: 0, signals: [] }; } - const bullishRatio = bullishScore / total; - const bearishRatio = bearishScore / total; + const acc: ScoreAccumulator = { bullish: 0, bearish: 0, magnitude: 0, signals: [] }; - // Need strong signal to classify (>60%) - if (bullishRatio > 0.6) { - return { sentiment: 'bullish', confidence: bullishRatio }; + scorePhrases(text, acc); + scoreEmojis(text, acc); + + const tokens = tokenize(text); + for (let i = 0; i < tokens.length; i++) { + const tok = tokens[i]; + const key = tok.alpha; + if (!key) continue; + + let weight = BULLISH_LEXICON[key] ?? 0; + if (weight === 0) { + const neg = BEARISH_LEXICON[key]; + if (neg !== undefined) weight = -neg; + } + if (weight === 0) continue; + + const { mult, negated } = getContextMultiplier(tokens, i); + let w = weight * mult; + if (negated) w = -w; + if (tok.allCaps) w *= 1.3; + if (tok.emphasized) w *= 1.2; + + recordSignal(acc, key, w); } - if (bearishRatio > 0.6) { - return { sentiment: 'bearish', confidence: bearishRatio }; + const score = acc.bullish - acc.bearish; + const total = acc.bullish + acc.bearish; + + if (total < 0.5) { + return { sentiment: 'neutral', confidence: 0, score: 0, magnitude: acc.magnitude, signals: [] }; + } + + const topSignals = acc.signals + .slice() + .sort((a, b) => Math.abs(b.weight) - Math.abs(a.weight)) + .slice(0, 8) + .map(s => s.token); + + const ratio = Math.abs(score) / total; + // Squash magnitude into 0..1 confidence using a soft curve. Capped at 0.98 + // to signal we are never 100% certain from lexicon analysis alone. + const magnitudeBoost = 1 - Math.exp(-total / 4); + const confidence = Math.min(0.98, 0.5 * ratio + 0.5 * magnitudeBoost); + + if (ratio < 0.15) { + return { sentiment: 'neutral', confidence, score, magnitude: acc.magnitude, signals: topSignals }; } - // Mixed or weak signal - return { sentiment: 'neutral', confidence: 1 - Math.abs(bullishRatio - bearishRatio) }; + const sentiment: Sentiment = score > 0 ? 'bullish' : 'bearish'; + return { sentiment, confidence, score, magnitude: acc.magnitude, signals: topSignals }; +} + +/** + * Convenience helper: sentiment interpreted in the context of a specific + * market title. A positive score on "Bitcoin goes to 100k" is bullish YES; + * a positive score on "Will the Fed cut rates?" is also bullish YES, but a + * *negative* score on "Will BTC crash?" is bullish YES (the crash is what + * the market is *asking about*). + * + * We flip the sign if the market title contains any bearish keyword — i.e. + * the market is framed around a bad outcome, so confirming it is YES. + */ +export function analyzeSentimentForMarket( + text: string, + marketTitle: string, +): SentimentResult { + const base = analyzeSentiment(text); + if (base.sentiment === 'neutral') return base; + + const titleLower = marketTitle.toLowerCase(); + const titleHasNegative = Object.keys(BEARISH_LEXICON).some(k => + titleLower.includes(k) && !Object.keys(BULLISH_LEXICON).some(b => titleLower.includes(b) && b.length > k.length), + ); + + if (!titleHasNegative) return base; + + // Flip polarity: confirming a bearish event is bullish for YES. + const flipped: Sentiment = base.sentiment === 'bullish' ? 'bearish' : 'bullish'; + return { ...base, sentiment: flipped, score: -base.score }; } From c4416c6d11e349cac93a7bf9153463fdea43ac0a Mon Sep 17 00:00:00 2001 From: john_wang Date: Mon, 20 Apr 2026 13:54:56 -0500 Subject: [PATCH 03/14] signal: correct unsigned edge; route through shared math MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The previous formula was edge = confidence * |p - price|, which drops the sign. A bullish tweet on a 95c YES market still reported a large edge because there was nowhere to buy. Signals now pick the side by expected value and return signed edge, ev_per_dollar, kelly_fraction, and breakeven_prob from edge.ts. Other changes here: - sentimentToProbability range narrowed from ±0.45 to ±0.25; tweet- level evidence rarely justifies a sharper prior. - The confidence passed to Kelly is capped at 0.6 for lexicon-only signals. - computeUrgency reads the new covered-bundle arbitrage semantics (spread is already net of modeled cost) and downgrades critical/ high to medium when 24h volume is under $25k. --- src/analysis/signal-generator.ts | 325 +++++++++++++------------------ 1 file changed, 133 insertions(+), 192 deletions(-) diff --git a/src/analysis/signal-generator.ts b/src/analysis/signal-generator.ts index 45c1eaf..6ce0d3a 100644 --- a/src/analysis/signal-generator.ts +++ b/src/analysis/signal-generator.ts @@ -1,8 +1,22 @@ -// Signal Generator - Converts matched markets into actionable trading signals -// Computes edge, urgency, signal_type, and suggested_action for bot developers +// Signal Generator — converts matched markets into actionable trading signals. +// +// Changes vs. the legacy version: +// • Edge is now SIGNED (buying YES has positive edge only if YES is +// underpriced relative to our estimate). The old code used |diff| +// which meant a bullish tweet on a 95¢ market returned a big edge +// despite there being no room to trade. +// • Fees and slippage are applied to every edge/EV number via the +// shared `edge.ts` module, so arbitrage spreads and signal EVs use the +// same math. +// • Adds `ev_per_dollar` and `kelly_fraction` to each signal for bot +// developers who want to consume sizing directly. +// • Response shape is backwards compatible — new fields are additive, +// existing consumers keep working. import { Market, MarketMatch, ArbitrageOpportunity } from '../types/market'; -import { analyzeSentiment, SentimentResult } from './sentiment-analyzer'; +import { analyzeSentimentForMarket, SentimentResult } from './sentiment-analyzer'; +import { computeEdge, EdgeResult } from './edge'; +import { getFeeModel } from './fees'; export type SignalType = 'arbitrage' | 'news_event' | 'sentiment_shift' | 'user_interest'; export type UrgencyLevel = 'low' | 'medium' | 'high' | 'critical'; @@ -10,13 +24,16 @@ export type Direction = 'YES' | 'NO' | 'HOLD'; export interface SuggestedAction { direction: Direction; - confidence: number; // 0-1 - edge: number; // Expected profit edge + confidence: number; // 0..1 — confidence to act on this signal + edge: number; // signed, net of fees, in price units + ev_per_dollar: number; // expected profit per $1 staked + kelly_fraction: number; // 0..1 capped (quarter-Kelly by default) + breakeven_prob: number; // min prob needed for positive EV reasoning: string; } export interface TradingSignal { - event_id: string; // Unique ID for this event/tweet + event_id: string; signal_type: SignalType; urgency: UrgencyLevel; matches: MarketMatch[]; @@ -26,233 +43,158 @@ export interface TradingSignal { metadata: { processing_time_ms: number; tweet_text?: string; + /** Our derived P(YES) used to compute the edge — useful for debugging. */ + implied_true_prob?: number; }; } -/** - * Check if tweet contains breaking news keywords - */ -function isBreakingNews(text: string): boolean { - const breakingKeywords = [ - 'breaking', - 'just in', - 'announced', - 'confirmed', - 'official', - 'reports', - 'alert', - 'urgent', - 'developing', - ]; +// ─── Context helpers ───────────────────────────────────────────────────── - const lowerText = text.toLowerCase(); - return breakingKeywords.some(kw => lowerText.includes(kw)); -} +const BREAKING_KEYWORDS = [ + 'breaking', 'just in', 'announced', 'confirmed', 'official', 'reports', + 'alert', 'urgent', 'developing', 'live', 'update:', +]; -/** - * Calculate implied probability from sentiment - * Bullish sentiment implies higher YES probability - * Bearish sentiment implies lower YES probability (higher NO) - */ -function calculateImpliedProbability(sentiment: SentimentResult): number { - if (sentiment.sentiment === 'neutral') { - return 0.5; // No directional bias - } - - if (sentiment.sentiment === 'bullish') { - // Bullish: high confidence = higher YES probability - return 0.5 + (sentiment.confidence * 0.4); // Range: 0.5 to 0.9 - } - - // Bearish: high confidence = lower YES probability - return 0.5 - (sentiment.confidence * 0.4); // Range: 0.1 to 0.5 +function isBreakingNews(text: string): boolean { + const lower = text.toLowerCase(); + return BREAKING_KEYWORDS.some(kw => lower.includes(kw)); } /** - * Calculate trading edge for a market given sentiment - * Edge = how much the sentiment-implied probability differs from market price + * Derive a probability estimate for YES from sentiment. + * + * We deliberately under-shift here. Tweet-level sentiment is noisy and + * rarely justifies more than a ±25 percentage-point deviation from an + * uninformative 50/50 prior. Callers who want sharper priors should use + * /api/ground-probability (where they supply their own explicit estimate). */ -function calculateEdge(market: Market, sentiment: SentimentResult): number { - const impliedProb = calculateImpliedProbability(sentiment); - const currentPrice = market.yesPrice; - - // Raw difference between implied and actual price - const priceDiff = Math.abs(impliedProb - currentPrice); - - // Weight by sentiment confidence - const edge = sentiment.confidence * priceDiff; - - return edge; +function sentimentToProbability(sentiment: SentimentResult): number { + if (sentiment.sentiment === 'neutral') return 0.5; + const sign = sentiment.sentiment === 'bullish' ? 1 : -1; + const shift = sign * sentiment.confidence * 0.25; + return Math.min(0.9, Math.max(0.1, 0.5 + shift)); } /** - * Check if market expires soon (within 7 days) + * Confidence to feed into the edge / Kelly calc. A pure sentiment read on + * a tweet is NEVER 100% evidence of the true outcome; we cap at 0.6 so + * Kelly sizing stays conservative. */ -function expiresSoon(market: Market): boolean { - if (!market.endDate) return false; - - const endDate = new Date(market.endDate); - const now = new Date(); - const daysUntilExpiry = (endDate.getTime() - now.getTime()) / (1000 * 60 * 60 * 24); +function sentimentEdgeConfidence(sentiment: SentimentResult): number { + return Math.min(0.6, sentiment.confidence); +} - return daysUntilExpiry <= 7 && daysUntilExpiry > 0; +function expiresSoonDays(market: Market): number | null { + if (!market.endDate) return null; + const t = new Date(market.endDate).getTime(); + if (!Number.isFinite(t)) return null; + return (t - Date.now()) / (1000 * 60 * 60 * 24); } /** - * Compute urgency level based on edge, volume, and expiry + * Urgency is driven by fee-adjusted edge + liquidity + time to expiry. + * + * We cap urgency by liquidity: a 90% edge on a $200-volume market is not + * actionable, so we refuse to escalate past `medium` unless the market is + * tradable in size. */ function computeUrgency( - edge: number, + edgeNet: number, market: Market, - hasArbitrage: boolean, - arbitrageSpread?: number + arbitrage: ArbitrageOpportunity | undefined, ): UrgencyLevel { - // Critical: Strong edge + high volume + expires soon - // OR very high arbitrage spread - if (hasArbitrage && arbitrageSpread && arbitrageSpread > 0.05) { - return 'critical'; - } - - if (edge > 0.15 && market.volume24h > 500000 && expiresSoon(market)) { - return 'critical'; + // NB: with the covered-bundle detector upstream, `spread` is already the + // edge *after* modeled fees + slippage (1 - costPerBundle). So we can + // read it straight into urgency tiers — no netProfit subtraction needed. + if (arbitrage) { + if (arbitrage.spread > 0.03) return 'critical'; + if (arbitrage.spread > 0.015) return 'high'; } - // High: Good edge OR moderate arbitrage - if (edge > 0.10) { - return 'high'; - } + const days = expiresSoonDays(market); + const highVolume = market.volume24h > 500_000; + const tradable = market.volume24h > 25_000; // ≈ enough depth to get $500 filled + const soon = days !== null && days <= 7 && days > 0; - if (hasArbitrage && arbitrageSpread && arbitrageSpread > 0.03) { - return 'high'; - } + let urgency: UrgencyLevel = 'low'; + if (edgeNet > 0.15 && highVolume && soon) urgency = 'critical'; + else if (edgeNet > 0.10) urgency = 'high'; + else if (edgeNet > 0.05) urgency = 'medium'; - // Medium: Decent edge - if (edge > 0.05) { + if (!tradable && (urgency === 'critical' || urgency === 'high')) { return 'medium'; } - - // Low: Match found but no clear edge - return 'low'; + return urgency; } -/** - * Determine signal type based on context - */ function computeSignalType( - tweetText: string, + text: string, sentiment: SentimentResult, - edge: number, - hasArbitrage: boolean + edgeNet: number, + hasArbitrage: boolean, ): SignalType { - // Arbitrage takes precedence - if (hasArbitrage) { - return 'arbitrage'; - } - - // Breaking news - if (isBreakingNews(tweetText)) { - return 'news_event'; - } - - // Sentiment strongly disagrees with market (high edge) - if (edge > 0.10 && sentiment.sentiment !== 'neutral') { - return 'sentiment_shift'; - } - - // Default: just a match without strong signal + if (hasArbitrage) return 'arbitrage'; + if (isBreakingNews(text)) return 'news_event'; + if (edgeNet > 0.10 && sentiment.sentiment !== 'neutral') return 'sentiment_shift'; return 'user_interest'; } -/** - * Generate suggested trading action - */ -function generateSuggestedAction( +function buildSuggestedAction( market: Market, sentiment: SentimentResult, - edge: number, - urgency: UrgencyLevel + edgeResult: EdgeResult, ): SuggestedAction { - // Don't suggest action if edge is too low - if (edge < 0.10) { + const direction: Direction = edgeResult.side; + + if (direction === 'HOLD' || edgeResult.evPerDollar <= 0) { return { direction: 'HOLD', confidence: 0, - edge: 0, - reasoning: 'Insufficient edge to justify a trade', + edge: edgeResult.edgeNet, + ev_per_dollar: edgeResult.evPerDollar, + kelly_fraction: 0, + breakeven_prob: edgeResult.breakevenProb, + reasoning: edgeResult.reasoning, }; } - const impliedProb = calculateImpliedProbability(sentiment); - const currentPrice = market.yesPrice; - - let direction: Direction; - let reasoning: string; - - if (sentiment.sentiment === 'neutral') { - direction = 'HOLD'; - reasoning = 'Neutral sentiment, no clear directional bias'; - } else if (sentiment.sentiment === 'bullish') { - // Bullish sentiment - if (impliedProb > currentPrice) { - // YES is underpriced - direction = 'YES'; - reasoning = `Bullish sentiment (${(sentiment.confidence * 100).toFixed(0)}% confidence) suggests YES is underpriced at ${(currentPrice * 100).toFixed(0)}%`; - } else { - direction = 'HOLD'; - reasoning = 'Bullish sentiment but YES already priced high'; - } - } else { - // Bearish sentiment - if (impliedProb < currentPrice) { - // YES is overpriced, buy NO - direction = 'NO'; - reasoning = `Bearish sentiment (${(sentiment.confidence * 100).toFixed(0)}% confidence) suggests YES is overpriced at ${(currentPrice * 100).toFixed(0)}%`; - } else { - direction = 'HOLD'; - reasoning = 'Bearish sentiment but YES already priced low'; - } - } - - // Confidence based on edge and urgency - let actionConfidence = edge; - if (urgency === 'critical') actionConfidence = Math.min(edge * 1.5, 0.95); - else if (urgency === 'high') actionConfidence = Math.min(edge * 1.2, 0.9); + // Confidence combines sentiment strength and fee-adjusted edge magnitude. + const actionConfidence = Math.min( + 0.95, + 0.5 * sentiment.confidence + 0.5 * Math.min(1, Math.abs(edgeResult.edgeNet) * 4), + ); return { direction, confidence: actionConfidence, - edge, - reasoning, + edge: edgeResult.edgeNet, + ev_per_dollar: edgeResult.evPerDollar, + kelly_fraction: edgeResult.kellyFraction, + breakeven_prob: edgeResult.breakevenProb, + reasoning: edgeResult.reasoning, }; } /** - * Generate event ID from tweet text (deterministic hash) - * Same text will always produce the same event ID for deduplication + * Deterministic 32-bit hash → base36 event id. Same input ⇒ same id, so + * downstream consumers can dedupe tweets that we've already scored. */ -function generateEventId(tweetText: string): string { - // Simple hash function for deterministic IDs +function generateEventId(text: string): string { let hash = 0; - for (let i = 0; i < tweetText.length; i++) { - const char = tweetText.charCodeAt(i); - hash = ((hash << 5) - hash) + char; - hash = hash & hash; // Convert to 32-bit integer + for (let i = 0; i < text.length; i++) { + hash = ((hash << 5) - hash) + text.charCodeAt(i); + hash = hash & hash; } - const hashStr = Math.abs(hash).toString(36); - return `evt_${hashStr}`; + return `evt_${Math.abs(hash).toString(36)}`; } -/** - * Generate a trading signal from matched markets and tweet text - */ export function generateSignal( tweetText: string, matches: MarketMatch[], - arbitrageOpportunity?: ArbitrageOpportunity + arbitrageOpportunity?: ArbitrageOpportunity, ): TradingSignal { const startTime = Date.now(); - // If no matches, return minimal signal if (matches.length === 0) { return { event_id: generateEventId(tweetText), @@ -266,29 +208,30 @@ export function generateSignal( }; } - // Analyze tweet sentiment - const sentiment = analyzeSentiment(tweetText); - - // Use the top match (highest confidence) for signal computation const topMatch = matches[0]; const topMarket = topMatch.market; - // Calculate edge - const edge = calculateEdge(topMarket, sentiment); - - // Compute urgency - const urgency = computeUrgency( - edge, - topMarket, + const sentiment = analyzeSentimentForMarket(tweetText, topMarket.title); + const trueProb = sentimentToProbability(sentiment); + + // Use shared edge / Kelly math so arbitrage and position-sizing agree. + const edgeResult = computeEdge({ + trueProb, + yesPrice: topMarket.yesPrice, + volume24h: topMarket.volume24h, + fees: getFeeModel(topMarket.platform), + stake: 100, + confidence: sentimentEdgeConfidence(sentiment), + }); + + const urgency = computeUrgency(edgeResult.edgeNet, topMarket, arbitrageOpportunity); + const signal_type = computeSignalType( + tweetText, + sentiment, + edgeResult.edgeNet, !!arbitrageOpportunity, - arbitrageOpportunity?.spread ); - - // Determine signal type - const signal_type = computeSignalType(tweetText, sentiment, edge, !!arbitrageOpportunity); - - // Generate suggested action - const suggested_action = generateSuggestedAction(topMarket, sentiment, edge, urgency); + const suggested_action = buildSuggestedAction(topMarket, sentiment, edgeResult); return { event_id: generateEventId(tweetText), @@ -301,15 +244,13 @@ export function generateSignal( metadata: { processing_time_ms: Date.now() - startTime, tweet_text: tweetText, + implied_true_prob: trueProb, }, }; } -/** - * Batch generate signals for multiple tweets - */ export function batchGenerateSignals( - tweets: { text: string; matches: MarketMatch[] }[] + tweets: { text: string; matches: MarketMatch[] }[], ): TradingSignal[] { return tweets.map(tweet => generateSignal(tweet.text, tweet.matches)); } From 50a18fbe690aee654301676d89f8a2dfb99abee1 Mon Sep 17 00:00:00 2001 From: john_wang Date: Mon, 20 Apr 2026 13:55:06 -0500 Subject: [PATCH 04/14] arbitrage: add executable sizing fields Leaves the covered-bundle detector from PR #2 alone and adds three optional fields on each opportunity: maxStake, expectedDollarProfit, and annualisedReturn. Sizing uses the impact-aware slippage model in fees.ts and clamps the stake to $10 when refined edge is non-positive. APR uses the earlier of the two endDates or falls back to 30 days. --- src/api/arbitrage-detector.ts | 91 +++++++++++++++++++++++++++++++++++ src/types/market.ts | 17 +++++++ 2 files changed, 108 insertions(+) diff --git a/src/api/arbitrage-detector.ts b/src/api/arbitrage-detector.ts index 379f118..4599605 100644 --- a/src/api/arbitrage-detector.ts +++ b/src/api/arbitrage-detector.ts @@ -2,6 +2,7 @@ // Matches equivalent Polymarket/Kalshi contracts and prices covered YES/NO bundles. import { Market, ArbitrageOpportunity } from '../types/market'; +import { costFraction, getFeeModel } from '../analysis/fees'; const STOP_WORDS = new Set([ 'will', 'the', 'a', 'an', 'in', 'on', 'at', 'by', 'for', 'to', 'of', @@ -307,6 +308,17 @@ export function detectArbitrage( if (bestBundle.edge < minSpread) continue; + const sizing = estimateExecutableSizing( + poly, + kalshi, + bestBundle.yesPlatform, + bestBundle.noPlatform, + bestBundle.yesPrice, + bestBundle.noPrice, + bestBundle.edge, + feesAndSlippage, + ); + opportunities.push({ polymarket: poly, kalshi, @@ -322,6 +334,9 @@ export function detectArbitrage( }, confidence: similarity.confidence, matchReason: similarity.reason, + maxStake: sizing.maxStake, + expectedDollarProfit: sizing.expectedDollarProfit, + annualisedReturn: sizing.annualisedReturn, }); } } @@ -363,3 +378,79 @@ export function getTopArbitrage( return opportunities.slice(0, limit); } + +// ─── Liquidity-aware sizing ─────────────────────────────────────────────── +// +// The core detector charges a flat `feesAndSlippage` buffer (default 2%) on +// every bundle. That keeps the "is this still +EV?" test cheap, but it +// doesn't tell a bot *how much* it can actually put through. The helper +// below looks at the thinner leg's 24h volume, estimates additional +// impact-based slippage via `src/analysis/fees.ts`, and returns: +// +// • maxStake — dollars we think can clear both legs before +// post-hoc slippage halves the modeled edge +// • expectedDollarProfit — modeled edge × maxStake, minus extra impact +// • annualisedReturn — standardised horizon so opportunities with +// different expiries can be compared + +function estimateExecutableSizing( + poly: Market, + kalshi: Market, + yesPlatform: 'polymarket' | 'kalshi', + noPlatform: 'polymarket' | 'kalshi', + yesPrice: number, + noPrice: number, + modeledEdge: number, + baseFeesAndSlippage: number, +): { maxStake: number; expectedDollarProfit: number; annualisedReturn: number } { + const yesLeg = yesPlatform === 'polymarket' ? poly : kalshi; + const noLeg = noPlatform === 'polymarket' ? poly : kalshi; + const liquidity = Math.max(500, Math.min(yesLeg.volume24h, noLeg.volume24h)); + + // Rule of thumb: we're willing to take stake sizes until expected impact + // on both legs equals the modeled edge. That prevents us from walking the + // book beyond a break-even. + let maxStake = Math.min(10_000, Math.max(10, liquidity * modeledEdge * 0.5)); + + // Refine: compute impact-aware slippage at that stake and clamp if the + // refined edge goes negative. + const yesCost = costFraction(maxStake, yesLeg.volume24h, yesPrice, getFeeModel(yesPlatform)); + const noCost = costFraction(maxStake, noLeg.volume24h, noPrice, getFeeModel(noPlatform)); + const impactDraw = Math.max(0, yesCost * yesPrice + noCost * noPrice - baseFeesAndSlippage); + const refinedEdge = modeledEdge - impactDraw; + if (refinedEdge <= 0) { + maxStake = Math.min(maxStake, 10); + } + + const expectedDollarProfit = Math.max(0, refinedEdge) * maxStake; + + const daysToExpiry = soonestExpiryDays(poly, kalshi) ?? 30; + const annualisedReturn = daysToExpiry > 0 && maxStake > 0 + ? (expectedDollarProfit / maxStake) * (365 / daysToExpiry) + : 0; + + return { + maxStake: round2(maxStake), + expectedDollarProfit: round2(expectedDollarProfit), + annualisedReturn: round4(annualisedReturn), + }; +} + +function soonestExpiryDays(a: Market, b: Market): number | null { + const stamps: number[] = []; + for (const m of [a, b]) { + if (!m.endDate) continue; + const t = new Date(m.endDate).getTime(); + if (Number.isFinite(t)) stamps.push(t); + } + if (stamps.length === 0) return null; + return Math.max(0, (Math.min(...stamps) - Date.now()) / (1000 * 60 * 60 * 24)); +} + +function round2(x: number): number { + return Number.isFinite(x) ? Math.round(x * 100) / 100 : 0; +} + +function round4(x: number): number { + return Number.isFinite(x) ? Math.round(x * 10_000) / 10_000 : 0; +} diff --git a/src/types/market.ts b/src/types/market.ts index 93edfba..0ffb7e3 100644 --- a/src/types/market.ts +++ b/src/types/market.ts @@ -42,4 +42,21 @@ export interface ArbitrageOpportunity { }; confidence: number; // 0-1, how confident we are this is the same event matchReason: string; // Why we think these are the same market + + /** + * Max executable dollar stake before liquidity-aware slippage eats the + * modeled edge. Computed from 24h volume on the thinner leg; see + * `src/analysis/fees.ts` for the model. + */ + maxStake?: number; + + /** Expected dollar profit when executing at `maxStake`. */ + expectedDollarProfit?: number; + + /** + * Annualised return to resolution. Uses the earlier of the two + * `endDate`s when available, otherwise a 30-day assumption. Useful for + * comparing opportunities with different horizons. + */ + annualisedReturn?: number; } From c1cc89948fa014da773bc449660a78b1c7648d22 Mon Sep 17 00:00:00 2001 From: john_wang Date: Mon, 20 Apr 2026 13:55:15 -0500 Subject: [PATCH 05/14] api: surface EV and Kelly fields; add arbitrage sizing filters analyze-text now returns ev_per_dollar, kelly_fraction, and breakeven_prob on data.suggested_action, plus implied_true_prob under metadata. markets/arbitrage accepts three new optional filters (minExpectedProfit, minAnnualisedReturn, minMaxStake) that read the fields added in the previous commit. health bumps the version to 2.1.0 and lists the new endpoints in its catalog. No existing field or query parameter changed shape. --- api/analyze-text.ts | 3 ++- api/health.ts | 28 +++++++++++++++++++++---- api/markets/arbitrage.ts | 44 +++++++++++++++++++++++++++++++++++++--- 3 files changed, 67 insertions(+), 8 deletions(-) diff --git a/api/analyze-text.ts b/api/analyze-text.ts index 1bd40da..6665734 100644 --- a/api/analyze-text.ts +++ b/api/analyze-text.ts @@ -179,7 +179,8 @@ export default async function handler( processing_time_ms: Date.now() - startTime, sources_checked: 2, // Polymarket + Kalshi markets_analyzed: markets.length, - model_version: 'v2.0.0', + model_version: 'v2.1.0', + implied_true_prob: signal.metadata.implied_true_prob ?? null, // Stage 0: Freshness metadata data_age_seconds: freshnessMetadata.data_age_seconds, fetched_at: freshnessMetadata.fetched_at, diff --git a/api/health.ts b/api/health.ts index d581941..7fda04c 100644 --- a/api/health.ts +++ b/api/health.ts @@ -57,7 +57,7 @@ export default async function handler( timestamp: new Date().toISOString(), uptime_ms: process.uptime() * 1000, response_time_ms: Date.now() - startTime, - version: '2.0.0', + version: '2.1.0', services: { polymarket: polymarketStatus, kalshi: kalshiStatus, @@ -65,17 +65,37 @@ export default async function handler( endpoints: { '/api/analyze-text': { method: 'POST', - description: 'Analyze text and return matching markets with trading signals', + description: 'Analyze text and return matching markets with trading signals (EV + Kelly)', + status: 'healthy', + }, + '/api/ground-probability': { + method: 'POST', + description: 'Compare an LLM probability estimate to the market consensus', + status: 'healthy', + }, + '/api/position-sizing': { + method: 'POST', + description: 'Kelly-optimal stake given true_prob, yes_price, bankroll, and liquidity', + status: 'healthy', + }, + '/api/risk-assessment': { + method: 'POST', + description: 'Evaluate a proposed trade: EV, variance, Sharpe, and recommendation', status: 'healthy', }, '/api/markets/arbitrage': { method: 'GET', - description: 'Get cross-platform arbitrage opportunities', + description: 'Cross-platform arbitrage opportunities (fee-adjusted, with synthetic arb)', status: 'healthy', }, '/api/markets/movers': { method: 'GET', - description: 'Get markets with significant price changes', + description: 'Markets with significant price changes', + status: 'healthy', + }, + '/api/markets/smart-money': { + method: 'GET', + description: 'Markets ranked by smart-wallet flow', status: 'healthy', }, '/api/health': { diff --git a/api/markets/arbitrage.ts b/api/markets/arbitrage.ts index 26a2f2a..0fff5dc 100644 --- a/api/markets/arbitrage.ts +++ b/api/markets/arbitrage.ts @@ -35,11 +35,20 @@ export default async function handler( minConfidence = '0.5', limit = '20', category, + minExpectedProfit, + minAnnualisedReturn, + minMaxStake, } = req.query; const minSpreadNum = parseFloat(minSpread as string); const minConfidenceNum = parseFloat(minConfidence as string); const limitNum = parseInt(limit as string, 10); + const minExpectedProfitNum = + minExpectedProfit === undefined ? 0 : parseFloat(minExpectedProfit as string); + const minAnnualisedReturnNum = + minAnnualisedReturn === undefined ? 0 : parseFloat(minAnnualisedReturn as string); + const minMaxStakeNum = + minMaxStake === undefined ? 0 : parseFloat(minMaxStake as string); // Validate parameters if (isNaN(minSpreadNum) || minSpreadNum < 0 || minSpreadNum > 1) { @@ -66,6 +75,30 @@ export default async function handler( return; } + if (!Number.isFinite(minExpectedProfitNum) || minExpectedProfitNum < 0) { + res.status(400).json({ + success: false, + error: 'Invalid minExpectedProfit. Must be a non-negative number (dollars).', + }); + return; + } + + if (!Number.isFinite(minAnnualisedReturnNum) || minAnnualisedReturnNum < 0) { + res.status(400).json({ + success: false, + error: 'Invalid minAnnualisedReturn. Must be a non-negative number (e.g. 0.25 for 25%).', + }); + return; + } + + if (!Number.isFinite(minMaxStakeNum) || minMaxStakeNum < 0) { + res.status(400).json({ + success: false, + error: 'Invalid minMaxStake. Must be a non-negative number (dollars).', + }); + return; + } + // Get markets const markets = await getMarkets(); @@ -77,14 +110,16 @@ export default async function handler( return; } - // Get cached arbitrage opportunities (filtered by minSpread) + // Get cached arbitrage opportunities (already filtered by minSpread upstream). + // Opportunities are sorted by profitPotential descending from detectArbitrage(). let opportunities = await getArbitrage(minSpreadNum); - // Apply additional filters client-side - // Note: opportunities are already sorted by spread descending from detectArbitrage() opportunities = opportunities .filter(arb => arb.confidence >= minConfidenceNum) .filter(arb => !category || arb.polymarket.category === category || arb.kalshi.category === category) + .filter(arb => (arb.expectedDollarProfit ?? 0) >= minExpectedProfitNum) + .filter(arb => (arb.annualisedReturn ?? 0) >= minAnnualisedReturnNum) + .filter(arb => (arb.maxStake ?? 0) >= minMaxStakeNum) .slice(0, limitNum); // Stage 0: Get freshness metadata @@ -102,6 +137,9 @@ export default async function handler( minConfidence: minConfidenceNum, limit: limitNum, category: category || null, + minExpectedProfit: minExpectedProfitNum, + minAnnualisedReturn: minAnnualisedReturnNum, + minMaxStake: minMaxStakeNum, }, metadata: { processing_time_ms: Date.now() - startTime, From a0a2e9a25db0ee37248858067cc2ea0ce296f6e1 Mon Sep 17 00:00:00 2001 From: john_wang Date: Mon, 20 Apr 2026 13:55:28 -0500 Subject: [PATCH 06/14] api: add position-sizing and risk-assessment endpoints POST /api/position-sizing returns a Kelly-optimal stake plus half- and quarter-Kelly alternatives given true_prob, yes_price, bankroll, and volume_24h. Defaults to quarter-Kelly with a 10%-of-bankroll hard cap. Runs a second pass so the stake feeds back into the slippage model. POST /api/risk-assessment takes a proposed trade (side, price, stake, optional bankroll and expiry) and returns EV, variance, Sharpe, prob_profit, Kelly-suggested stake, and a TAKE/SCALE_DOWN/AVOID call. Both are wired in vercel.json and the local server. API-REFERENCE is extended with request/response examples. --- API-REFERENCE.upstream.md | 162 ++++++++++++++++++++++++++++-- api/position-sizing.ts | 192 ++++++++++++++++++++++++++++++++++++ api/risk-assessment.ts | 157 +++++++++++++++++++++++++++++ scripts/local-api-server.ts | 4 + vercel.json | 8 ++ 5 files changed, 515 insertions(+), 8 deletions(-) create mode 100644 api/position-sizing.ts create mode 100644 api/risk-assessment.ts diff --git a/API-REFERENCE.upstream.md b/API-REFERENCE.upstream.md index 34ea264..16113c2 100644 --- a/API-REFERENCE.upstream.md +++ b/API-REFERENCE.upstream.md @@ -53,8 +53,11 @@ Content-Type: application/json "suggested_action": { "direction": "YES", // YES | NO | HOLD "confidence": 0.75, - "edge": 0.12, - "reasoning": "Bullish sentiment (85% confidence) suggests YES is underpriced at 67%" + "edge": 0.12, // SIGNED net-of-fees edge in price units + "ev_per_dollar": 0.18, // Expected profit per $1 staked, net of fees + "kelly_fraction": 0.11, // Suggested fraction of bankroll (quarter-Kelly cap) + "breakeven_prob": 0.68, // Min P(YES) needed for positive EV at this price + "reasoning": "Your estimate 82% vs. market 67% ⇒ YES underpriced at 67%. Net edge 12% after 3% costs; EV/$ = 0.180. Suggested Kelly fraction 11% of bankroll." }, "sentiment": { "sentiment": "bullish", // bullish | bearish | neutral @@ -102,18 +105,29 @@ Content-Type: application/json ### 2. GET /api/markets/arbitrage -Get cross-platform arbitrage opportunities between Polymarket and Kalshi. +Get cross-platform covered-bundle arbitrage opportunities between +Polymarket and Kalshi. + +The detector prices real cross-venue bundles — buy YES on venue A + buy NO +on venue B — so `spread` is the **net edge after modeled fees + slippage** +per $1 of payout (not a raw price gap). Each opportunity is also enriched +with liquidity-aware sizing (`maxStake`, `expectedDollarProfit`, +`annualisedReturn`) so bots can pre-filter by how much they can actually +execute at. **Request:** ``` -GET /api/markets/arbitrage?minSpread=0.03&minConfidence=0.5&limit=20&category=crypto +GET /api/markets/arbitrage?minSpread=0.03&minConfidence=0.5&limit=20&category=crypto&minExpectedProfit=10&minAnnualisedReturn=0.25&minMaxStake=250 ``` **Query Parameters:** -- `minSpread` (optional): Minimum price spread (default: 0.03 = 3%) +- `minSpread` (optional): Minimum net covered-bundle edge (default: 0.03 = 3%) - `minConfidence` (optional): Minimum match confidence (default: 0.5 = 50%) - `limit` (optional): Max results (default: 20, max: 100) - `category` (optional): Filter by category (crypto, us_politics, economics, etc.) +- `minExpectedProfit` (optional): Minimum `expectedDollarProfit` at `maxStake` (in dollars) +- `minAnnualisedReturn` (optional): Minimum `annualisedReturn` to resolution (e.g. `0.25` for ≥25% APR) +- `minMaxStake` (optional): Minimum `maxStake` (in dollars) — filters out opportunities too thin to size **Response:** ```json @@ -136,9 +150,19 @@ GET /api/markets/arbitrage?minSpread=0.03&minConfidence=0.5&limit=20&category=cr "volume24h": 200000, ... }, - "spread": 0.07, // 7% spread - "profitPotential": 0.07, // Expected 7% profit + "spread": 0.042, // Net edge per $1 payout (1 - costPerBundle) + "rawPriceGap": 0.07, // Indicative YES price gap + "costPerBundle": 0.958, // Cost to own both sides (incl. fees/slippage buffer) + "feesAndSlippage": 0.02, // Buffer used in the bundle calc + "profitPotential": 0.042, // Same as spread for covered-bundle arb + "maxStake": 1500, // $ before liquidity slippage erodes edge + "expectedDollarProfit": 63, // Net $ profit at maxStake + "annualisedReturn": 0.52, // APR to resolution "direction": "buy_poly_sell_kalshi", + "legs": { + "yes": { "platform": "polymarket", "price": 0.63 }, + "no": { "platform": "kalshi", "price": 0.32 } + }, "confidence": 0.85, "matchReason": "High title similarity (85%)" } @@ -255,7 +279,129 @@ GET /api/markets/movers?minChange=0.05&limit=20&category=us_politics --- -### 4. GET /api/health +### 4. POST /api/position-sizing + +Given a probability estimate, current market price, bankroll, and liquidity, +returns the **Kelly-optimal stake**, fee-adjusted edge, EV, and +best/worst-case PnL. This is the canonical "how much should I bet?" +primitive for trading bots. + +**Request:** +```json +POST /api/position-sizing +Content-Type: application/json + +{ + "true_prob": 0.62, + "yes_price": 0.50, + "bankroll": 10000, + "volume_24h": 250000, + "platform": "polymarket", // optional, default "polymarket" + "confidence": 0.8, // optional, shrinks estimate toward market + "kelly_cap": 0.25, // optional, fractional Kelly cap (default 0.25) + "max_bankroll_fraction": 0.1, // optional, hard cap (default 0.1) + "fees": { // optional overrides + "takerFee": 0.02, + "fixedCost": 0.0, + "spreadCost": 0.005, + "impactCoefficient": 0.5 + } +} +``` + +**Response:** +```json +{ + "success": true, + "data": { + "side": "YES", + "recommended_stake": 820.50, + "alternative_sizing": { + "half_kelly": 410.25, + "quarter_kelly": 205.13, + "flat_1pct_bankroll": 100 + }, + "kelly_fraction": 0.0821, + "edge_raw": 0.12, + "edge_net": 0.108, + "ev_per_dollar": 0.195, + "expected_profit": 160.00, + "worst_case_loss": -840.00, + "best_case_gain": 820.50, + "breakeven_prob": 0.51, + "reasoning": "Your estimate 62% vs. market 50% ⇒ YES underpriced at 50%. Net edge 10.8% after 2.0% costs; EV/$ = 0.195. Suggested Kelly fraction 8.2% of bankroll." + }, + "timestamp": "2026-03-01T12:00:00.000Z" +} +``` + +**Why this matters:** Naïve flat-sizing loses money even on winning +strategies because losers compound faster than winners. Full-Kelly +maximises log-bankroll but has painful drawdowns, so the endpoint caps at +quarter-Kelly by default — production desks rarely stake more. + +--- + +### 5. POST /api/risk-assessment + +Evaluates a **proposed** trade (you already picked side, price, and stake) +and returns an opinionated recommendation plus EV / variance / Sharpe / +worst-case. + +**Request:** +```json +POST /api/risk-assessment +Content-Type: application/json + +{ + "side": "YES", + "yes_price": 0.42, + "stake": 250, + "true_prob": 0.55, // optional, defaults to yes_price + "bankroll": 10000, // optional, used for scale-down checks + "volume_24h": 400000, + "platform": "polymarket", + "confidence": 0.7, // optional + "end_date": "2026-06-01", // optional, drives time-to-expiry warning + "max_bankroll_fraction": 0.1, // optional + "fees": { ... } // optional FeeModel override +} +``` + +**Response:** +```json +{ + "success": true, + "data": { + "recommendation": "TAKE", // TAKE | SCALE_DOWN | AVOID + "side": "YES", + "stake": 250, + "expected_value": 44.25, + "variance": 43562, + "stddev": 208.71, + "sharpe": 0.212, + "prob_profit": 0.55, + "worst_case_loss": -255, + "best_case_gain": 345, + "ev_per_dollar": 0.177, + "edge_net": 0.11, + "kelly_suggested_stake": 312.50, + "time_to_expiry_days": 92.4, + "warnings": [], + "reasoning": "TAKE YES: your p=55.0% vs market YES=42.0%. EV/$ = 0.177, single-trade Sharpe = 0.212. Kelly suggests $312.50 vs. your $250.00." + }, + "timestamp": "2026-03-01T12:00:00.000Z" +} +``` + +**Recommendations:** +- `TAKE`: positive EV, side matches model, stake is within Kelly & bankroll caps. +- `SCALE_DOWN`: positive EV but stake is > 1.5× Kelly or > bankroll cap. +- `AVOID`: negative EV, or model disagrees with the chosen side. + +--- + +### 6. GET /api/health Check API health and service status. diff --git a/api/position-sizing.ts b/api/position-sizing.ts new file mode 100644 index 0000000..7ac244b --- /dev/null +++ b/api/position-sizing.ts @@ -0,0 +1,192 @@ +import type { VercelRequest, VercelResponse } from '@vercel/node'; +import { computeEdge } from '../src/analysis/edge'; +import { DEFAULT_FEES, FeeModel, getFeeModel } from '../src/analysis/fees'; + +/** + * POST /api/position-sizing + * + * Given a probability estimate, a market price, and a bankroll, return the + * Kelly-optimal stake alongside EV, expected variance, and fee-adjusted + * edge numbers — the canonical "how much should I bet?" endpoint for bots. + * + * Request body: + * ```json + * { + * "true_prob": 0.62, // required, 0..1 + * "yes_price": 0.50, // required, 0..1 + * "bankroll": 10000, // required, dollars + * "volume_24h": 250000, // required for slippage estimate + * "platform": "polymarket", // optional, default polymarket + * "confidence": 0.8, // optional, shrinks true_prob toward market + * "kelly_cap": 0.25, // optional fractional Kelly cap (default 0.25) + * "max_bankroll_fraction": 0.1,// optional, hard cap (default 0.1) + * "fees": { "takerFee": 0.02, "fixedCost": 0, "spreadCost": 0.01, "impactCoefficient": 0.5 } + * } + * ``` + */ +interface PositionSizingRequest { + true_prob?: number; + yes_price?: number; + bankroll?: number; + volume_24h?: number; + platform?: string; + confidence?: number; + kelly_cap?: number; + max_bankroll_fraction?: number; + fees?: Partial; +} + +function bad(res: VercelResponse, message: string): void { + res.status(400).json({ success: false, error: message }); +} + +export default async function handler(req: VercelRequest, res: VercelResponse): Promise { + res.setHeader('Access-Control-Allow-Origin', '*'); + res.setHeader('Access-Control-Allow-Methods', 'POST, OPTIONS'); + res.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization'); + + if (req.method === 'OPTIONS') { + res.status(200).end(); + return; + } + + if (req.method !== 'POST') { + res.setHeader('Allow', 'POST, OPTIONS'); + res.status(405).json({ success: false, error: 'Method not allowed. Use POST.' }); + return; + } + + const body = (req.body ?? {}) as PositionSizingRequest; + if (typeof body !== 'object' || Array.isArray(body)) { + bad(res, 'Request body must be a JSON object.'); + return; + } + + if (typeof body.true_prob !== 'number' || !Number.isFinite(body.true_prob) || body.true_prob < 0 || body.true_prob > 1) { + bad(res, 'true_prob is required and must be between 0 and 1.'); + return; + } + if (typeof body.yes_price !== 'number' || !Number.isFinite(body.yes_price) || body.yes_price <= 0 || body.yes_price >= 1) { + bad(res, 'yes_price is required and must be strictly between 0 and 1.'); + return; + } + if (typeof body.bankroll !== 'number' || !Number.isFinite(body.bankroll) || body.bankroll <= 0) { + bad(res, 'bankroll is required and must be a positive number (dollars).'); + return; + } + if (typeof body.volume_24h !== 'number' || !Number.isFinite(body.volume_24h) || body.volume_24h < 0) { + bad(res, 'volume_24h is required and must be a non-negative number.'); + return; + } + + const confidence = body.confidence ?? 1; + if (typeof confidence !== 'number' || confidence < 0 || confidence > 1) { + bad(res, 'confidence must be between 0 and 1.'); + return; + } + + const kellyCap = body.kelly_cap ?? 0.25; + if (typeof kellyCap !== 'number' || kellyCap <= 0 || kellyCap > 1) { + bad(res, 'kelly_cap must be between 0 (exclusive) and 1.'); + return; + } + + const maxFrac = body.max_bankroll_fraction ?? 0.1; + if (typeof maxFrac !== 'number' || maxFrac <= 0 || maxFrac > 1) { + bad(res, 'max_bankroll_fraction must be between 0 (exclusive) and 1.'); + return; + } + + const platform = (body.platform ?? 'polymarket').toLowerCase(); + const defaultFees = getFeeModel(platform); + const fees: FeeModel = { + ...defaultFees, + ...(body.fees ?? {}), + }; + + // Iterate: Kelly depends on cost, cost depends on stake, stake depends on Kelly. + // Two passes are plenty for convergence because stakes move the slippage + // term only through sqrt(stake/volume). + const referenceStake = body.bankroll * maxFrac; + const first = computeEdge({ + trueProb: body.true_prob, + yesPrice: body.yes_price, + volume24h: body.volume_24h, + fees, + stake: referenceStake, + confidence, + kellyCap, + }); + + const stakeCandidate1 = body.bankroll * Math.min(first.kellyFraction, maxFrac); + const refined = computeEdge({ + trueProb: body.true_prob, + yesPrice: body.yes_price, + volume24h: body.volume_24h, + fees, + stake: Math.max(1, stakeCandidate1), + confidence, + kellyCap, + }); + + const rawKelly = refined.kellyFraction; + const kellyFraction = Math.min(rawKelly, maxFrac); + const recommendedStake = Math.max(0, body.bankroll * kellyFraction); + const halfKelly = recommendedStake / 2; + const quarterKelly = recommendedStake / 4; + + const expectedProfit = recommendedStake * refined.evPerDollar; + const worstCase = -recommendedStake * refined.worstCaseLoss; + const bestCase = recommendedStake * refined.bestCaseGain; + + const bankrollCapped = rawKelly > maxFrac; + const reasoning = bankrollCapped + ? `${refined.reasoning} Stake capped at ${(maxFrac * 100).toFixed(1)}% of bankroll (Kelly wanted ${(rawKelly * 100).toFixed(1)}%).` + : refined.reasoning; + + res.status(200).json({ + success: true, + data: { + side: refined.side, + recommended_stake: round(recommendedStake), + alternative_sizing: { + half_kelly: round(halfKelly), + quarter_kelly: round(quarterKelly), + flat_1pct_bankroll: round(body.bankroll * 0.01), + }, + kelly_fraction: round(kellyFraction, 4), + edge_raw: round(refined.edgeRaw, 4), + edge_net: round(refined.edgeNet, 4), + ev_per_dollar: round(refined.evPerDollar, 4), + expected_profit: round(expectedProfit), + worst_case_loss: round(worstCase), + best_case_gain: round(bestCase), + breakeven_prob: round(refined.breakevenProb, 4), + reasoning, + inputs: { + true_prob: body.true_prob, + yes_price: body.yes_price, + bankroll: body.bankroll, + volume_24h: body.volume_24h, + confidence, + kelly_cap: kellyCap, + max_bankroll_fraction: maxFrac, + platform, + fees, + }, + defaults_used: { + kelly_cap: body.kelly_cap === undefined, + max_bankroll_fraction: body.max_bankroll_fraction === undefined, + fees: body.fees === undefined, + default_fees: DEFAULT_FEES, + }, + }, + timestamp: new Date().toISOString(), + }); +} + +function round(x: number, digits = 2): number { + if (!Number.isFinite(x)) return 0; + const f = 10 ** digits; + return Math.round(x * f) / f; +} diff --git a/api/risk-assessment.ts b/api/risk-assessment.ts new file mode 100644 index 0000000..8f128ca --- /dev/null +++ b/api/risk-assessment.ts @@ -0,0 +1,157 @@ +import type { VercelRequest, VercelResponse } from '@vercel/node'; +import { assessRisk, Side } from '../src/analysis/risk'; +import { FeeModel, getFeeModel } from '../src/analysis/fees'; + +/** + * POST /api/risk-assessment + * + * Evaluates a proposed trade. Unlike /api/position-sizing (which tells you + * how big to bet), this endpoint tells you whether a given bet is a good + * idea at the stake you already picked — returning EV, variance, Sharpe, + * and an opinionated recommendation. + * + * Request body: + * ```json + * { + * "side": "YES", // required: YES | NO + * "yes_price": 0.42, // required, 0..1 + * "stake": 250, // required, dollars + * "true_prob": 0.55, // optional; defaults to yes_price + * "bankroll": 10000, // optional, used for scale-down checks + * "volume_24h": 400000, // required, liquidity proxy + * "platform": "polymarket", // optional, default polymarket + * "confidence": 0.7, // optional + * "end_date": "2026-06-01", // optional, ISO date + * "max_bankroll_fraction": 0.1, // optional, default 0.1 + * "fees": { ... } // optional FeeModel override + * } + * ``` + */ +interface RiskRequest { + side?: Side; + yes_price?: number; + stake?: number; + true_prob?: number; + bankroll?: number; + volume_24h?: number; + platform?: string; + confidence?: number; + end_date?: string; + max_bankroll_fraction?: number; + fees?: Partial; +} + +function bad(res: VercelResponse, message: string): void { + res.status(400).json({ success: false, error: message }); +} + +export default async function handler(req: VercelRequest, res: VercelResponse): Promise { + res.setHeader('Access-Control-Allow-Origin', '*'); + res.setHeader('Access-Control-Allow-Methods', 'POST, OPTIONS'); + res.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization'); + + if (req.method === 'OPTIONS') { + res.status(200).end(); + return; + } + + if (req.method !== 'POST') { + res.setHeader('Allow', 'POST, OPTIONS'); + res.status(405).json({ success: false, error: 'Method not allowed. Use POST.' }); + return; + } + + const body = (req.body ?? {}) as RiskRequest; + if (typeof body !== 'object' || Array.isArray(body)) { + bad(res, 'Request body must be a JSON object.'); + return; + } + + if (body.side !== 'YES' && body.side !== 'NO') { + bad(res, "side is required and must be 'YES' or 'NO'."); + return; + } + if (typeof body.yes_price !== 'number' || !Number.isFinite(body.yes_price) || body.yes_price <= 0 || body.yes_price >= 1) { + bad(res, 'yes_price is required and must be strictly between 0 and 1.'); + return; + } + if (typeof body.stake !== 'number' || !Number.isFinite(body.stake) || body.stake <= 0) { + bad(res, 'stake is required and must be a positive dollar amount.'); + return; + } + if (typeof body.volume_24h !== 'number' || !Number.isFinite(body.volume_24h) || body.volume_24h < 0) { + bad(res, 'volume_24h is required and must be a non-negative number.'); + return; + } + if (body.true_prob !== undefined && (typeof body.true_prob !== 'number' || body.true_prob < 0 || body.true_prob > 1)) { + bad(res, 'true_prob must be between 0 and 1 when provided.'); + return; + } + if (body.confidence !== undefined && (typeof body.confidence !== 'number' || body.confidence < 0 || body.confidence > 1)) { + bad(res, 'confidence must be between 0 and 1.'); + return; + } + if (body.bankroll !== undefined && (typeof body.bankroll !== 'number' || body.bankroll <= 0)) { + bad(res, 'bankroll must be a positive number.'); + return; + } + + const platform = (body.platform ?? 'polymarket').toLowerCase(); + const fees: FeeModel = { ...getFeeModel(platform), ...(body.fees ?? {}) }; + + const assessment = assessRisk({ + side: body.side, + yesPrice: body.yes_price, + stake: body.stake, + trueProb: body.true_prob, + bankroll: body.bankroll, + volume24h: body.volume_24h, + platform, + fees, + confidence: body.confidence, + endDate: body.end_date, + maxBankrollFraction: body.max_bankroll_fraction, + }); + + res.status(200).json({ + success: true, + data: { + recommendation: assessment.recommendation, + side: assessment.side, + stake: assessment.stake, + expected_value: round(assessment.expectedValue), + variance: round(assessment.variance), + stddev: round(assessment.stddev), + sharpe: round(assessment.sharpe, 3), + prob_profit: round(assessment.probProfit, 4), + worst_case_loss: round(assessment.worstCase), + best_case_gain: round(assessment.bestCase), + ev_per_dollar: round(assessment.evPerDollar, 4), + edge_net: round(assessment.edgeNet, 4), + kelly_suggested_stake: round(assessment.kellySuggestedStake), + time_to_expiry_days: assessment.timeToExpiryDays === null ? null : round(assessment.timeToExpiryDays, 3), + warnings: assessment.warnings, + reasoning: assessment.reasoning, + inputs: { + side: body.side, + yes_price: body.yes_price, + stake: body.stake, + true_prob: body.true_prob ?? null, + bankroll: body.bankroll ?? null, + volume_24h: body.volume_24h, + platform, + confidence: body.confidence ?? null, + end_date: body.end_date ?? null, + max_bankroll_fraction: body.max_bankroll_fraction ?? null, + fees, + }, + }, + timestamp: new Date().toISOString(), + }); +} + +function round(x: number, digits = 2): number { + if (!Number.isFinite(x)) return 0; + const f = 10 ** digits; + return Math.round(x * f) / f; +} diff --git a/scripts/local-api-server.ts b/scripts/local-api-server.ts index a87b106..37ebead 100644 --- a/scripts/local-api-server.ts +++ b/scripts/local-api-server.ts @@ -57,6 +57,8 @@ import smartMoneyHandler from '../api/markets/smart-money'; import marketWalletFlowHandler from '../api/markets/wallet-flow'; import walletActivityHandler from '../api/wallet/activity'; import walletPositionsHandler from '../api/wallet/positions'; +import positionSizingHandler from '../api/position-sizing'; +import riskAssessmentHandler from '../api/risk-assessment'; type Handler = (req: any, res: any) => Promise | void; type QueryValue = string | string[]; @@ -77,6 +79,8 @@ const ROUTES = new Map([ ['/api/markets/wallet-flow', marketWalletFlowHandler], ['/api/wallet/activity', walletActivityHandler], ['/api/wallet/positions', walletPositionsHandler], + ['/api/position-sizing', positionSizingHandler], + ['/api/risk-assessment', riskAssessmentHandler], ]); function buildQuery(url: URL): Record { diff --git a/vercel.json b/vercel.json index 5d0587d..8881a5c 100644 --- a/vercel.json +++ b/vercel.json @@ -9,6 +9,14 @@ "source": "/api/ground-probability", "destination": "/api/ground-probability.ts" }, + { + "source": "/api/position-sizing", + "destination": "/api/position-sizing.ts" + }, + { + "source": "/api/risk-assessment", + "destination": "/api/risk-assessment.ts" + }, { "source": "/api/markets/arbitrage", "destination": "/api/markets/arbitrage.ts" From 128a932de13a59d93d34e70fa0862c9206faafd6 Mon Sep 17 00:00:00 2001 From: john_wang Date: Mon, 20 Apr 2026 15:02:08 -0500 Subject: [PATCH 07/14] matcher: add post-match quality gate and evaluation harness The keyword matcher surfaces untradable matches: markets with essentially no 24h volume, markets pinned near 1c or 99c, and single- unigram broad hits (the typical case is a Fed-rate-cut tweet matching an NBA penny market on the word "win"). The gate drops all three before results are returned: - volume floor: drop if 24h volume < $5k - extreme-price: drop if yesPrice < 2% or > 98% unless the match has a phrase hit and confidence >= 0.75 - strong-signal: require either a phrase hit or >= 2 matched keywords at >= 0.55 confidence The gate is on by default and can be disabled by passing false as the KeywordMatcher's fourth constructor argument. The eval harness uses that to produce its baseline row. scripts/matcher-eval/ ships a reproducible evaluation: npx tsx scripts/matcher-eval/snapshot-markets.ts # regen snapshot npx tsx scripts/matcher-eval/run-eval.ts On the 30-tweet x 1,857-market fixture: before after delta total matches surfaced 99 86 -13 junk rate (any rule) 63.6% 40.7% -22.9 pp thin-market (<$5k) 4.0% 0.0% -4.0 pp extreme-price 46.5% 25.6% -20.9 pp cross-domain 29.3% 20.9% -8.4 pp weak-signal 4.0% 0.0% -4.0 pp Recall drops 13% while the overall junk rate drops 36% relative. --- scripts/matcher-eval/README.md | 35 ++++ .../matcher-eval/fixtures/eval-result.json | 33 ++++ .../fixtures/markets.snapshot.json | 1 + scripts/matcher-eval/fixtures/tweets.json | 32 +++ scripts/matcher-eval/run-eval.ts | 183 ++++++++++++++++++ scripts/matcher-eval/snapshot-markets.ts | 28 +++ src/analysis/keyword-matcher.ts | 25 ++- src/analysis/match-quality.ts | 126 ++++++++++++ 8 files changed, 461 insertions(+), 2 deletions(-) create mode 100644 scripts/matcher-eval/README.md create mode 100644 scripts/matcher-eval/fixtures/eval-result.json create mode 100644 scripts/matcher-eval/fixtures/markets.snapshot.json create mode 100644 scripts/matcher-eval/fixtures/tweets.json create mode 100644 scripts/matcher-eval/run-eval.ts create mode 100644 scripts/matcher-eval/snapshot-markets.ts create mode 100644 src/analysis/match-quality.ts diff --git a/scripts/matcher-eval/README.md b/scripts/matcher-eval/README.md new file mode 100644 index 0000000..09edef8 --- /dev/null +++ b/scripts/matcher-eval/README.md @@ -0,0 +1,35 @@ +# Matcher evaluation + +Deterministic before/after measurement for the keyword-matcher quality gate +introduced in `src/analysis/match-quality.ts`. + +## What it measures + +For each tweet in `fixtures/tweets.json` we run the matcher twice — once +with the quality gate disabled (baseline) and once enabled (default +options) — against a 1,857-market snapshot in +`fixtures/markets.snapshot.json`. A match is counted as **junk** if it +satisfies any of: + +| rule | threshold | +|---------------------|-----------------------------------------| +| thin-market | `volume24h < $5,000` | +| extreme-price | `yesPrice < 2%` or `yesPrice > 98%` | +| cross-domain | `market.category ∉ tweet.expectedCategories` (non-empty) | +| weak-signal | no phrase-match AND `confidence < 0.55` | + +These are deterministic proxies for "would a bot actually execute +this?". Nothing requires manual annotation. + +## How to reproduce + +```bash +# 1. (optional) regenerate the market snapshot from live Polymarket + Kalshi +npx tsx scripts/matcher-eval/snapshot-markets.ts + +# 2. run the eval +npx tsx scripts/matcher-eval/run-eval.ts +``` + +The latest numbers are persisted to `fixtures/eval-result.json` for +automation. diff --git a/scripts/matcher-eval/fixtures/eval-result.json b/scripts/matcher-eval/fixtures/eval-result.json new file mode 100644 index 0000000..d4cf400 --- /dev/null +++ b/scripts/matcher-eval/fixtures/eval-result.json @@ -0,0 +1,33 @@ +{ + "before": { + "totalTweets": 30, + "totalMatches": 99, + "matchesPerTweet": 3.3, + "junkRate": 0.6363636363636364, + "crossDomainRate": 0.29292929292929293, + "thinMarketRate": 0.04040404040404041, + "extremePriceRate": 0.46464646464646464, + "weakSignalRate": 0.04040404040404041, + "junkCount": 63, + "crossDomainCount": 29, + "thinMarketCount": 4, + "extremePriceCount": 46, + "weakSignalCount": 4 + }, + "after": { + "totalTweets": 30, + "totalMatches": 86, + "matchesPerTweet": 2.8666666666666667, + "junkRate": 0.4069767441860465, + "crossDomainRate": 0.20930232558139536, + "thinMarketRate": 0, + "extremePriceRate": 0.2558139534883721, + "weakSignalRate": 0, + "junkCount": 35, + "crossDomainCount": 18, + "thinMarketCount": 0, + "extremePriceCount": 22, + "weakSignalCount": 0 + }, + "generatedAt": "2026-04-20T19:52:11.127Z" +} \ No newline at end of file diff --git a/scripts/matcher-eval/fixtures/markets.snapshot.json b/scripts/matcher-eval/fixtures/markets.snapshot.json new file mode 100644 index 0000000..9e902a6 --- /dev/null +++ b/scripts/matcher-eval/fixtures/markets.snapshot.json @@ -0,0 +1 @@ +[{"id":"polymarket-0x9823d715687a0a82d2a03731792e83bf58a0409f10def1379e00e4d67a95ba69","platform":"polymarket","title":"Israel x Hezbollah ceasefire by April 18, 2026?","description":"This market will resolve to “Yes” if there is an official ceasefire agreement, defined as a publicly announced and mutually agreed halt in direct military engagement, between Israel and Hezbollah by the listed date, 11:59 PM ET.\n\nIf the agreement is officially reached before the resolution date, this market will resolve to “Yes,” regardless of whether the ceasefire officially takes effect after the resolution date.\n\nAny form of informal understanding, backchannel communication, de-escalation without an announced agreement, or unilateral pause in hostilities will not be considered an official ceasefire. Humanitarian pauses, limited operational pauses, or temporary tactical stand-downs will not count toward the resolution of this market.\n\nA broader peace deal, normalization agreement, or political framework will qualify only if it includes a publicly announced and mutually agreed halt in military engagement between the Israel and Hezbollah, effective on a specified date, or otherwise confirmed by an overwhelming consensus of credible reporting. Agreements that outline future negotiations or de-escalation measures without an explicit, dated commitment to stop fighting will not qualify.\n\nThis market’s resolution will be based on official statements from the Israeli Government and Hezbollah. However, a wide consensus of credible media reporting confirming that an official ceasefire agreement has been reached will suffice.","keywords":["israel","gaza","hamas","middle east","hezbollah","iran","ceasefire","ukraine","russia","peace","conflict","april","18","2026","resolve","yes","there","official","agreement","defined","publicly","announced"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":17414813.20320901,"url":"https://polymarket.com/event/israel-x-hezbollah-ceasefire-by","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.705Z","numericId":"1994007","oneDayPriceChange":0,"endDate":"2026-04-15"},{"id":"polymarket-0xbbc6689d0f6d57ea42168836712237c7308b3e0118c8914d31b6126d0f3254c5","platform":"polymarket","title":"US x Iran permanent peace deal by April 22, 2026?","description":"This market will resolve to “Yes” if Iran and the United states agree to a permanent peace deal by the specified date, 11:59 PM ET. Otherwise, this market will resolve to “No”. \n\nA permanent peace deal refers to any agreement which explicitly indicates that military hostilities between the United States and Iran have ended or will permanently cease, or uses equivalent language clearly signaling a lasting end to military hostilities between the United States and Iran. Agreements that are explicitly temporary or which do not include a definitive agreement to end military hostilities between the US and Iran on a lasting basis (e.g. a temporary extension of the two-week ceasefire agreement announced on April 7, 2026), will not qualify.\n\nA qualifying agreement will be considered to have been established if either of the following conditions are met:\n\n- The United States and Iran each sign or formally adopt a written agreement (e.g. a treaty or multi-point agreement) which meets the above criteria.\n\n- Both the governments of the United States and Iran provide clear public confirmation that a qualifying agreement has been definitively established. Negotiations, statements of progress, or other statements which do not constitute a definitive announcement that a qualifying agreement has been reached will not count.\n\nThe primary resolution source for this market will be official information from the governments of the United States and Iran; however, a consensus of credible reporting may also be used.","keywords":["iran","nuclear","sanctions","middle east","permanent","peace","deal","april","22","2026","peace deal","ukraine","russia","peace agreement","ceasefire","resolve","yes","united","states","agree","specified","date","11"],"yesPrice":0.18,"noPrice":0.81,"yesAsk":0.18,"noAsk":0.81,"volume24h":2957229.3608170007,"url":"https://polymarket.com/event/us-x-iran-permanent-peace-deal-by","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.706Z","numericId":"1919417","oneDayPriceChange":0.01,"endDate":"2026-04-22"},{"id":"polymarket-0x0f8ef3cc906ba7ba94a44724738df44bdd5f73e59e40c9c8b4ff8569e349643c","platform":"polymarket","title":"Will Kim Kardashian win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["kim","north korea","nuclear","kardashian","win","2028","democratic","presidential","nomination","kardashian win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":2548535.086312998,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.706Z","numericId":"559690","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xcdb1f0400949238a63d3e88243d2ada08cd9c2a71985ced9f0cfd5e66354cf90","platform":"polymarket","title":"Will USA win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["usa","win","2026","fifa","soccer","world cup","world","cup","usa win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":2121046.6056019976,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.706Z","numericId":"558943","oneDayPriceChange":0.001,"endDate":"2026-07-20"},{"id":"polymarket-0xa738d66f2c4fa70753ba7060bf656f28e91c42ea8591a72e8f3748ad6a23e1ae","platform":"polymarket","title":"Will PH win the third most seats in the 2026 Colombian Chamber of Representatives election?","description":"Parliamentary elections are scheduled to be held in Colombia on 8 March 2026.\n\nThis market will resolve according to the political party that wins the third-greatest number of seats in the Colombian Chamber of Representatives as a result of this election.\n\nIf the results of this election are not definitively known by December 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThe named parties or coalitions will be primarily ranked by the number of seats won in the specified election. If two or more parties are tied on seats, ties will be broken by the total number of valid votes received, with higher vote totals ranking higher. If parties remain tied, ties will be broken by alphabetical order of the listed party abbreviations. This market will resolve to the party that occupies the third-highest finishing position after applying this ranking.\n\nThis market's resolution will be based solely on the number of seats won by the named party or coalition in the Chamber of Representatives.\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["win","third","most","seats","2026","colombian","chamber","representatives","election","ph win","win the","representatives election","parliamentary","elections","scheduled","held","colombia","8","march","2026."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":1290090.1881670053,"url":"https://polymarket.com/event/colombia-chamber-of-representatives-election-3rd-place","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.706Z","numericId":"1501205","oneDayPriceChange":0,"endDate":"2026-03-08"},{"id":"polymarket-0x8183a221622f2d5d2b46da86c80d55a61f43d35829589e03c1efae9d072638c5","platform":"polymarket","title":"Iran x Israel/US conflict ends by April 7?","description":"This market will resolve to \"Yes\" if there is a continuous 14-day period without any qualifying military action between Iran, and Israel and the United States that begins at any time between market creation and the specified end date (ET). Otherwise, this market will resolve to \"No\". \n\nThe 14-day period may begin at any time between the creation of this market and the specified end date (ET), and must continue uninterrupted through 12:00 PM ET on the 14th calendar day after the strike is confirmed. \n\nA \"military action\" is defined as any use of force by Iran, or Israel and the United States against the other’s soil, or official embassies or consulates, that is either officially acknowledged by the acting government or confirmed through a clear consensus of credible reporting. \n\nThis includes, but is not limited to, airstrikes, naval attacks, and ground incursions. \n\nCyberattacks, sanctions, and diplomatic actions do not count. \n\nOnly actions by Iranian forces explicitly claimed by the Islamic Republic of Iran, or confirmed to have originated from Iranian territory will qualify as Iranian military actions. Attacks on Israel or the US by proxy forces (i.e. Hezbollah, Houthis, etc.) will not count.","keywords":["iran","nuclear","sanctions","middle east","israel","gaza","hamas","conflict","ends","april","7","resolve","yes","there","continuous","14-day","period","without","qualifying"],"yesPrice":0.91,"noPrice":0.09,"yesAsk":0.91,"noAsk":0.09,"volume24h":1077272.3839399999,"url":"https://polymarket.com/event/iran-x-israelus-conflict-ends-by","category":"sports","lastUpdated":"2026-04-20T19:49:45.706Z","numericId":"1706766","oneDayPriceChange":0.216,"endDate":"2026-04-07"},{"id":"polymarket-0x03fda59b9a44363ea583a95bdb65226fb59cd221d367e7b5d8f49ba750aef214","platform":"polymarket","title":"Will ACF Fiorentina win on 2026-04-20?","description":"In the upcoming game, scheduled for April 20, 2026\nIf ACF Fiorentina wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["acf","fiorentina","win","2026-04-20","fiorentina win","win on","upcoming","game","scheduled","april","20","2026","wins","resolve"],"yesPrice":0.68,"noPrice":0.32,"yesAsk":0.68,"noAsk":0.32,"volume24h":1066383.0678090013,"url":"https://polymarket.com/event/sea-lec-fio-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:45.706Z","numericId":"1897675","oneDayPriceChange":0.25,"endDate":"2026-04-20"},{"id":"polymarket-0xd72622d154dfe65b9c019d6afcfe75a55717e5c502db611f555b101aafbf6ec5","platform":"polymarket","title":"Will the Fed decrease interest rates by 50+ bps after the April 2026 meeting?","description":"The FED interest rates are defined in this market by the upper bound of the target federal funds range. The decisions on the target federal fund range are made by the Federal Open Market Committee (FOMC) meetings.\n\nThis market will resolve to the amount of basis points the upper bound of the target federal funds rate is changed by versus the level it was prior to the Federal Reserve's April 2026 meeting.\n\nIf the target federal funds rate is changed to a level not expressed in the displayed options, the change will be rounded up to the nearest 25 and will resolve to the relevant bracket. (e.g. if there's a cut/increase of 12.5 bps it will be considered to be 25 bps)\n\nThe resolution source for this market is the FOMC’s statement after its meeting scheduled for April 28-29, 2026 according to the official calendar: https://www.federalreserve.gov/monetarypolicy/fomccalendars.htm.\n\nThe level and change of the target federal funds rate is also published at the official website of the Federal Reserve at https://www.federalreserve.gov/monetarypolicy/openmarket.htm.\n\nThis market may resolve as soon as the FOMC’s statement for their April meeting with relevant data is issued. If no statement is released by the end date of the next scheduled meeting, this market will resolve to the \"No change\" bracket.","keywords":["fed","federal reserve","fomc","interest rates","decrease","interest","rates","50","bps","basis points","after","april","2026","meeting","bps after","after the","defined","upper","bound","target","federal","funds","range.","decisions"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":1013372.0100000001,"url":"https://polymarket.com/event/fed-decision-in-april","category":"economics","lastUpdated":"2026-04-20T19:49:45.706Z","numericId":"669660","oneDayPriceChange":0,"endDate":"2026-04-29"},{"id":"polymarket-0xa78ecba9c4273564cce4b810db46bb36cc35db9cd52fc4e067c77f85af1c1048","platform":"polymarket","title":"Kharg Island no longer under Iranian control by April 30?","description":"This market will resolve to \"Yes\" if Kharg Island is no longer under Iranian control by April 30, 2026 11:59PM ET. Otherwise, this market will resolve to \"No\".\n\n“No longer under the control of Iran” means that Iran no longer exercises primary governmental or military control over Kharg Island, and another state, occupying force, or internationally backed authority has established control over the island.\n\nTemporary raids, isolated landings, special operations, bombardment, sabotage, naval presence offshore, or temporary disruption of Iranian activity will not qualify on their own.\n\nAn announcement, threat, or claim that Iran has lost control will not qualify without actual control being established.\n\nIf control changes pursuant to a negotiated settlement, ceasefire term, surrender, or transfer agreement, this will qualify only once actual control has been established on the island.\n\nIf control over Kharg Island is contested, unclear, disputed, or not sufficiently established by the resolution date, this will not qualify, and the market will resolve to “No”.\n\nThe primary resolution source will be official statements from the relevant governments and militaries, along with a consensus of credible reporting.","keywords":["kharg","island","no","longer","under","iranian","control","april","30","island no","no longer","longer under","under iranian","resolve","yes","2026","11","59pm","et.","otherwise","iran"],"yesPrice":0.07,"noPrice":0.94,"yesAsk":0.07,"noAsk":0.94,"volume24h":968430.8864359993,"url":"https://polymarket.com/event/kharg-island-no-longer-under-iranian-control-by-march-31","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.706Z","numericId":"1611267","oneDayPriceChange":0.01,"endDate":"2026-04-30"},{"id":"polymarket-0x06a804e8bd1a539829b7db279ad33b2cf0bcf98f315a3b3a8c7623e6230d88fd","platform":"polymarket","title":"Will Bitcoin reach $80,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final High price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT High prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","reach","80000","april","bitcoin reach","reach 80000","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.45,"noPrice":0.55,"yesAsk":0.45,"noAsk":0.55,"volume24h":964023.1399970001,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.706Z","numericId":"1823776","oneDayPriceChange":0.11,"endDate":"2026-05-01"},{"id":"polymarket-0x924a2942747dd75703321a7c8d809c68f6a514c3b0f2a2e64274e02310634669","platform":"polymarket","title":"Strait of Hormuz traffic returns to normal by end of April?","description":"This market will resolve to “Yes” if IMF Portwatch publishes a 7-day moving average of transit calls (“Arrivals of Ships”) for the Strait of Hormuz equal to or above 60 for any date between market creation and April 30, 2026. Otherwise, this market will resolve to “No”.\n\nDaily transit calls include container, dry bulk, roll-on/roll-off, general cargo, and tanker ships. Ships not reported by IMF Portwatch will not be considered.\n\nThis market will resolve as soon as IMF Portwatch publishes a 7-day moving average of transit calls equal to or above the specified level, or once data has been published for the final date in the specified period and no such value has been published. If no data has been published for the final date of the specified period within 14 calendar days (ET) after the end of that period, this market will resolve based on data published up to that point.\n\nRevisions to previously published data points made within this market’s timeframe will be considered. However, they will not disqualify a previously published data point from qualifying. Revisions to previously published data points after data is published for April 30, 2026, however, will not be considered.\n\nThe resolution source for this market will be IMF Portwatch, specifically the transit calls data published for the Strait of Hormuz at https://portwatch.imf.org/pages/cb5856222a5b4105adc6ee7e880a1730, both in the chart and through downloadable files.","keywords":["strait","hormuz","traffic","returns","normal","end","april","resolve","yes","imf","portwatch","publishes","7-day","moving","average"],"yesPrice":0.28,"noPrice":0.72,"yesAsk":0.28,"noAsk":0.72,"volume24h":957385.1533400002,"url":"https://polymarket.com/event/strait-of-hormuz-traffic-returns-to-normal-by-april-30","category":"technology","lastUpdated":"2026-04-20T19:49:45.706Z","numericId":"1540766","oneDayPriceChange":0.035,"endDate":"2026-04-30"},{"id":"polymarket-0xc4435df23facee8c4cd86090310c7835c2a0425646b2588b0a02e67fa42f444e","platform":"polymarket","title":"Will Glenn Youngkin win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["glenn","youngkin","win","2028","presidential","election","youngkin win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":871652.9180350002,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"561238","oneDayPriceChange":-0.001,"endDate":"2028-11-07"},{"id":"polymarket-0x2abc2ca23b04c1d8e170b33f1de93937eec740bf5b3e9309e250f3562f1a166b","platform":"polymarket","title":"Will the Tampa Bay Buccaneers win the 2027 NFL league championship?","description":"This market will resolve according to the team that wins the 2027 NFL league championship. \n\nIf at any point it becomes impossible for a listed team to win the 2027 NFL league championship per the rules of the NFL (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2027 NFL league championship game is cancelled, postponed after March 31, 2027 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from NFL (https://www.nfl.com/); however, a consensus of credible reporting may also be used.","keywords":["tampa","bay","buccaneers","win","2027","nfl","football","super bowl","league","championship","buccaneers win","win the","resolve","according","team","wins","championship.","point","becomes","impossible"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":867868.0815770007,"url":"https://polymarket.com/event/big-game-champion-2027","category":"sports","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"1357400","oneDayPriceChange":-0.001,"endDate":"2027-03-31"},{"id":"polymarket-0xd4d00e5bf8b960cc37c74c1ec19e41e00b0706add203ddcfbb65ad006c5c223a","platform":"polymarket","title":"Will the Fed increase interest rates by 25+ bps after the April 2026 meeting?","description":"The FED interest rates are defined in this market by the upper bound of the target federal funds range. The decisions on the target federal fund range are made by the Federal Open Market Committee (FOMC) meetings.\n\nThis market will resolve to the amount of basis points the upper bound of the target federal funds rate is changed by versus the level it was prior to the Federal Reserve's April 2026 meeting.\n\nIf the target federal funds rate is changed to a level not expressed in the displayed options, the change will be rounded up to the nearest 25 and will resolve to the relevant bracket. (e.g. if there's a cut/increase of 12.5 bps it will be considered to be 25 bps)\n\nThe resolution source for this market is the FOMC’s statement after its meeting scheduled for April 28-29, 2026 according to the official calendar: https://www.federalreserve.gov/monetarypolicy/fomccalendars.htm.\n\nThe level and change of the target federal funds rate is also published at the official website of the Federal Reserve at https://www.federalreserve.gov/monetarypolicy/openmarket.htm.\n\nThis market may resolve as soon as the FOMC’s statement for their April meeting with relevant data is issued. If no statement is released by the end date of the next scheduled meeting, this market will resolve to the \"No change\" bracket.","keywords":["fed","federal reserve","fomc","interest rates","increase","interest","rates","25","bps","basis points","after","april","2026","meeting","bps after","after the","defined","upper","bound","target","federal","funds","range.","decisions"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":840278.9878180003,"url":"https://polymarket.com/event/fed-decision-in-april","category":"economics","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"669663","oneDayPriceChange":0,"endDate":"2026-04-29"},{"id":"polymarket-0x1507c50c86fb307e4f1acd9d740b2be66d98773f90d161e94907d8ef2c5699b3","platform":"polymarket","title":"Trump announces end of military operations against Iran by April 21st?","description":"This market will resolve to \"Yes\" if President Trump, the US government, or the military publicly and officially announce that their military operations against Iran, initiated on February 28, 2026, have concluded by the listed date (ET). Otherwise, this market will resolve to “No”.\n\nQualifying statements must clearly indicate that the operation has ended. Informal announcements, statements from unnamed sources or leaks will not qualify. \n\nWritten public statements from Donald Trump (e.g. posts from his personal Truth Social account), will count. Videos posted on his social media accounts will also qualify for a \"Yes\" resolution.\n\nThe primary resolution source for this market will be official statements from the US government and/or its official representatives; however, a consensus of credible reporting may also be used.","keywords":["trump","president","potus","administration","gop","republican","announces","end","military","operations","against","iran","nuclear","sanctions","middle east","april","21st","resolve","yes","government","publicly","officially","announce","initiated","february"],"yesPrice":0.06,"noPrice":0.94,"yesAsk":0.06,"noAsk":0.94,"volume24h":828786.8493960005,"url":"https://polymarket.com/event/trump-announces-end-of-military-operations-against-iran-by","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"1918792","oneDayPriceChange":-0.02,"endDate":"2026-04-21"},{"id":"polymarket-0x6c31c73a5447ef744d271098ce51594afa5a521fe367c07f7138c868703d693f","platform":"polymarket","title":"US x Iran diplomatic meeting by April 21, 2026?","description":"This market will resolve to \"Yes\" if there is a diplomatic meeting between representatives of the United States and Iran by the listed date, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nA diplomatic meeting refers to a deliberate meeting between representatives of the listed countries who are acting in an official capacity and are authorized to engage in negotiation or diplomacy regarding US-Iranian relations on behalf of their governments. Meetings conducted indirectly, for example, through designated mediators, facilitators, or interlocutors acting with the knowledge and authorization of the relevant governments, will qualify. \n\nBrief greetings, chance encounters, or talks otherwise not deliberately aimed at diplomacy or negotiation will not count.\n\nThe meeting must be in-person (including indirect in-person meetings) and must be publicly acknowledged by either government or reported by a consensus of credible media. Remote meetings, phone calls, or other meetings where the relevant parties are not present will not count.\n\nThe resolution sources for this market will be official information from the governments of the United States and Iran, and a consensus of credible reporting.","keywords":["iran","nuclear","sanctions","middle east","diplomatic","meeting","april","21","2026","resolve","yes","there","between","representatives","united","states","listed"],"yesPrice":0.47,"noPrice":0.53,"yesAsk":0.47,"noAsk":0.53,"volume24h":815070.5906149993,"url":"https://polymarket.com/event/us-x-iran-diplomatic-meeting-by-329","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"2002698","oneDayPriceChange":-0.155,"endDate":"2026-04-21"},{"id":"polymarket-0xceb6dfaa2cf5abc9d47ebc867b984a7715104944249274e8a483a2e17473e5f5","platform":"polymarket","title":"US x Iran permanent peace deal by April 30, 2026?","description":"This market will resolve to “Yes” if Iran and the United states agree to a permanent peace deal by the specified date, 11:59 PM ET. Otherwise, this market will resolve to “No”. \n\nA permanent peace deal refers to any agreement which explicitly indicates that military hostilities between the United States and Iran have ended or will permanently cease, or uses equivalent language clearly signaling a lasting end to military hostilities between the United States and Iran. Agreements that are explicitly temporary or which do not include a definitive agreement to end military hostilities between the US and Iran on a lasting basis (e.g. a temporary extension of the two-week ceasefire agreement announced on April 7, 2026), will not qualify.\n\nA qualifying agreement will be considered to have been established if either of the following conditions are met:\n\n- The United States and Iran each sign or formally adopt a written agreement (e.g. a treaty or multi-point agreement) which meets the above criteria.\n\n- Both the governments of the United States and Iran provide clear public confirmation that a qualifying agreement has been definitively established. Negotiations, statements of progress, or other statements which do not constitute a definitive announcement that a qualifying agreement has been reached will not count.\n\nThe primary resolution source for this market will be official information from the governments of the United States and Iran; however, a consensus of credible reporting may also be used.","keywords":["iran","nuclear","sanctions","middle east","permanent","peace","deal","april","30","2026","peace deal","ukraine","russia","peace agreement","ceasefire","resolve","yes","united","states","agree","specified","date","11"],"yesPrice":0.36,"noPrice":0.64,"yesAsk":0.36,"noAsk":0.64,"volume24h":808563.2008000001,"url":"https://polymarket.com/event/us-x-iran-permanent-peace-deal-by","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"1919421","oneDayPriceChange":0.03,"endDate":"2026-04-30"},{"id":"polymarket-0x4405c62496c4fdd275d17ec31567a01534013c518c314ce61bb633b5e7cb6426","platform":"polymarket","title":"Will the Toronto Raptors win the 2026 NBA Finals?","description":"This market will resolve to “Yes” if the Toronto Raptors win the 2026 NBA Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NBA Finals based off the rules of the NBA.\n\nThe resolution source for this market will be information from the NBA.","keywords":["toronto","raptors","win","2026","nba","basketball","finals","raptors win","win the","resolve","yes","finals.","otherwise","no","becomes","impossible","team"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":797912.2182119992,"url":"https://polymarket.com/event/2026-nba-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"553876","oneDayPriceChange":-0.002,"endDate":"2026-07-01"},{"id":"polymarket-0xe06a7e94cf2fa8dc2085b7610fe16e9be1cde6654f34d365c13da1149b276c61","platform":"polymarket","title":"Will Oprah Winfrey win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["oprah","winfrey","win","2028","democratic","presidential","nomination","winfrey win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":765647.2115489997,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"559687","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x9c45662ecaccdcd59532fe095afdc1a70f290c3226e7cf7f59f664d19d637a4a","platform":"polymarket","title":"Will Crystal Palace FC win on 2026-04-20?","description":"In the upcoming game, scheduled for April 20, 2026\nIf Crystal Palace FC wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["crystal","palace","win","2026-04-20","fc win","win on","upcoming","game","scheduled","april","20","2026","wins","resolve"],"yesPrice":0.29,"noPrice":0.71,"yesAsk":0.29,"noAsk":0.71,"volume24h":733315.5193590001,"url":"https://polymarket.com/event/epl-cry-wes-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"1901377","oneDayPriceChange":-0.1,"endDate":"2026-04-20"},{"id":"polymarket-0x5c2e6aef8af5931e9bfa3750364626d754531d2fada2885d45c356b175962a25","platform":"polymarket","title":"Iran x Israel/US conflict ends by April 15?","description":"This market will resolve to \"Yes\" if there is a continuous 14-day period without any qualifying military action between Iran, and Israel and the United States that begins at any time between market creation and the specified end date (ET). Otherwise, this market will resolve to \"No\". \n\nThe 14-day period may begin at any time between the creation of this market and the specified end date (ET), and must continue uninterrupted through 12:00 PM ET on the 14th calendar day after the strike is confirmed. \n\nA \"military action\" is defined as any use of force by Iran, or Israel and the United States against the other’s soil, or official embassies or consulates, that is either officially acknowledged by the acting government or confirmed through a clear consensus of credible reporting. \n\nThis includes, but is not limited to, airstrikes, naval attacks, and ground incursions. \n\nCyberattacks, sanctions, and diplomatic actions do not count. \n\nOnly actions by Iranian forces explicitly claimed by the Islamic Republic of Iran, or confirmed to have originated from Iranian territory will qualify as Iranian military actions. Attacks on Israel or the US by proxy forces (i.e. Hezbollah, Houthis, etc.) will not count.","keywords":["iran","nuclear","sanctions","middle east","israel","gaza","hamas","conflict","ends","april","15","resolve","yes","there","continuous","14-day","period","without","qualifying"],"yesPrice":0.91,"noPrice":0.09,"yesAsk":0.91,"noAsk":0.09,"volume24h":711421.7908600004,"url":"https://polymarket.com/event/iran-x-israelus-conflict-ends-by","category":"sports","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"1567746","oneDayPriceChange":0.1265,"endDate":"2026-04-15"},{"id":"polymarket-0x567f1ff714731fafa702d454a105b064a7ec4d10f6fb71ad3221f4918681c709","platform":"polymarket","title":"Will the Philadelphia 76ers win the 2026 NBA Finals?","description":"This market will resolve to “Yes” if the Philadelphia 76ers win the 2026 NBA Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NBA Finals based off the rules of the NBA.\n\nThe resolution source for this market will be information from the NBA.","keywords":["philadelphia","76ers","win","2026","nba","basketball","finals","76ers win","win the","resolve","yes","finals.","otherwise","no","becomes","impossible","team"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":696944.3726309997,"url":"https://polymarket.com/event/2026-nba-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"553869","oneDayPriceChange":0.001,"endDate":"2026-07-01"},{"id":"polymarket-0x36e8ca24d2a13435f519f15580d42b45cdbe3bc425fb39a7c2733260357af0fa","platform":"polymarket","title":"Will there be no change in Fed interest rates after the April 2026 meeting?","description":"The FED interest rates are defined in this market by the upper bound of the target federal funds range. The decisions on the target federal fund range are made by the Federal Open Market Committee (FOMC) meetings.\n\nThis market will resolve to the amount of basis points the upper bound of the target federal funds rate is changed by versus the level it was prior to the Federal Reserve's April 2026 meeting.\n\nIf the target federal funds rate is changed to a level not expressed in the displayed options, the change will be rounded up to the nearest 25 and will resolve to the relevant bracket. (e.g. if there's a cut/increase of 12.5 bps it will be considered to be 25 bps)\n\nThe resolution source for this market is the FOMC’s statement after its meeting scheduled for April 28-29, 2026 according to the official calendar: https://www.federalreserve.gov/monetarypolicy/fomccalendars.htm.\n\nThe level and change of the target federal funds rate is also published at the official website of the Federal Reserve at https://www.federalreserve.gov/monetarypolicy/openmarket.htm.\n\nThis market may resolve as soon as the FOMC’s statement for their April meeting with relevant data is issued. If no statement is released by the end date of the next scheduled meeting, this market will resolve to the \"No change\" bracket.","keywords":["there","no","change","fed","federal reserve","fomc","interest rates","interest","rates","after","april","2026","meeting","be no","no change","rates after","after the","defined","upper","bound","target","federal","funds","range.","decisions"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":663965.4192690018,"url":"https://polymarket.com/event/fed-decision-in-april","category":"economics","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"669662","oneDayPriceChange":0,"endDate":"2026-04-29"},{"id":"polymarket-0xe443dab97ad8b7f58558cc7a6a3932d156031e962a451e0461e9a4578d78fe84","platform":"polymarket","title":"Will the Iranian regime fall by April 30?","description":"This market will resolve to \"Yes\" if the Islamic Republic of Iran’s current ruling regime is overthrown, collapsed, or otherwise ceases to govern by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nThis requires a broad consensus of reporting indicating that core structures of the Islamic Republic (e.g. the office of the Supreme Leader, the Guardian Council, IRGC control under clerical authority) have been dissolved, incapacitated, or replaced by a fundamentally different governing system or otherwise lost de facto power over a majority of the population of Iran. This could occur via revolution, civil war, military coup, or voluntary abdication, but only qualifies if the Islamic Republic no longer exercises sovereign power.\n\nRoutine political events such as elections, reforms, or leadership succession do not qualify. Internal coups or power shifts that preserve the Islamic Republic’s core structures also do not qualify. Only a clear break in continuity—such as a new provisional government, revolutionary council, or constitution replacing the Islamic Republic will qualify.\n\nPartial loss of territory or challenges from rebel or exile groups will not qualify unless the Islamic Republic no longer administers the majority of the Iranian population within Iran. \n\nThe resolution source will be a consensus of credible reporting. ","keywords":["iranian","regime","fall","april","30","resolve","yes","islamic","republic","iran","nuclear","sanctions","middle east"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":633066.4810349991,"url":"https://polymarket.com/event/will-the-iranian-regime-fall-by-april-30","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"1507751","oneDayPriceChange":-0.002,"endDate":"2026-04-30"},{"id":"polymarket-0x0d14f5dc9fb3250ec888b1ac8d9fe9a0ce06f9d3ea60fdf138e8690622fea84c","platform":"polymarket","title":"Will the Fed decrease interest rates by 25 bps after the April 2026 meeting?","description":"The FED interest rates are defined in this market by the upper bound of the target federal funds range. The decisions on the target federal fund range are made by the Federal Open Market Committee (FOMC) meetings.\n\nThis market will resolve to the amount of basis points the upper bound of the target federal funds rate is changed by versus the level it was prior to the Federal Reserve's April 2026 meeting.\n\nIf the target federal funds rate is changed to a level not expressed in the displayed options, the change will be rounded up to the nearest 25 and will resolve to the relevant bracket. (e.g. if there's a cut/increase of 12.5 bps it will be considered to be 25 bps)\n\nThe resolution source for this market is the FOMC’s statement after its meeting scheduled for April 28-29, 2026 according to the official calendar: https://www.federalreserve.gov/monetarypolicy/fomccalendars.htm.\n\nThe level and change of the target federal funds rate is also published at the official website of the Federal Reserve at https://www.federalreserve.gov/monetarypolicy/openmarket.htm.\n\nThis market may resolve as soon as the FOMC’s statement for their April meeting with relevant data is issued. If no statement is released by the end date of the next scheduled meeting, this market will resolve to the \"No change\" bracket.","keywords":["fed","federal reserve","fomc","interest rates","decrease","interest","rates","25","bps","basis points","after","april","2026","meeting","bps after","after the","defined","upper","bound","target","federal","funds","range.","decisions"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":604103.5515299997,"url":"https://polymarket.com/event/fed-decision-in-april","category":"economics","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"669661","oneDayPriceChange":0.001,"endDate":"2026-04-29"},{"id":"polymarket-0x2cd24d17f5680dc6e7b7d67c712a223ae85550745597e81bd2d2b8d073443951","platform":"polymarket","title":"Will Roberto Sánchez Palomino win the 2026 Peruvian presidential election?","description":"General elections are scheduled to be held in Peru on April 12, 2026.\n\nThis market will resolve according to the listed candidate who wins the next Peruvian Presidential election. \n\nThis market includes any potential second round. \n\nIf the results are not known definitively by October 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the results of this election, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve solely on the official results as reported by the Peruvian government, specifically the National Office of Electoral Processes (Oficina Nacional de Procesos Electorales, ONPE) (https://www.onpe.gob.pe/elecciones/) and the National Jury of Elections (Jurado Nacional de Elecciones, JNE) (https://portal.jne.gob.pe/portal/) ","keywords":["roberto","nchez","palomino","win","2026","peruvian","presidential","election","palomino win","win the","presidential election","general","elections","scheduled","held","peru","april","12","2026."],"yesPrice":0.23,"noPrice":0.77,"yesAsk":0.23,"noAsk":0.77,"volume24h":583639.3537590001,"url":"https://polymarket.com/event/peru-presidential-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"947289","oneDayPriceChange":-0.0095,"endDate":"2026-06-07"},{"id":"polymarket-0xabb6bb4f7eefad8300e404ababe1580791e258aef663b73a8bab792518684759","platform":"polymarket","title":"Will Bitcoin reach $150,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final High price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT High prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","reach","150000","april","bitcoin reach","reach 150000","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":554692.7750000003,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"1823769","oneDayPriceChange":0,"endDate":"2026-05-01"},{"id":"polymarket-0xc6158282b574047044e504aabb1bc1f86ed28097e62d69425cb4403847767945","platform":"polymarket","title":"Starmer out by April 30, 2026?","description":"This market will resolve to “Yes” if Keir Starmer ceases to be the Prime Minister of the United Kingdom for any period of time between market creation and April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nAn announcement of Keir Starmer's resignation/removal before this market's end date will immediately resolve this market to \"Yes\", regardless of when the announced resignation/removal goes into effect.\n\nThe resolution source for this market will be the government of the UK, however a consensus of credible reporting will also suffice.","keywords":["starmer","out","april","30","2026","resolve","yes","keir","ceases","prime","minister","united","kingdom"],"yesPrice":0.04,"noPrice":0.95,"yesAsk":0.04,"noAsk":0.95,"volume24h":538516.4130310001,"url":"https://polymarket.com/event/starmer-out-in-2025","category":"other","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"1500922","oneDayPriceChange":0.0075,"endDate":"2026-06-30"},{"id":"polymarket-0x796e791e7058571e460278814fc7a3183752285338f1400087b98bef3c447908","platform":"polymarket","title":"Will the Los Angeles Lakers win the 2026 NBA Finals?","description":"This market will resolve to “Yes” if the Los Angeles Lakers win the 2026 NBA Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NBA Finals based off the rules of the NBA.\n\nThe resolution source for this market will be information from the NBA.","keywords":["los","angeles","lakers","los angeles","nba","basketball","win","2026","finals","lakers win","win the","resolve","yes","finals.","otherwise","no","becomes","impossible","team"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":535183.2305719998,"url":"https://polymarket.com/event/2026-nba-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"553863","oneDayPriceChange":-0.004,"endDate":"2026-07-01"},{"id":"polymarket-0x414378275cb214b747245942be889ee1e077c56d1c00eb4d726629c95f22b5a5","platform":"polymarket","title":"Will Kim Kardashian win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["kim","north korea","nuclear","kardashian","win","2028","republican","presidential","nomination","kardashian win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":533952.6289349999,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"562003","oneDayPriceChange":0.001,"endDate":"2028-11-07"},{"id":"polymarket-0x24f38479176af2d71f64161d53bde777aef49ef1c03066510174d43a8d2a43fe","platform":"polymarket","title":"Trump out as President by April 30?","description":"This market will resolve to “Yes” if Donald Trump resigns or is removed as President or otherwise ceases to be the President of the United States for any period of time by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nAn announcement of Donald Trump's resignation/removal before this market's end date will immediately resolve this market to \"Yes\", regardless of when the announced resignation/removal goes into effect.\n\nOnly permanent removal from office will qualify. Temporary removal (e.g. temporary invocation of the 25th Amendment under Section 3 or a Section 4 invocation not sustained by both Houses of Congress) or impeachment without removal will not count.\n\nA sustained invocation of the Twenty-Fifth Amendment, Section 4 (i.e., if both Houses of Congress, by two-thirds vote, uphold the Vice President and Cabinet’s determination of presidential inability) will qualify for a \"Yes\" resolution. \n\nThe resolution source for this market will be a consensus of credible reporting.","keywords":["trump","president","potus","administration","gop","republican","out","april","30","resolve","yes","donald","resigns","removed","otherwise","ceases","united"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":530076.0226389999,"url":"https://polymarket.com/event/trump-out-as-president-by-april-30","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"1733817","oneDayPriceChange":-0.002,"endDate":"2026-04-30"},{"id":"polymarket-0x2053d8515f1b8cbeea4ccdb56e60e89c2617e43a8660d95166b8e71d27865277","platform":"polymarket","title":"Will Marco Rubio win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["marco","rubio","win","2028","presidential","election","marco rubio","senate","republican","secretary of state","rubio win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.11,"noPrice":0.89,"yesAsk":0.11,"noAsk":0.89,"volume24h":519573.8848170001,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"561234","oneDayPriceChange":-0.0045,"endDate":"2028-11-07"},{"id":"polymarket-0x13e1cc703a120883a709d3bb29707097952845d61ca6793ea2b4328bae2a7451","platform":"polymarket","title":"Will the Boston Celtics win the 2026 NBA Finals?","description":"This market will resolve to “Yes” if the Boston Celtics win the 2026 NBA Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NBA Finals based off the rules of the NBA.\n\nThe resolution source for this market will be information from the NBA.","keywords":["boston","celtics","nba","basketball","win","2026","finals","celtics win","win the","resolve","yes","finals.","otherwise","no","becomes","impossible","team"],"yesPrice":0.14,"noPrice":0.86,"yesAsk":0.14,"noAsk":0.86,"volume24h":508735.3988830001,"url":"https://polymarket.com/event/2026-nba-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"553862","oneDayPriceChange":0.012,"endDate":"2026-07-01"},{"id":"polymarket-0x1e688e3b217f932d30c51aefaf79d7ef463ae8c2810635b6f1ffb905d55dcdd6","platform":"polymarket","title":"US x Iran diplomatic meeting by April 20, 2026?","description":"This market will resolve to \"Yes\" if there is a diplomatic meeting between representatives of the United States and Iran by the listed date, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nA diplomatic meeting refers to a deliberate meeting between representatives of the listed countries who are acting in an official capacity and are authorized to engage in negotiation or diplomacy regarding US-Iranian relations on behalf of their governments. Meetings conducted indirectly, for example, through designated mediators, facilitators, or interlocutors acting with the knowledge and authorization of the relevant governments, will qualify. \n\nBrief greetings, chance encounters, or talks otherwise not deliberately aimed at diplomacy or negotiation will not count.\n\nThe meeting must be in-person (including indirect in-person meetings) and must be publicly acknowledged by either government or reported by a consensus of credible media. Remote meetings, phone calls, or other meetings where the relevant parties are not present will not count.\n\nThe resolution sources for this market will be official information from the governments of the United States and Iran, and a consensus of credible reporting.","keywords":["iran","nuclear","sanctions","middle east","diplomatic","meeting","april","20","2026","resolve","yes","there","between","representatives","united","states","listed"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":484397.018208,"url":"https://polymarket.com/event/us-x-iran-diplomatic-meeting-by-329","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"2002697","oneDayPriceChange":-0.0805,"endDate":"2026-04-20"},{"id":"polymarket-0xa8599f4c633fb98f7543e04b20f91052564a6fbe8e023627c554ee86eadfb1f5","platform":"polymarket","title":"Will Richard Van De Water win The Bachelorette Season 22?","description":"This market will resolve according to the winner of The Bachelorette Season 22. \n\nThe winner is defined as the contestant who receives the final rose from the Bachelorette. Any changes in relationship status after the final rose ceremony including the \"After the Final Rose\" segment will not be considered. \n\nIf no rose is given, or the finale ends without a final rose ceremony, this market will resolve to \"Other\". \n\nIf the final episode of the bachelorette is not publicly available by November 30, 2026, 11:59 PM ET, this market will resolve to \"Other\". \n\nThe official resolution source will be the finale episode of The Bachelorette Season 22.","keywords":["richard","van","water","win","bachelorette","season","22","water win","win the","resolve","according","winner","22.","defined","contestant","receives","final"],"yesPrice":0.15,"noPrice":0.84,"yesAsk":0.15,"noAsk":0.84,"volume24h":457899.05614999996,"url":"https://polymarket.com/event/bachelorette-season-22-winner","category":"other","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"1429058","oneDayPriceChange":0.138,"endDate":"2026-11-30"},{"id":"polymarket-0x32cfa52198e85e070d1b17d1b53c5c3a6aaae7736cdc33fa6aa04d353f0c2811","platform":"polymarket","title":"Will Belgium win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["belgium","win","2026","fifa","soccer","world cup","world","cup","belgium win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":448029.7287940001,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"558946","oneDayPriceChange":0.001,"endDate":"2026-07-20"},{"id":"polymarket-0x6331a779482df72d904c3c1e12b6409ff836bc06f8c97945cba9b25ada2c605c","platform":"polymarket","title":"Will the Portland Trail Blazers win the 2026 NBA Finals?","description":"This market will resolve to “Yes” if the Portland Trail Blazers win the 2026 NBA Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NBA Finals based off the rules of the NBA.\n\nThe resolution source for this market will be information from the NBA.","keywords":["portland","trail","blazers","win","2026","nba","basketball","finals","blazers win","win the","resolve","yes","finals.","otherwise","no","becomes","impossible","team"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":447154.36833300005,"url":"https://polymarket.com/event/2026-nba-champion","category":"technology","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"553879","oneDayPriceChange":0.001,"endDate":"2026-07-01"},{"id":"polymarket-0xb6b3d7a2037b3faa7e1306d741840d453432902d73cc9a146a035e40271eae73","platform":"polymarket","title":"Will the San Antonio Spurs win the 2026 NBA Finals?","description":"This market will resolve to “Yes” if the San Antonio Spurs win the 2026 NBA Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NBA Finals based off the rules of the NBA.\n\nThe resolution source for this market will be information from the NBA.","keywords":["san","antonio","spurs","win","2026","nba","basketball","finals","spurs win","win the","resolve","yes","finals.","otherwise","no","becomes","impossible","team"],"yesPrice":0.14,"noPrice":0.86,"yesAsk":0.14,"noAsk":0.86,"volume24h":443284.8994329999,"url":"https://polymarket.com/event/2026-nba-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"553866","oneDayPriceChange":-0.001,"endDate":"2026-07-01"},{"id":"polymarket-0xc0be7b1f19f9b658778c2be7e6bc67596a00f347ab64392d0f5d387534c7c3b4","platform":"polymarket","title":"US x Iran ceasefire extended by April 21, 2026?","description":"This market will resolve to “Yes” if there is an official extension of the two-week ceasefire agreement between the United States and Iran announced on April 7, 2026, defined as a publicly announced and mutually agreed extension to the halt in direct military engagement between the United States and Iran, by the specified date, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nBoth extensions of the April 7 ceasefire and new agreements scheduled to take effect before or at the initial agreement's scheduled end will be considered extensions of the ceasefire agreement, provided there is no period during which no ceasefire is in effect.\n\nIf a qualifying agreement is officially reached before the resolution date, this market will resolve to “Yes,” regardless of whether the ceasefire extension ultimately takes effect. \n\nAn extension of the ceasefire agreement requires clear public confirmation from both the United States government and the government of Iran that they have agreed to halt military hostilities against one another for longer than the initially agreed two-week period, or for an official extension of the ceasefire agreement in place to be otherwise confirmed by an overwhelming consensus of media reporting.\n\nAny form of informal understanding, backchannel communication, de-escalation, or unilateral pause in hostilities without a confirmed agreement on a qualifying extension will not qualify. Similarly, newly agreed-upon humanitarian pauses, limited operational pauses, or temporary tactical stand-downs will not qualify.\n\nA newly agreed-upon broader peace deal will qualify if it includes a qualifying extension of the ceasefire agreement/halt in military hostilities. Agreements that outline future negotiations or de-escalation measures, but do not explicitly commit to extending the ceasefire, will not qualify.\n\nThis market’s resolution will be based on official statements from the United States government and the government of Iran. However, an overwhelming consensus of credible media reporting confirming that an official ceasefire extension agreement has been reached will suffice.","keywords":["iran","nuclear","sanctions","middle east","ceasefire","ukraine","russia","peace","conflict","extended","april","21","2026","resolve","yes","there","official","extension","two-week","agreement","between"],"yesPrice":0.25,"noPrice":0.75,"yesAsk":0.25,"noAsk":0.75,"volume24h":425817.4629599998,"url":"https://polymarket.com/event/us-x-iran-ceasefire-extended-by","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.707Z","numericId":"1918791","oneDayPriceChange":-0.36,"endDate":"2026-04-21"},{"id":"polymarket-0x6b44bd667fad6cb5b3b68d8bd1055a038c77d9176dbd51f123879797cc3368a7","platform":"polymarket","title":"Will the Cleveland Cavaliers win the 2026 NBA Finals?","description":"This market will resolve to “Yes” if the Cleveland Cavaliers win the 2026 NBA Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NBA Finals based off the rules of the NBA.\n\nThe resolution source for this market will be information from the NBA.","keywords":["cleveland","cavaliers","win","2026","nba","basketball","finals","cavaliers win","win the","resolve","yes","finals.","otherwise","no","becomes","impossible","team"],"yesPrice":0.04,"noPrice":0.95,"yesAsk":0.04,"noAsk":0.95,"volume24h":423234.31779999996,"url":"https://polymarket.com/event/2026-nba-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"553857","oneDayPriceChange":0.0055,"endDate":"2026-07-01"},{"id":"polymarket-0x713641f745d71f6ec61f906237ffca3c8583f251e49384429a63ceb0ccdb2d37","platform":"polymarket","title":"Will the New York Knicks win the 2026 NBA Finals?","description":"This market will resolve to “Yes” if the New York Knicks win the 2026 NBA Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NBA Finals based off the rules of the NBA.\n\nThe resolution source for this market will be information from the NBA.","keywords":["new","york","knicks","new york","nba","basketball","win","2026","finals","knicks win","win the","resolve","yes","finals.","otherwise","no","becomes","impossible","team"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":419220.7656389999,"url":"https://polymarket.com/event/2026-nba-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"553858","oneDayPriceChange":0.0005,"endDate":"2026-07-01"},{"id":"polymarket-0xf2e51acfbb6d0414dc2ace81b7dc2af7c165e443dcb91f6caa7aab6d6ab4f06d","platform":"polymarket","title":"Will Chelsea Clinton win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["chelsea","soccer","premier league","england","clinton","win","2028","democratic","presidential","nomination","clinton win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":418755.14311500004,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"559684","oneDayPriceChange":0.002,"endDate":"2028-11-07"},{"id":"polymarket-0x61a1278884fa70d68d4bcaaf72fad55bbdb063cac28c6947472ca91635fab10f","platform":"polymarket","title":"Will Katie Britt win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["katie","britt","win","2028","republican","presidential","nomination","britt win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":418525.36797799997,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"561992","oneDayPriceChange":0.001,"endDate":"2028-11-07"},{"id":"polymarket-0x23dbb60ade08c2664ac29488325afbc0136735bc7beb9180d9c0cb72620b0b13","platform":"polymarket","title":"Will Kevin Warsh be confirmed as Fed Chair?","description":"This market will resolve according to the next individual formally confirmed as Chair of the Federal Reserve.\n\nFormal confirmation as Chair of the Federal Reserve requires the Senate to confirm a nominee as Chair of the Federal Reserve. Recess appointments without Senate confirmation will not count. Senate confirmation of a listed individual as a member of the Federal Reserve Board of Governors will not alone qualify.\n\nIf no Senate confirmation for the position of Chair of the Federal Reserve has occurred by December 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThe primary resolution source for this market is official information from the U.S. Senate; however, a consensus of credible reporting may also be used.","keywords":["kevin","warsh","confirmed","fed","federal reserve","fomc","interest rates","chair","resolve","according","next","individual","formally","federal","reserve.","formal"],"yesPrice":0.94,"noPrice":0.06,"yesAsk":0.94,"noAsk":0.06,"volume24h":403966.48243600014,"url":"https://polymarket.com/event/who-will-be-confirmed-as-fed-chair","category":"economics","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"1500754","oneDayPriceChange":-0.001,"endDate":"2026-10-31"},{"id":"polymarket-0x7338d9dea0de820ed621abdff3de2d4b07a573bc0c1a6f7128941f4d0c5606e3","platform":"polymarket","title":"Will the Orlando Magic win the 2026 NBA Finals?","description":"This market will resolve to “Yes” if the Orlando Magic win the 2026 NBA Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NBA Finals based off the rules of the NBA.\n\nThe resolution source for this market will be information from the NBA.","keywords":["orlando","magic","win","2026","nba","basketball","finals","magic win","win the","resolve","yes","finals.","otherwise","no","becomes","impossible","team"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":372734.6261999998,"url":"https://polymarket.com/event/2026-nba-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"553864","oneDayPriceChange":0.005,"endDate":"2026-07-01"},{"id":"polymarket-0x9b6fef249040fd17e9c107955b37ac2c3e923509b6b0ff01cc463a331ddeb894","platform":"polymarket","title":"Will France win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["france","win","2026","fifa","soccer","world cup","world","cup","france win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.16,"noPrice":0.84,"yesAsk":0.16,"noAsk":0.84,"volume24h":358943.55021800013,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"558936","oneDayPriceChange":0.0025,"endDate":"2026-07-20"},{"id":"polymarket-0x789c947a9415600d30d56a4aae88d4111996679b0caed166d0c96242fdce92a2","platform":"polymarket","title":"Will the Iranian regime fall by May 31?","description":"This market will resolve to \"Yes\" if the Islamic Republic of Iran’s current ruling regime is overthrown, collapsed, or otherwise ceases to govern by May 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nThis requires a broad consensus of reporting indicating that core structures of the Islamic Republic (e.g. the office of the Supreme Leader, the Guardian Council, IRGC control under clerical authority) have been dissolved, incapacitated, or replaced by a fundamentally different governing system or otherwise lost de facto power over a majority of the population of Iran. This could occur via revolution, civil war, military coup, or voluntary abdication, but only qualifies if the Islamic Republic no longer exercises sovereign power.\n\nRoutine political events such as elections, reforms, or leadership succession do not qualify. Internal coups or power shifts that preserve the Islamic Republic’s core structures also do not qualify. Only a clear break in continuity—such as a new provisional government, revolutionary council, or constitution replacing the Islamic Republic will qualify.\n\nPartial loss of territory or challenges from rebel or exile groups will not qualify unless the Islamic Republic no longer administers the majority of the Iranian population within Iran. \n\nThe resolution source will be a consensus of credible reporting. ","keywords":["iranian","regime","fall","31","resolve","yes","islamic","republic","iran","nuclear","sanctions","middle east"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":357910.224641,"url":"https://polymarket.com/event/will-the-iranian-regime-fall-by-may-31","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"1707932","oneDayPriceChange":-0.004,"endDate":"2026-05-31"},{"id":"polymarket-0x7e90e1f82ed35360962c86af29eaab77a6b199ed3748f99bc7bdc5cdcda39808","platform":"polymarket","title":"Will the price of Bitcoin be above $66,000 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["bitcoin","btc","crypto","above","66000","april","21","be above","above 66000","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":351313.1668599999,"url":"https://polymarket.com/event/bitcoin-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"1981815","oneDayPriceChange":0.002,"endDate":"2026-04-21"},{"id":"polymarket-0xa573400b588079857899fce1e5a68da2d086f63fd35cbdd626df397e19e9995e","platform":"polymarket","title":"US x Iran diplomatic meeting by April 22, 2026?","description":"This market will resolve to \"Yes\" if there is a diplomatic meeting between representatives of the United States and Iran by the listed date, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nA diplomatic meeting refers to a deliberate meeting between representatives of the listed countries who are acting in an official capacity and are authorized to engage in negotiation or diplomacy regarding US-Iranian relations on behalf of their governments. Meetings conducted indirectly, for example, through designated mediators, facilitators, or interlocutors acting with the knowledge and authorization of the relevant governments, will qualify. \n\nBrief greetings, chance encounters, or talks otherwise not deliberately aimed at diplomacy or negotiation will not count.\n\nThe meeting must be in-person (including indirect in-person meetings) and must be publicly acknowledged by either government or reported by a consensus of credible media. Remote meetings, phone calls, or other meetings where the relevant parties are not present will not count.\n\nThe resolution sources for this market will be official information from the governments of the United States and Iran, and a consensus of credible reporting.","keywords":["iran","nuclear","sanctions","middle east","diplomatic","meeting","april","22","2026","resolve","yes","there","between","representatives","united","states","listed"],"yesPrice":0.78,"noPrice":0.22,"yesAsk":0.78,"noAsk":0.22,"volume24h":350768.75281099975,"url":"https://polymarket.com/event/us-x-iran-diplomatic-meeting-by-329","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"1959319","oneDayPriceChange":0.125,"endDate":"2026-04-30"},{"id":"polymarket-0x24e67fb509df7efecc1840008153634d4852c0d2725d0a6c13f2e60beb2f2e2f","platform":"polymarket","title":"Will Joao Fonseca win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["joao","fonseca","win","2026","men's","french","open","fonseca win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":347119.34578599996,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"1087516","oneDayPriceChange":-0.0005,"endDate":"2026-06-07"},{"id":"polymarket-0x5e614739363bbfc399469102c600e4e8260032d41e59e0bc12ebc0e71231642d","platform":"polymarket","title":"Will Cezchia win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["cezchia","win","2026","fifa","soccer","world cup","world","cup","cezchia win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":343332.872944,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"558984","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0xf82397e36b76da50fa3df8e9337a4ce42438514dd0aeb95d293990438263a122","platform":"polymarket","title":"Will Elon Musk post 65-89 tweets from April 18 to April 20, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 18 12:00 PM ET to April 20, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","65-89","tweets","april","18","20","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":337043.4730989998,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-18-april-20","category":"other","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"1999913","oneDayPriceChange":-0.1745,"endDate":"2026-04-20"},{"id":"polymarket-0xc720fcfa9e29346a976902f87e0f0f3bdc31d43af501b4fdef4f1780a30dd359","platform":"polymarket","title":"Will Chris Murphy win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["chris","murphy","win","2028","democratic","presidential","nomination","murphy win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":333229.481483,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"559691","oneDayPriceChange":0.001,"endDate":"2028-11-07"},{"id":"polymarket-0x60084cd46b5b91797ad397f4c1ffb5d3fcec7c134b705d2796c0f571eedad3b7","platform":"polymarket","title":"Will Gustavo Bolívar win the 2026 Colombian presidential election?","description":"Colombia's presidential elections are scheduled for May 31, 2026, and a second round (if required) on June 21, 2026, in case no candidate secures more than 50% of the valid votes in the first round.\n\nThis market will resolve according to the listed candidate that wins this election. \n\nThis market includes any potential second round. If the result of this election isn't known by December 31, 2026, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["gustavo","bol","var","win","2026","colombian","presidential","election","var win","win the","presidential election","colombia's","elections","scheduled","31","second","round","required","june"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":329223.28,"url":"https://polymarket.com/event/colombia-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"569362","oneDayPriceChange":0,"endDate":"2026-06-21"},{"id":"polymarket-0x63f59b5dbf9407dbae6138f2abb5d99fcdcf5d1f8978ffd882b07c83c97eb9ae","platform":"polymarket","title":"Will the US confirm that aliens exist by April 30?","description":"This market will resolve to \"Yes\" if the President of the United States, any member of the Cabinet of the United States, any member of the Joint Chiefs of Staff, or any US federal agency definitively states that extraterrestrial life or technology exists by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nThe primary resolution source for this market will be official information from the government of the United States, however a consensus of credible reporting will also be used.","keywords":["confirm","aliens","exist","april","30","resolve","yes","president","united","states","member","cabinet","joint"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":323719.5839079988,"url":"https://polymarket.com/event/will-the-us-confirm-that-aliens-exist-before-2027","category":"other","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"2009849","oneDayPriceChange":-0.007,"endDate":"2026-04-30"},{"id":"polymarket-0xa6ddb7146f48a12dbf73456d654211b01d7493829932c31b7fe85d82120d338f","platform":"polymarket","title":"Iran x Israel/US conflict ends by April 30?","description":"This market will resolve to \"Yes\" if there is a continuous 14-day period without any qualifying military action between Iran, and Israel and the United States that begins at any time between market creation and the specified end date (ET). Otherwise, this market will resolve to \"No\". \n\nThe 14-day period may begin at any time between the creation of this market and the specified end date (ET), and must continue uninterrupted through 12:00 PM ET on the 14th calendar day after the strike is confirmed. \n\nA \"military action\" is defined as any use of force by Iran, or Israel and the United States against the other’s soil, or official embassies or consulates, that is either officially acknowledged by the acting government or confirmed through a clear consensus of credible reporting. \n\nThis includes, but is not limited to, airstrikes, naval attacks, and ground incursions. \n\nCyberattacks, sanctions, and diplomatic actions do not count. \n\nOnly actions by Iranian forces explicitly claimed by the Islamic Republic of Iran, or confirmed to have originated from Iranian territory will qualify as Iranian military actions. Attacks on Israel or the US by proxy forces (i.e. Hezbollah, Houthis, etc.) will not count.","keywords":["iran","nuclear","sanctions","middle east","israel","gaza","hamas","conflict","ends","april","30","resolve","yes","there","continuous","14-day","period","without","qualifying"],"yesPrice":0.93,"noPrice":0.07,"yesAsk":0.93,"noAsk":0.07,"volume24h":316766.0654219998,"url":"https://polymarket.com/event/iran-x-israelus-conflict-ends-by","category":"sports","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"1567747","oneDayPriceChange":0.12,"endDate":"2026-04-30"},{"id":"polymarket-0x9dd27666ad05dbe8ac5547e79d634fc306578b60b71f96ab4347f020b46e9413","platform":"polymarket","title":"Will Israel conduct military action against Iran by April 21, 2026?","description":"This market will resolve to \"Yes\" if Israel initiates a drone, missile, or air strike on Iranian soil between market creation and the listed date in Israel Time (GMT+3). Otherwise, this market will resolve to \"No\".\n\nFor the purposes of this market, a qualifying \"military action\" is defined as the use of aerial bombs, drones, or missiles (including cruise or ballistic missiles) launched by Israeli military forces that impact Iranian ground territory.\n\nA strike on any area within the terrestrial territory of Iran counts, including buffer zones.\n\nMissiles or drones that are intercepted and surface-to-air missile strikes will not be sufficient for a \"Yes\" resolution, regardless of whether they land on Iranian territory or cause damage.\n\nActions such as artillery fire, small arms fire, FPV or ATGM strikes, ground incursions, naval shelling, cyberattacks, or other operations conducted by Israeli ground operatives will not qualify.\n\nThe primary resolution source will be official government/military statements (Israeli or foreign), multilateral bodies (UN, etc.), or a consensus of credible reporting from major international media and national broadcasters/newspapers.\n\nIf the date/time of a strike cannot be confirmed by a consensus of credible reporting by the end of the third calendar date after this market's end date, it will resolve to \"No\" regardless of whether a strike was later confirmed to have taken place.","keywords":["israel","gaza","hamas","middle east","conduct","military","action","against","iran","nuclear","sanctions","april","21","2026","resolve","yes","initiates","drone","missile","air","strike","iranian"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":301238.375163,"url":"https://polymarket.com/event/israel-military-action-against-iran-by-167","category":"technology","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"1918467","oneDayPriceChange":-0.1125,"endDate":"2026-04-21"},{"id":"polymarket-0x0b4cc3b739e1dfe5d73274740e7308b6fb389c5af040c3a174923d928d134bee","platform":"polymarket","title":"Will Jesus Christ return before 2027?","description":"This market will resolve to \"Yes\" if The Second Coming of Jesus Christ occurs by December 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market will be a consensus of credible sources.","keywords":["jesus","christ","return","before","2027","return before","before 2027","resolve","yes","second","coming","occurs","december","31","2026"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":301156.805431,"url":"https://polymarket.com/event/will-jesus-christ-return-before-2027","category":"other","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"703258","oneDayPriceChange":0,"endDate":"2026-12-31"},{"id":"polymarket-0x0189df05ed7bf84d799213b01a79571e305c03b2ac5359cfbb3a323448ba20fa","platform":"polymarket","title":"Will Japan win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["japan","japanese","yen","nikkei","jpy","win","2026","fifa","soccer","world cup","world","cup","japan win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":300804.51043599995,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"558949","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0xce9a5fa30fe74e323b4a8f15afbb0b7a41a537aa880779ddf7dee22223b2f34a","platform":"polymarket","title":"Will Donald Trump win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["donald","trump","president","potus","administration","gop","republican","win","2028","presidential","election","donald trump","trump win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":299674.04875499994,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"561243","oneDayPriceChange":0.021,"endDate":"2028-11-07"},{"id":"polymarket-0xd9fb1184af0064e5e34b129f5b79afa5a17b7e32f2953ab05efed82315fee6d4","platform":"polymarket","title":"Will China invade Taiwan by end of 2026?","description":"This market will resolve to \"Yes\" if China commences a military offensive intended to establish control over any portion of the Republic of China (Taiwan) by December 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nTerritory under the administration of the Republic of China including any inhabited islands will qualify, however uninhabited islands will not qualify. \n\nThe resolution source for this market will be will be official confirmation by China, Taiwan, the United Nations, or any permanent member of the UN Security Council, however a consensus of credible reporting will also be used.","keywords":["china","chinese","prc","beijing","xi","invade","taiwan","semiconductors","tsmc","end","2026","resolve","yes","commences","military","offensive","intended","establish","control"],"yesPrice":0.09,"noPrice":0.91,"yesAsk":0.09,"noAsk":0.91,"volume24h":290498.428958,"url":"https://polymarket.com/event/will-china-invade-taiwan-before-2027","category":"technology","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"567621","oneDayPriceChange":-0.003,"endDate":"2026-12-31"},{"id":"polymarket-0x747dc809fb79e1b05be09c42d6179459a58de2ef3e40f02484a4e1260f741f75","platform":"polymarket","title":"Will the US confirm that aliens exist before 2027?","description":"This market will resolve to \"Yes\" if the President of the United States, any member of the Cabinet of the United States, any member of the Joint Chiefs of Staff, or any US federal agency definitively states that extraterrestrial life or technology exists by December 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nThe primary resolution source for this market will be official information from the government of the United States, however a consensus of credible reporting will also be used.","keywords":["confirm","aliens","exist","before","2027","exist before","before 2027","resolve","yes","president","united","states","member","cabinet","joint"],"yesPrice":0.21,"noPrice":0.79,"yesAsk":0.21,"noAsk":0.79,"volume24h":288462.340831,"url":"https://polymarket.com/event/will-the-us-confirm-that-aliens-exist-before-2027","category":"other","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"703257","oneDayPriceChange":-0.01,"endDate":"2026-12-31"},{"id":"polymarket-0xcb06319aa9e029904c93c1df7d10b7ce7d6aab2b25b8f661e0cf57ea048a1567","platform":"polymarket","title":"Will Atletico Madrid win the 2025–26 Champions League?","description":"This is a polymarket on whether the listed team will win the 2025–26 UEFA Champions League.\n\nThis market will resolve to \"Yes\" if the listed team is officially crowned the winner of the 2025–26 UEFA Champions League. Otherwise, it will resolve to \"No\".\n\nIf at any point it becomes impossible for the listed team to win the tournament (e.g. they are mathematically eliminated), the market will resolve to \"No\".\n\nIf the 2025–26 UEFA Champions League is canceled or not completed by October 1, 2026, this market will resolve to \"Other\".\n\nThe primary resolution source will be official information from UEFA Champions League (https://www.uefa.com/uefachampionsleague/). A consensus of credible reporting may also be used.","keywords":["atletico","madrid","win","2025","26","champions","league","madrid win","win the","champions league","soccer","football","europe","uefa","ucl","polymarket","listed","team","league.","resolve","yes","officially","crowned"],"yesPrice":0.12,"noPrice":0.88,"yesAsk":0.12,"noAsk":0.88,"volume24h":287503.1019870001,"url":"https://polymarket.com/event/uefa-champions-league-winner","category":"sports","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"566146","oneDayPriceChange":0.0035,"endDate":"2026-05-31"},{"id":"polymarket-0x4f3421fb2daf5cca7430ed8d8132463963081572d75434393a1808fdb8829fe8","platform":"polymarket","title":"Will Portugal win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["portugal","win","2026","fifa","soccer","world cup","world","cup","portugal win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.07,"noPrice":0.93,"yesAsk":0.07,"noAsk":0.93,"volume24h":285232.93518899987,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"558940","oneDayPriceChange":0.001,"endDate":"2026-07-20"},{"id":"polymarket-0x5e3c20633c3e65dd7afb3735c77fc48e1c30b3be8fb744caeab61e72a7ba5a9c","platform":"polymarket","title":"Will West Ham United FC win on 2026-04-20?","description":"In the upcoming game, scheduled for April 20, 2026\nIf West Ham United FC wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["west","ham","united","win","2026-04-20","fc win","win on","upcoming","game","scheduled","april","20","2026","wins","resolve"],"yesPrice":0.34,"noPrice":0.67,"yesAsk":0.34,"noAsk":0.67,"volume24h":284363.94831399946,"url":"https://polymarket.com/event/epl-cry-wes-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"1901399","oneDayPriceChange":0.02,"endDate":"2026-04-20"},{"id":"polymarket-0x5db999fad322cea2914535aae5517060c3f80ad6d8c0231cde2124a434d16846","platform":"polymarket","title":"Will the U.S. invade Iran before 2027?","description":"This market will resolve to \"Yes\" if the United States commences a military offensive intended to establish control over any portion of Iran by December 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nFor the purposes of this market, land de facto controlled by Iran or the United States as of November 4, 2025 12:00 PM ET, will be considered the sovereign territory of that country.\n\nThe resolution source for this market will be a consensus of credible sources.","keywords":["u.s.","invade","iran","nuclear","sanctions","middle east","before","2027","iran before","before 2027","resolve","yes","united","states","commences","military","offensive","intended"],"yesPrice":0.3,"noPrice":0.7,"yesAsk":0.3,"noAsk":0.7,"volume24h":276834.4102919997,"url":"https://polymarket.com/event/will-the-us-invade-iran-before-2027","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.708Z","numericId":"665374","oneDayPriceChange":-0.045,"endDate":"2026-12-31"},{"id":"polymarket-0xf0b456e03832562b588e1bc3e4193bcc62fb0b2a67c81049c8e24cc0c3c82604","platform":"polymarket","title":"Will Elon Musk post 320-339 tweets from April 14 to April 21, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 14 12:00 PM ET to April 21, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","320-339","tweets","april","14","21","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":273928.3251129999,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-14-april-21","category":"other","lastUpdated":"2026-04-20T19:49:45.709Z","numericId":"1943741","oneDayPriceChange":-0.01,"endDate":"2026-04-21"},{"id":"polymarket-0x5ed35234573264d10e23ca2c52e6a0ef6b5ba2a48b8619c4e31476f55a002422","platform":"polymarket","title":"Will Elon Musk post 90-114 tweets from April 18 to April 20, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 18 12:00 PM ET to April 20, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","90-114","tweets","april","18","20","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":272439.9012619998,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-18-april-20","category":"other","lastUpdated":"2026-04-20T19:49:45.709Z","numericId":"1999917","oneDayPriceChange":-0.022,"endDate":"2026-04-20"},{"id":"polymarket-0x9352c559e9648ab4cab236087b64ca85c5b7123a4c7d9d7d4efde4a39c18056f","platform":"polymarket","title":"Will the Iranian regime fall by June 30?","description":"This market will resolve to \"Yes\" if the Islamic Republic of Iran’s current ruling regime is overthrown, collapsed, or otherwise ceases to govern by June 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nThis requires a broad consensus of reporting indicating that core structures of the Islamic Republic (e.g. the office of the Supreme Leader, the Guardian Council, IRGC control under clerical authority) have been dissolved, incapacitated, or replaced by a fundamentally different governing system or otherwise lost de facto power over a majority of the population of Iran. This could occur via revolution, civil war, military coup, or voluntary abdication, but only qualifies if the Islamic Republic no longer exercises sovereign power.\n\nRoutine political events such as elections, reforms, or leadership succession do not qualify. Internal coups or power shifts that preserve the Islamic Republic’s core structures also do not qualify. Only a clear break in continuity—such as a new provisional government, revolutionary council, or constitution replacing the Islamic Republic will qualify.\n\nPartial loss of territory or challenges from rebel or exile groups will not qualify unless the Islamic Republic no longer administers the majority of the Iranian population within Iran. \n\nThe resolution source will be a consensus of credible reporting. ","keywords":["iranian","regime","fall","june","30","resolve","yes","islamic","republic","iran","nuclear","sanctions","middle east"],"yesPrice":0.07,"noPrice":0.93,"yesAsk":0.07,"noAsk":0.93,"volume24h":269761.42779499973,"url":"https://polymarket.com/event/will-the-iranian-regime-fall-by-june-30","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.709Z","numericId":"958443","oneDayPriceChange":-0.01,"endDate":"2026-06-30"},{"id":"polymarket-0xe13dbf203961425a8a5090eb0d94b03c08cda7424d7423699fd87794335eb765","platform":"polymarket","title":"Will Seo Young-kyo win the 2026 Seoul Mayoral Election","description":"The 2026 Seoul mayoral election is scheduled to take place on June 3, 2026 to elect the next mayor of Seoul.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nIf the result of this election isn't known by January 31, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the South Korean government, specifically the National Election Commission.","keywords":["seo","young-kyo","win","2026","seoul","mayoral","election","young-kyo win","win the","mayoral election","scheduled","take","place","june","3","elect","next","mayor"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":268354.109379,"url":"https://polymarket.com/event/2026-seoul-mayoral-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.709Z","numericId":"678938","oneDayPriceChange":0.001,"endDate":"2026-06-03"},{"id":"polymarket-0x99783ea5344cd6535f671ed6642006a66157cd8a2398aca295f1ab99aaf50e34","platform":"polymarket","title":"Will Lorenzo Musetti win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["lorenzo","musetti","win","2026","men's","french","open","musetti win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":265523.59083400003,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:45.709Z","numericId":"1087519","oneDayPriceChange":-0.0025,"endDate":"2026-06-07"},{"id":"polymarket-0x36db77c539bcc8c7bf0686c1b99f30c5a5eed1f53d3b3a27a071550c81f83701","platform":"polymarket","title":"Will Mark Kelly win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["mark","kelly","win","2028","democratic","presidential","nomination","kelly win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":265243.65461699996,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.709Z","numericId":"559668","oneDayPriceChange":0.001,"endDate":"2028-11-07"},{"id":"polymarket-0xe202539dfbeced92dc4112f134a205c80ca6cf4db32bd82f05b291c297219fd8","platform":"polymarket","title":"Will the Detroit Pistons win the 2026 NBA Finals?","description":"This market will resolve to “Yes” if the Detroit Pistons win the 2026 NBA Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NBA Finals based off the rules of the NBA.\n\nThe resolution source for this market will be information from the NBA.","keywords":["detroit","pistons","win","2026","nba","basketball","finals","pistons win","win the","resolve","yes","finals.","otherwise","no","becomes","impossible","team"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":264970.2075729994,"url":"https://polymarket.com/event/2026-nba-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.709Z","numericId":"553871","oneDayPriceChange":-0.006,"endDate":"2026-07-01"},{"id":"polymarket-0x0e4a0c937b8934c2475613b6322b3f8edc8dedc24762e01e42b0e6f87424a089","platform":"polymarket","title":"US x Iran permanent peace deal by May 31, 2026?","description":"This market will resolve to “Yes” if Iran and the United states agree to a permanent peace deal by the specified date, 11:59 PM ET. Otherwise, this market will resolve to “No”. \n\nA permanent peace deal refers to any agreement which explicitly indicates that military hostilities between the United States and Iran have ended or will permanently cease, or uses equivalent language clearly signaling a lasting end to military hostilities between the United States and Iran. Agreements that are explicitly temporary or which do not include a definitive agreement to end military hostilities between the US and Iran on a lasting basis (e.g. a temporary extension of the two-week ceasefire agreement announced on April 7, 2026), will not qualify.\n\nA qualifying agreement will be considered to have been established if either of the following conditions are met:\n\n- The United States and Iran each sign or formally adopt a written agreement (e.g. a treaty or multi-point agreement) which meets the above criteria.\n\n- Both the governments of the United States and Iran provide clear public confirmation that a qualifying agreement has been definitively established. Negotiations, statements of progress, or other statements which do not constitute a definitive announcement that a qualifying agreement has been reached will not count.\n\nThe primary resolution source for this market will be official information from the governments of the United States and Iran; however, a consensus of credible reporting may also be used.","keywords":["iran","nuclear","sanctions","middle east","permanent","peace","deal","31","2026","peace deal","ukraine","russia","peace agreement","ceasefire","resolve","yes","united","states","agree","specified","date","11"],"yesPrice":0.59,"noPrice":0.41,"yesAsk":0.59,"noAsk":0.41,"volume24h":263328.4351410001,"url":"https://polymarket.com/event/us-x-iran-permanent-peace-deal-by","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.709Z","numericId":"1919425","oneDayPriceChange":0.02,"endDate":"2026-05-31"},{"id":"polymarket-0xcfdb863cc93e4ed27168876ddb32b6582ea03554eff9dbd9258c37c901f9b240","platform":"polymarket","title":"Will Elon Musk post 40-64 tweets from April 18 to April 20, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 18 12:00 PM ET to April 20, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","40-64","tweets","april","18","20","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":253325.48991400003,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-18-april-20","category":"other","lastUpdated":"2026-04-20T19:49:45.709Z","numericId":"1999910","oneDayPriceChange":0.2995,"endDate":"2026-04-20"},{"id":"polymarket-0x819ae990aac5ebdf8f3093ec059946d98832f67edd13901df333d39f96b3db8a","platform":"polymarket","title":"Will Na Kyung-won win the 2026 Seoul Mayoral Election","description":"The 2026 Seoul mayoral election is scheduled to take place on June 3, 2026 to elect the next mayor of Seoul.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nIf the result of this election isn't known by January 31, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the South Korean government, specifically the National Election Commission.","keywords":["kyung-won","win","2026","seoul","mayoral","election","kyung-won win","win the","mayoral election","scheduled","take","place","june","3","elect","next","mayor"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":249648.39778900004,"url":"https://polymarket.com/event/2026-seoul-mayoral-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.709Z","numericId":"678930","oneDayPriceChange":0.001,"endDate":"2026-06-03"},{"id":"polymarket-0xfee07be730188c94cd3644ed6f107fa3ea2dfab9989ce8d39aeeae064766abe3","platform":"polymarket","title":"Will Jon Stewart win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["jon","stewart","win","2028","democratic","presidential","nomination","stewart win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":248055.80710700006,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.709Z","numericId":"559675","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x3acfa8763526158d5af232306cd9aec99b8d5476ac0130c31411595657b4579a","platform":"polymarket","title":"Will Elon Musk post 200-219 tweets from April 14 to April 21, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 14 12:00 PM ET to April 21, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","200-219","tweets","april","14","21","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.06,"noPrice":0.94,"yesAsk":0.06,"noAsk":0.94,"volume24h":245305.01719699986,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-14-april-21","category":"other","lastUpdated":"2026-04-20T19:49:45.709Z","numericId":"1943729","oneDayPriceChange":-0.119,"endDate":"2026-04-21"},{"id":"polymarket-0x7b52405ad0e0d31bfe970940b67d77f24ecedeab8a2361c11148c02a006e325c","platform":"polymarket","title":"Will Norway win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["norway","win","2026","fifa","soccer","world cup","world","cup","norway win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":239074.74028499995,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.709Z","numericId":"558951","oneDayPriceChange":0.002,"endDate":"2026-07-20"},{"id":"polymarket-0x1ffbda5218650465c26893fcda25ae3f9ff83833795097c2271d103a34b1c7e8","platform":"polymarket","title":"Will Elon Musk post 340-359 tweets from April 14 to April 21, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 14 12:00 PM ET to April 21, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","340-359","tweets","april","14","21","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":237569.54175299994,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-14-april-21","category":"other","lastUpdated":"2026-04-20T19:49:45.709Z","numericId":"1943742","oneDayPriceChange":-0.003,"endDate":"2026-04-21"},{"id":"polymarket-0x508c917d0ee4a7a5535e825c3f85ee47d27fc1e72f88475d88daa4877da2a9d0","platform":"polymarket","title":"Will the New York Jets win the 2027 NFL league championship?","description":"This market will resolve according to the team that wins the 2027 NFL league championship. \n\nIf at any point it becomes impossible for a listed team to win the 2027 NFL league championship per the rules of the NFL (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2027 NFL league championship game is cancelled, postponed after March 31, 2027 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from NFL (https://www.nfl.com/); however, a consensus of credible reporting may also be used.","keywords":["new","york","jets","win","2027","nfl","football","super bowl","league","championship","jets win","win the","resolve","according","team","wins","championship.","point","becomes","impossible"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":232141.34355499985,"url":"https://polymarket.com/event/big-game-champion-2027","category":"sports","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"1357395","oneDayPriceChange":0,"endDate":"2027-03-31"},{"id":"polymarket-0x1595b4818eeb1ea1e0bec5de6f057218e557feee9b405a0e930d290384fa1d16","platform":"polymarket","title":"Will Germany win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["germany","german","euro","bund","europe","win","2026","fifa","soccer","world cup","world","cup","germany win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.05,"noPrice":0.95,"yesAsk":0.05,"noAsk":0.95,"volume24h":214612.507912,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"558939","oneDayPriceChange":-0.001,"endDate":"2026-07-20"},{"id":"polymarket-0x3bc69cb672591e4fcd2ef856b64b219a906e15d4601b50066ac81a446574dfaf","platform":"polymarket","title":"Will Cape Verde win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["cape","verde","win","2026","fifa","soccer","world cup","world","cup","verde win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":207598.08300000004,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"558970","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0xe99cc59f32b10d23acf196d1a0e8264ea30fca198428acadd3464b06ff60e771","platform":"polymarket","title":"Will Colombia win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["colombia","win","2026","fifa","soccer","world cup","world","cup","colombia win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":201501.40177200007,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"558947","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0xa49fc89bfb87bb302bfc43567709850565161bdaed5bc506bff4b85fd3c5c2ee","platform":"polymarket","title":"Will the Phoenix Suns win the 2026 NBA Finals?","description":"This market will resolve to “Yes” if the Phoenix Suns win the 2026 NBA Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NBA Finals based off the rules of the NBA.\n\nThe resolution source for this market will be information from the NBA.","keywords":["phoenix","suns","win","2026","nba","basketball","finals","suns win","win the","resolve","yes","finals.","otherwise","no","becomes","impossible","team"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":197936.920886,"url":"https://polymarket.com/event/2026-nba-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"553877","oneDayPriceChange":0,"endDate":"2026-07-01"},{"id":"polymarket-0xf2cea45ec282af4f302d2ab85ede73678cd692ebf8c3ab6d52bfa5e19f44c553","platform":"polymarket","title":"Will Matt Gaetz win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["matt","gaetz","win","2028","republican","presidential","nomination","gaetz win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":197330.60809400005,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"561991","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x7b52405ad0e0d31bfe970940b67d77f24ecedeab8a2361c11148c02a006e325c","platform":"polymarket","title":"Will Norway win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["norway","win","2026","fifa","soccer","world cup","world","cup","norway win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":196110.549035,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"558951","oneDayPriceChange":0.001,"endDate":"2026-07-20"},{"id":"polymarket-0xd1747284d6048b2a3dcfbee489db405f36de18f9590197dd0e5c9f0c246bf050","platform":"polymarket","title":"Will Byron Donalds win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["byron","donalds","win","2028","republican","presidential","nomination","donalds win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":194917.47007999997,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"561986","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x965ebc5d79eb1ec02cad67245a44b9e45b33359018f013fb6cf81d5bbf7bcc8d","platform":"polymarket","title":"Will Uzbekistan win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["uzbekistan","win","2026","fifa","soccer","world cup","world","cup","uzbekistan win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":194850.348,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"558960","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x3367d22cd2a673014f1960742afdf8601040a8ad856dc0a98bd1a44ee99504e2","platform":"polymarket","title":"Will Ron DeSantis win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["ron","desantis","win","2028","presidential","election","desantis win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":191545.77329500017,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"561246","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xc586d15be76278848a26c761c2fcf70f8cebca71815cfab83e656ff5c6ec13a9","platform":"polymarket","title":"Will Ivanka Trump win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["ivanka","trump","president","potus","administration","gop","republican","win","2028","presidential","election","trump win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":189842.675536,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"561255","oneDayPriceChange":0.001,"endDate":"2028-11-07"},{"id":"polymarket-0x65307f30dce84ac35e41813035d3c04933da830dc4efbbb2fcdc4b282700ef3b","platform":"polymarket","title":"Will South Korea win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["south","korea","win","2026","fifa","soccer","world cup","world","cup","korea win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":188757.50728000002,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"558961","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x289568d555ec620ed6fa33c936c5f42649d3a2e30748a1daf7079f42453fbea4","platform":"polymarket","title":"Will Ivory Coast win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["ivory","coast","win","2026","fifa","soccer","world cup","world","cup","coast win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":187888.89599999995,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"558966","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0xda3350bc16ec1c54978a76eaae962efb8630a22bc00d296d769f15c2e51ecaf1","platform":"polymarket","title":"Will Croatia win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["croatia","win","eurovision","2026","croatia win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":187759.480466,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"842010","oneDayPriceChange":-0.002,"endDate":"2026-05-16"},{"id":"polymarket-0x939eeb2dea216749bd409bedde483c3f2bfb0e24d4f2d34461c0b21c6e91f010","platform":"polymarket","title":"Will Roy Cooper win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["roy","cooper","win","2028","democratic","presidential","nomination","cooper win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":186234.12640399995,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"559672","oneDayPriceChange":0.001,"endDate":"2028-11-07"},{"id":"polymarket-0x65414628f108533d689721c6b2576dd83da43644bcfd62506444f1591ef32c31","platform":"polymarket","title":"Will WTI Crude Oil (WTI) hit (HIGH) $100 in April?","description":"This market will resolve to \"Yes\" if, at any point between market creation and the final trading day during April 2026, any 1-minute candle for the Active Month of WTI Crude Oil futures has a final \"High\" price equal to or above the listed price. Otherwise, this market will resolve to \"No\".\n\nFor WTI futures, the active month refers to the nearest listed contract month. The active month changes at 6:00:00 PM ET at the start of the trading session two business days prior to that contract's last trading day, at which point the next listed contract becomes the active month.\n\nFor WTI Crude Oil (CL) futures, the last trading day is defined as three business days prior to the 25th calendar day of the month preceding the contract's delivery month (or four business days prior if the 25th calendar day is not a business day), consistent with CME contract specifications.\n\nOnly prices achieved during the applicable trading session for the underlying market will be considered. Under the standard schedule, trading is open from 6:00:00 PM ET Sunday through 5:00:00 PM ET Friday, with a daily break from 5:00:00 PM ET to 6:00:00 PM ET, except where modified by holiday or special-session hours as listed on Pyth.\n\nPrices will be used exactly as published by Pyth, without rounding.\n\nIf the Active Month contract does not trade at all during the listed time frame, this market will resolve to \"No\".\n\nIn the event of a contract specification change, feed change, or similar structural modification affecting the underlying market during the listed time frame, this market will resolve based on adjusted prices as displayed on Pyth.\n\nThe resolution source for this market is Pyth — specifically, the Active Month WTI Crude Oil futures \"High\" prices available at https://pythdata.app/explore?search=WTI, with the chart settings configured for 1-minute candles.\n\nHistorical 1-minute candles may be accessed by appending a Unix timestamp (seconds) to the Pyth chart URL using the \"t=\" parameter.\n\nIf the relevant Pyth data is unavailable due to a system outage, data failure, or other technical disruption that prevents verification of the required 1-minute candle data, the official daily high price published for the Active Month WTI Crude Oil (CL) futures contract by CME Group may be used to determine whether the listed price was reached during the applicable trading session.","keywords":["wti","oil","crude","energy","hit","high","100","april","wti hit","hit high","resolve","yes","point","between","creation","final","trading","day"],"yesPrice":0.35,"noPrice":0.65,"yesAsk":0.35,"noAsk":0.65,"volume24h":183667.5769459999,"url":"https://polymarket.com/event/what-price-will-wti-hit-in-april-2026","category":"climate","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"1980676","oneDayPriceChange":-0.095,"endDate":"2026-04-30"},{"id":"polymarket-0x22e7b5e35423e76842dd3a5e1a21d13793811080d5e7b2896d0c001bd5e97d54","platform":"polymarket","title":"Will the Oklahoma City Thunder win the 2026 NBA Finals?","description":"This market will resolve to “Yes” if the Oklahoma City Thunder win the 2026 NBA Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NBA Finals based off the rules of the NBA.\n\nThe resolution source for this market will be information from the NBA.","keywords":["oklahoma","city","thunder","win","2026","nba","basketball","finals","thunder win","win the","resolve","yes","finals.","otherwise","no","becomes","impossible","team"],"yesPrice":0.48,"noPrice":0.52,"yesAsk":0.48,"noAsk":0.52,"volume24h":182873.04816899996,"url":"https://polymarket.com/event/2026-nba-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"553856","oneDayPriceChange":0.01,"endDate":"2026-07-01"},{"id":"polymarket-0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1","platform":"polymarket","title":"Will Netherlands win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["netherlands","win","2026","fifa","soccer","world cup","world","cup","netherlands win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":180919.03542300005,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"crypto","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"558941","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x5d37825716832a4a54f89450932e89510f26cf4be59aeec3149d2c49e5fdf44d","platform":"polymarket","title":"Iran agrees to surrender enriched uranium stockpile by April 30, 2026?","description":"This market will resolve to \"Yes\" if Iran publicly agrees to surrender its enriched uranium stockpile by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nAn official pledge by Iran to surrender its enriched uranium stockpile will qualify for a “Yes” resolution whether as a unilateral announcement or part of an agreement with the U.S. or Israel.\n\nAn agreement by Iran to surrender any amount of its enriched uranium stockpile will count.\n\nTo qualify, Iran must publicly agree that its enriched uranium stockpile, or any portion thereof, will be transferred, shipped, or placed under the custody or control of any entity outside of Iran and its influence, excluding non-state armed groups or Iranian-aligned organizations (such as Hezbollah, the Houthis, or similar actors).\n\nAny agreement or pledge made before the resolution date of this market will qualify, regardless of if/when the agreement goes into effect.\n\nAn agreement by Iran to surrender its enriched uranium stockpile as a precondition of a more comprehensive peace process or deal will qualify, even if the agreement is not finalized or part of a formalized peace deal.\n\nAgreements to merely limit or cap the level or quality of enrichment—such as reducing enrichment to below weapons-grade thresholds—will not qualify.\n\nThe primary resolution source for this market will be a consensus of credible reporting.","keywords":["iran","nuclear","sanctions","middle east","agrees","surrender","enriched","uranium","stockpile","april","30","2026","resolve","yes","publicly","11","59","et.","otherwise","no"],"yesPrice":0.28,"noPrice":0.72,"yesAsk":0.28,"noAsk":0.72,"volume24h":180171.94436599984,"url":"https://polymarket.com/event/iran-agrees-to-surrender-enriched-uranium-stockpile-by","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"1731344","oneDayPriceChange":-0.0715,"endDate":"2026-04-30"},{"id":"polymarket-0xc510176cf39d73295354fc797d84b510d050b45d29d6c9735ee18cdbc4fd6463","platform":"polymarket","title":"Will Robert F. Kennedy Jr. win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["robert","kennedy","jr.","win","2028","republican","presidential","nomination","jr. win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":180041.251678,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"561984","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xbcacd5a055f5a9ced6f69f122216c073dd6987d08253fc07bbcc168fa5b81d55","platform":"polymarket","title":"US obtains Iranian enriched uranium by May 31?","description":"This market will resolve to “Yes” if the US government or military officially announces or confirms that it has gained possession of any quantity of enriched uranium previously controlled by Iran by May 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\n“Possession” means that the United States has actual physical custody or control of the enriched uranium, whether held within U.S. territory or elsewhere. Announcements of deals, agreements, commitments, or plans under which the United States would acquire possession of Iranian enriched uranium at a later time will not qualify.\n\nQualifying possession of Iranian enriched uranium may be acquired through any means, including through an agreed surrender or seizure.\n\nA widespread consensus of credible reporting that the United States has gained possession of Iranian enriched uranium will also qualify for a “Yes” resolution, even if the United States makes no formal announcement.\n\nThe primary resolution source for this market will be official information from the government of the United States; however, a widespread consensus of credible reporting may also be used.","keywords":["obtains","iranian","enriched","uranium","31","resolve","yes","government","military","officially","announces","confirms","gained"],"yesPrice":0.21,"noPrice":0.79,"yesAsk":0.21,"noAsk":0.79,"volume24h":180003.28575199994,"url":"https://polymarket.com/event/us-obtains-iranian-enriched-uranium-by","category":"technology","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"1808970","oneDayPriceChange":0.02,"endDate":"2026-05-31"},{"id":"polymarket-0x7876851632c295043c66536150a304cb785abdf712ba8489d298c6e6926be106","platform":"polymarket","title":"Will Uruguay win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["uruguay","win","2026","fifa","soccer","world cup","world","cup","uruguay win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":178507.2340560001,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"558944","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0xadcc77117c0cb77ef66d3009704119903cc73dc98cdbc21bb2a747969604e461","platform":"polymarket","title":"Will Crystal Palace FC vs. West Ham United FC end in a draw?","description":"In the upcoming game, scheduled for April 20, 2026\nIf the game ends in a draw, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve to \"Yes\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["crystal","palace","vs.","west","ham","united","end","draw","upcoming","game","scheduled","april","20","2026","ends","resolve"],"yesPrice":0.38,"noPrice":0.63,"yesAsk":0.38,"noAsk":0.63,"volume24h":178315.79863799992,"url":"https://polymarket.com/event/epl-cry-wes-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"1901389","oneDayPriceChange":0.09,"endDate":"2026-04-20"},{"id":"polymarket-0x649ad05a2868343271fe82ea692031d567ca1af652e3529788933157e94aa088","platform":"polymarket","title":"Will the Minnesota Timberwolves win the 2026 NBA Finals?","description":"This market will resolve to “Yes” if the Minnesota Timberwolves win the 2026 NBA Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NBA Finals based off the rules of the NBA.\n\nThe resolution source for this market will be information from the NBA.","keywords":["minnesota","timberwolves","win","2026","nba","basketball","finals","timberwolves win","win the","resolve","yes","finals.","otherwise","no","becomes","impossible","team"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":176731.16192199918,"url":"https://polymarket.com/event/2026-nba-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.753Z","numericId":"553859","oneDayPriceChange":-0.001,"endDate":"2026-07-01"},{"id":"polymarket-0x74dba1ce1ae9dd535414e85f2d9ab5ea32c0fb1acc9b7130b67e6d91217e24e1","platform":"polymarket","title":"Will Jon Ossoff win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["jon","ossoff","win","2028","democratic","presidential","nomination","ossoff win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.07,"noPrice":0.93,"yesAsk":0.07,"noAsk":0.93,"volume24h":176363.49743899997,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"559661","oneDayPriceChange":0.004,"endDate":"2028-11-07"},{"id":"polymarket-0x136f5a0c27a62cf9a2e40a4f48425e43d61b9571a53a2529372c0065f3218a73","platform":"polymarket","title":"Iran x Israel/US conflict ends by June 30?","description":"This market will resolve to \"Yes\" if there is a continuous 14-day period without any qualifying military action between Iran, and Israel and the United States that begins at any time between market creation and the specified end date (ET). Otherwise, this market will resolve to \"No\". \n\nThe 14-day period may begin at any time between the creation of this market and the specified end date (ET), and must continue uninterrupted through 12:00 PM ET on the 14th calendar day after the strike is confirmed. \n\nA \"military action\" is defined as any use of force by Iran, or Israel and the United States against the other’s soil, or official embassies or consulates, that is either officially acknowledged by the acting government or confirmed through a clear consensus of credible reporting. \n\nThis includes, but is not limited to, airstrikes, naval attacks, and ground incursions. \n\nCyberattacks, sanctions, and diplomatic actions do not count. \n\nOnly actions by Iranian forces explicitly claimed by the Islamic Republic of Iran, or confirmed to have originated from Iranian territory will qualify as Iranian military actions. Attacks on Israel or the US by proxy forces (i.e. Hezbollah, Houthis, etc.) will not count.","keywords":["iran","nuclear","sanctions","middle east","israel","gaza","hamas","conflict","ends","june","30","resolve","yes","there","continuous","14-day","period","without","qualifying"],"yesPrice":0.97,"noPrice":0.03,"yesAsk":0.97,"noAsk":0.03,"volume24h":176329.32265400002,"url":"https://polymarket.com/event/iran-x-israelus-conflict-ends-by","category":"sports","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"1484915","oneDayPriceChange":0.0715,"endDate":"2026-06-30"},{"id":"polymarket-0xfda648d24cdad32dfe959195bd75ef4c81fbea5130eb6c7a4a0c18607a11ce63","platform":"polymarket","title":"Will the Atlanta Hawks win the 2026 NBA Finals?","description":"This market will resolve to “Yes” if the Atlanta Hawks win the 2026 NBA Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NBA Finals based off the rules of the NBA.\n\nThe resolution source for this market will be information from the NBA.","keywords":["atlanta","hawks","win","2026","nba","basketball","finals","hawks win","win the","resolve","yes","finals.","otherwise","no","becomes","impossible","team"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":176090.11131500077,"url":"https://polymarket.com/event/2026-nba-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"553881","oneDayPriceChange":0.001,"endDate":"2026-07-01"},{"id":"polymarket-0x1dd5f687b0f7aaa76ac2d2f2ea328ed825902e835a44cb4fa22f6c89848c26fb","platform":"polymarket","title":"Will the Carolina Panthers win the 2027 NFL league championship?","description":"This market will resolve according to the team that wins the 2027 NFL league championship. \n\nIf at any point it becomes impossible for a listed team to win the 2027 NFL league championship per the rules of the NFL (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2027 NFL league championship game is cancelled, postponed after March 31, 2027 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from NFL (https://www.nfl.com/); however, a consensus of credible reporting may also be used.","keywords":["carolina","panthers","win","2027","nfl","football","super bowl","league","championship","panthers win","win the","resolve","according","team","wins","championship.","point","becomes","impossible"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":175207.1132020003,"url":"https://polymarket.com/event/big-game-champion-2027","category":"sports","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"1357375","oneDayPriceChange":0,"endDate":"2027-03-31"},{"id":"polymarket-0xab36a39b0e597fc0b03dbc8af5c788b03841c4747508509418a767c60726c979","platform":"polymarket","title":"Will Elon Musk post 300-319 tweets from April 14 to April 21, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 14 12:00 PM ET to April 21, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","300-319","tweets","april","14","21","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":172454.60998399995,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-14-april-21","category":"other","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"1943739","oneDayPriceChange":-0.0145,"endDate":"2026-04-21"},{"id":"polymarket-0x30cfb887558b20373a984da60c372fe5a90c0296aa6d8bb413a8aa7543846da2","platform":"polymarket","title":"Will Bernie Sanders win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["bernie","sanders","win","2028","democratic","presidential","nomination","sanders win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":172132.16833,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"559679","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xd4e2ae25b9c0f067161c0a0d384a4e657b7095a95befb569c72a926ec6577c53","platform":"polymarket","title":"Will Bitcoin dip to $45,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final Low price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT Low prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","dip","45000","april","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":171990.103961,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"1823783","oneDayPriceChange":-0.003,"endDate":"2026-05-01"},{"id":"polymarket-0x375409bc5eeeff961e82b479caeccc20f33d15738e5bce1186d628aa3d9dfb1f","platform":"polymarket","title":"Will England win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["england","win","2026","fifa","soccer","world cup","world","cup","england win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.11,"noPrice":0.89,"yesAsk":0.11,"noAsk":0.89,"volume24h":171680.4489350001,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"558935","oneDayPriceChange":0.001,"endDate":"2026-07-20"},{"id":"polymarket-0x675bba4df50fd123f7fbfbafa67e9b75f4092d85ce0f9148ce78fc945964c856","platform":"polymarket","title":"Will Paraguay win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["paraguay","win","2026","fifa","soccer","world cup","world","cup","paraguay win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":169130.46499999997,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"558956","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x0c49acf1da62df0eaba8c74a2c1c16c870b399edf533d26e05c09b4d150b04dd","platform":"polymarket","title":"Will WTI Crude Oil (WTI) hit (LOW) $60 in April?","description":"This market will resolve to \"Yes\" if, at any point during April 2026, any 1-minute candle for the Active Month of WTI Crude Oil futures has a final \"Low\" price equal to or below the listed price. Otherwise, this market will resolve to \"No\".\n\nFor WTI futures, the active month refers to the nearest listed contract month. The active month changes at 6:00:00 PM ET at the start of the trading session two business days prior to that contract's last trading day, at which point the next listed contract becomes the active month.\n\nFor WTI Crude Oil (CL) futures, the last trading day is defined as three business days prior to the 25th calendar day of the month preceding the contract's delivery month (or four business days prior if the 25th calendar day is not a business day), consistent with CME contract specifications.\n\nOnly prices achieved during the applicable trading session for the underlying market will be considered. Under the standard schedule, trading is open from 6:00:00 PM ET Sunday through 5:00:00 PM ET Friday, with a daily break from 5:00:00 PM ET to 6:00:00 PM ET, except where modified by holiday or special-session hours as listed on Pyth.\n\nPrices will be used exactly as published by Pyth, without rounding.\n\nIf the Active Month contract does not trade at all during the listed time frame, this market will resolve to \"No\".\n\nIn the event of a contract specification change, feed change, or similar structural modification affecting the underlying market during the listed time frame, this market will resolve based on adjusted prices as displayed on Pyth.\n\nThe resolution source for this market is Pyth — specifically, the Active Month WTI Crude Oil futures \"Low\" prices available at https://pythdata.app/explore?search=WTI, with the chart settings configured for 1-minute candles.\n\nHistorical 1-minute candles may be accessed by appending a Unix timestamp (seconds) to the Pyth chart URL using the \"t=\" parameter.\n\nIf the relevant Pyth data is unavailable due to a system outage, data failure, or other technical disruption that prevents verification of the required 1-minute candle data, the official daily low price published for the Active Month WTI Crude Oil (CL) futures contract by CME Group may be used to determine whether the listed price was reached during the applicable trading session.","keywords":["wti","oil","crude","energy","hit","low","60","april","wti hit","hit low","resolve","yes","point","during","2026","1-minute","candle","active"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":168477.92254499998,"url":"https://polymarket.com/event/what-price-will-wti-hit-in-april-2026","category":"climate","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"1712303","oneDayPriceChange":0.0045,"endDate":"2026-04-30"},{"id":"polymarket-0xd0e2e14b101cd9fa15f9e264448f759d768ec89c0e307d9b62543526f1cd002e","platform":"polymarket","title":"Will WTI Crude Oil (WTI) hit (LOW) $75 in April?","description":"This market will resolve to \"Yes\" if, at any point between market creation and the final trading day during April 2026, any 1-minute candle for the Active Month of WTI Crude Oil futures has a final \"Low\" price equal to or below the listed price. Otherwise, this market will resolve to \"No\".\n\nFor WTI futures, the active month refers to the nearest listed contract month. The active month changes at 6:00:00 PM ET at the start of the trading session two business days prior to that contract's last trading day, at which point the next listed contract becomes the active month.\n\nFor WTI Crude Oil (CL) futures, the last trading day is defined as three business days prior to the 25th calendar day of the month preceding the contract's delivery month (or four business days prior if the 25th calendar day is not a business day), consistent with CME contract specifications.\n\nOnly prices achieved during the applicable trading session for the underlying market will be considered. Under the standard schedule, trading is open from 6:00:00 PM ET Sunday through 5:00:00 PM ET Friday, with a daily break from 5:00:00 PM ET to 6:00:00 PM ET, except where modified by holiday or special-session hours as listed on Pyth.\n\nPrices will be used exactly as published by Pyth, without rounding.\n\nIf the Active Month contract does not trade at all during the listed time frame, this market will resolve to \"No\".\n\nIn the event of a contract specification change, feed change, or similar structural modification affecting the underlying market during the listed time frame, this market will resolve based on adjusted prices as displayed on Pyth.\n\nThe resolution source for this market is Pyth — specifically, the Active Month WTI Crude Oil futures \"Low\" prices available at https://pythdata.app/explore?search=WTI, with the chart settings configured for 1-minute candles.\n\nHistorical 1-minute candles may be accessed by appending a Unix timestamp (seconds) to the Pyth chart URL using the \"t=\" parameter.\n\nIf the relevant Pyth data is unavailable due to a system outage, data failure, or other technical disruption that prevents verification of the required 1-minute candle data, the official daily low price published for the Active Month WTI Crude Oil (CL) futures contract by CME Group may be used to determine whether the listed price was reached during the applicable trading session.","keywords":["wti","oil","crude","energy","hit","low","75","april","wti hit","hit low","resolve","yes","point","between","creation","final","trading","day"],"yesPrice":0.28,"noPrice":0.72,"yesAsk":0.28,"noAsk":0.72,"volume24h":166839.94639499998,"url":"https://polymarket.com/event/what-price-will-wti-hit-in-april-2026","category":"climate","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"1929111","oneDayPriceChange":0,"endDate":"2026-04-30"},{"id":"polymarket-0x46dbd48d6bde5b81edb480e0f676a2cdda6c6b592c4d86a9367c7ad5a9870195","platform":"polymarket","title":"Will Liz Cheney win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["liz","cheney","win","2028","democratic","presidential","nomination","cheney win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":166561.45615199994,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"559678","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x4e65282819c98c6aed529f357fbf5983b1ae9407a3c25bd50fe97b2906df68f9","platform":"polymarket","title":"Will the Denver Nuggets win the 2026 NBA Finals?","description":"This market will resolve to “Yes” if the Denver Nuggets win the 2026 NBA Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NBA Finals based off the rules of the NBA.\n\nThe resolution source for this market will be information from the NBA.","keywords":["denver","nuggets","win","2026","nba","basketball","finals","nuggets win","win the","resolve","yes","finals.","otherwise","no","becomes","impossible","team"],"yesPrice":0.09,"noPrice":0.92,"yesAsk":0.09,"noAsk":0.92,"volume24h":165910.59040000004,"url":"https://polymarket.com/event/2026-nba-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"553865","oneDayPriceChange":-0.01,"endDate":"2026-07-01"},{"id":"polymarket-0xbce6698c9a61376c0709a2a724a9cf0dd0236d8dea882533073b6bb062efbee0","platform":"polymarket","title":"Will Bosnia-Herzegovina win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["bosnia-herzegovina","win","2026","fifa","soccer","world cup","world","cup","bosnia-herzegovina win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":165810.75933199993,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"558983","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x19b2fe5579e5d44146b476103233ad818726393efc4b29649229e4302f145fc6","platform":"polymarket","title":"Will Ethereum reach $4,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for ETH/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final High price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the ETH/USDT High prices available at https://www.binance.com/en/trade/ETH_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance ETH/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["ethereum","eth","crypto","reach","4000","april","ethereum reach","reach 4000","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":165444.01700000002,"url":"https://polymarket.com/event/what-price-will-ethereum-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"1823789","oneDayPriceChange":0,"endDate":"2026-05-01"},{"id":"polymarket-0xaeea5f917fc5746387b5f9c0a4263dba035dbb3f0ac6ad72bf92183d21e26739","platform":"polymarket","title":"Russia x Ukraine ceasefire by end of 2026?","description":"This market will resolve to \"Yes\" if there is an official ceasefire agreement, defined as a publicly announced and mutually agreed halt in military engagement, between Russia and Ukraine by December 31, 2026, 11:59 PM ET.\n\nIf the agreement is officially reached before the resolution date, this market will resolve to \"Yes,\" regardless of whether the ceasefire officially starts afterward.\n\nOnly ceasefires that constitute a general pause in the conflict will qualify. Ceasefires that only apply to energy infrastructure, the Black Sea, or other similar agreements will not qualify.\n\nAny form of informal agreement will not be considered an official ceasefire. Humanitarian pauses will not count toward the resolution of this market.\n\nThis market's resolution will be based on official announcements from both Russia and Ukraine; however, a wide consensus of credible media reporting stating an official ceasefire agreement between Russia and Ukraine has been reached will suffice.","keywords":["russia","ukraine","war","nato","zelensky","ceasefire","peace","conflict","end","2026","resolve","yes","there","official","agreement","defined","publicly","announced"],"yesPrice":0.29,"noPrice":0.71,"yesAsk":0.29,"noAsk":0.71,"volume24h":163911.64509899996,"url":"https://polymarket.com/event/russia-x-ukraine-ceasefire-before-2027","category":"technology","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"567687","oneDayPriceChange":-0.02,"endDate":"2026-12-31"},{"id":"polymarket-0x23481b811978194fa175143ed7cd8d0000878ca59c408fd552e33535f7aa771e","platform":"polymarket","title":"Will Donald Trump Jr. win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["donald","trump","president","potus","administration","gop","republican","jr.","win","2028","presidential","election","donald trump","jr. win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":163806.92317999993,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"561244","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x4a9d58d4da874e26708f5bdb014eb07a06aeebb927068d169d43831595386557","platform":"polymarket","title":"Will Donald Trump Jr. win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["donald","trump","president","potus","administration","gop","republican","jr.","win","2028","presidential","nomination","donald trump","jr. win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":162722.89874099995,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"561978","oneDayPriceChange":0.002,"endDate":"2028-11-07"},{"id":"polymarket-0x37a6de1b21803e5f3fb1965116218215d79963af4f7e51659696366267a63a03","platform":"polymarket","title":"Will Morocco win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["morocco","win","2026","fifa","soccer","world cup","world","cup","morocco win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":162028.78809600003,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"558963","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0xa0b56d7e621c7cbcfa47fe1a9c24f3409e189180fd6bda55b7a8113129839afc","platform":"polymarket","title":"Will China invade Taiwan by June 30, 2026?","description":"This market will resolve to \"Yes\" if China commences a military offensive intended to establish control over any portion of the Republic of China (Taiwan) by June 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nTerritory under the administration of the Republic of China, including any inhabited islands, will qualify; however, uninhabited islands will not qualify. \n\nThe resolution source for this market will be official confirmation by China, Taiwan, the United Nations, or any permanent member of the UN Security Council; however, a consensus of credible reporting will also be used.","keywords":["china","chinese","prc","beijing","xi","invade","taiwan","semiconductors","tsmc","june","30","2026","resolve","yes","commences","military","offensive","intended","establish","control"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":160142.60962899996,"url":"https://polymarket.com/event/will-china-invade-taiwan-by-june-30-2026","category":"technology","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"956590","oneDayPriceChange":-0.003,"endDate":"2026-06-30"},{"id":"polymarket-0xe6ca9df9502600d4f652a725babeff09cd2947974d18351c18a3ba86cc985c50","platform":"polymarket","title":"Will Bitcoin reach $90,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final High price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT High prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","reach","90000","april","bitcoin reach","reach 90000","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":157095.21177399988,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"1823774","oneDayPriceChange":-0.002,"endDate":"2026-05-01"},{"id":"polymarket-0x0c4cd2055d6ea89354ffddc55d6dbcef9355748112ea952fc925f3db6a5c457f","platform":"polymarket","title":"Will Argentina win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["argentina","win","2026","fifa","soccer","world cup","world","cup","argentina win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.09,"noPrice":0.91,"yesAsk":0.09,"noAsk":0.91,"volume24h":155403.76354499997,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"558938","oneDayPriceChange":0.001,"endDate":"2026-07-20"},{"id":"polymarket-0x7412d284c8f63791fec807f9b1f61c6fe61163621775a3dc8686cd2575272abe","platform":"polymarket","title":"Will Egypt win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["egypt","win","2026","fifa","soccer","world cup","world","cup","egypt win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":154749.62027799993,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"558968","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x6ccebbc57547f8b777aa4ef70a452bb5034055d183131a9b6db47fd8d0777921","platform":"polymarket","title":"Will Michel Barnier win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["michel","barnier","win","2027","french","presidential","election","barnier win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":151586.06087000002,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"679039","oneDayPriceChange":0.001,"endDate":"2027-04-30"},{"id":"polymarket-0xfa59099fbda1e0f0058ed3cbd57e939fe90ab6d9b57d53bd488bcadf75c191d4","platform":"polymarket","title":"Trump announces end of military operations against Iran by April 30th?","description":"This market will resolve to \"Yes\" if President Trump, the US government, or the military publicly and officially announce that their military operations against Iran, initiated on February 28, 2026, have concluded by the listed date (ET). Otherwise, this market will resolve to “No”.\n\nQualifying statements must clearly indicate that the operation has ended. Informal announcements, statements from unnamed sources or leaks will not qualify. \n\nWritten public statements from Donald Trump (e.g. posts from his personal Truth Social account), will count. Videos posted on his social media accounts will also qualify for a \"Yes\" resolution.\n\nThe primary resolution source for this market will be official statements from the US government and/or its official representatives; however, a consensus of credible reporting may also be used.","keywords":["trump","president","potus","administration","gop","republican","announces","end","military","operations","against","iran","nuclear","sanctions","middle east","april","30th","resolve","yes","government","publicly","officially","announce","initiated","february"],"yesPrice":0.35,"noPrice":0.65,"yesAsk":0.35,"noAsk":0.65,"volume24h":151173.88356599995,"url":"https://polymarket.com/event/trump-announces-end-of-military-operations-against-iran-by","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.754Z","numericId":"1517835","oneDayPriceChange":-0.03,"endDate":"2026-04-30"},{"id":"polymarket-0x7976b8dbacf9077eb1453a62bcefd6ab2df199acd28aad276ff0d920d6992892","platform":"polymarket","title":"Will Spain win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["spain","win","2026","fifa","soccer","world cup","world","cup","spain win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.16,"noPrice":0.84,"yesAsk":0.16,"noAsk":0.84,"volume24h":150834.4860810002,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"technology","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"558934","oneDayPriceChange":0.001,"endDate":"2026-07-20"},{"id":"polymarket-0x23408daff185f6c89d91bd279ce97142c573454277d72ae882a9d9fd1ae79af4","platform":"polymarket","title":"Iran x Israel/US conflict ends by December 31?","description":"This market will resolve to \"Yes\" if there is a continuous 14-day period without any qualifying military action between Iran, and Israel and the United States that begins at any time between market creation and the specified end date (ET). Otherwise, this market will resolve to \"No\". \n\nThe 14-day period may begin at any time between the creation of this market and the specified end date (ET), and must continue uninterrupted through 12:00 PM ET on the 14th calendar day after the strike is confirmed. \n\nA \"military action\" is defined as any use of force by Iran, or Israel and the United States against the other’s soil, or official embassies or consulates, that is either officially acknowledged by the acting government or confirmed through a clear consensus of credible reporting. \n\nThis includes, but is not limited to, airstrikes, naval attacks, and ground incursions. \n\nCyberattacks, sanctions, and diplomatic actions do not count. \n\nOnly actions by Iranian forces explicitly claimed by the Islamic Republic of Iran, or confirmed to have originated from Iranian territory will qualify as Iranian military actions. Attacks on Israel or the US by proxy forces (i.e. Hezbollah, Houthis, etc.) will not count.","keywords":["iran","nuclear","sanctions","middle east","israel","gaza","hamas","conflict","ends","december","31","resolve","yes","there","continuous","14-day","period","without","qualifying"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":150460.329142,"url":"https://polymarket.com/event/iran-x-israelus-conflict-ends-by","category":"sports","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"1571571","oneDayPriceChange":0.023,"endDate":"2026-06-30"},{"id":"polymarket-0xc62b78f7a1b56a4e2cc713a0633fe4cd2a6a5dce6cd3b4eec0bd292a6cbdff71","platform":"polymarket","title":"Will Lance Stroll be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["lance","stroll","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":149393.56700000007,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"898418","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x683b0254bde8d1ef08206953015629f25b9869d9770807baab939f6aaba4ae5c","platform":"polymarket","title":"Will Villarreal win the 2025–26 La Liga?","description":"This is a polymarket on whether the listed club will win the 2025–26 La Liga.\n\nThis market will resolve to \"Yes\" if the listed club is officially crowned the winner of the 2025–26 La Liga. Otherwise, it will resolve to \"No\".\n\nIf at any point it becomes impossible for the listed club to win the league (e.g. they are mathematically eliminated), the market will resolve to \"No\".\n\nIf the 2025–26 La Liga season is canceled or not completed by October 1, 2026, this market will resolve to \"Other\".\n\nThe primary resolution source will be official information from La Liga. A consensus of credible reporting may also be used.","keywords":["villarreal","win","2025","26","liga","villarreal win","win the","la liga","soccer","football","spain","polymarket","listed","club","liga.","resolve","yes","officially","crowned"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":148547.20820199995,"url":"https://polymarket.com/event/la-liga-winner-114","category":"other","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"566230","oneDayPriceChange":-0.001,"endDate":"2026-05-30"},{"id":"polymarket-0x07db61e5a466a01a5c8612c88a01758cdcf9e16e056cfa3b5d8bc9c3b1af7701","platform":"polymarket","title":"Will Moldova win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["moldova","win","eurovision","2026","moldova win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":148015.86779100003,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"842026","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0xf1c08b022fcabf38370a0759e4d69f9c5064bf36730a1df941113eb422c46e14","platform":"polymarket","title":"Will Elon Musk post 240-259 tweets from April 14 to April 21, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 14 12:00 PM ET to April 21, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","240-259","tweets","april","14","21","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.2,"noPrice":0.8,"yesAsk":0.2,"noAsk":0.8,"volume24h":143208.84310200022,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-14-april-21","category":"other","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"1943734","oneDayPriceChange":-0.1,"endDate":"2026-04-21"},{"id":"polymarket-0x5f3b3456b2d6ef0d6f15d7492162725057be78d738d2465456e2835f1d89046c","platform":"polymarket","title":"Will Pete Hegseth win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["pete","hegseth","win","2028","republican","presidential","nomination","hegseth win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":142202.22887199998,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"crypto","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"562008","oneDayPriceChange":0.001,"endDate":"2028-11-07"},{"id":"polymarket-0x30d55d8124ee1e12dabe89201badc45669b81dff69e4ce44d961f32878ec178a","platform":"polymarket","title":"Will Brazil win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["brazil","win","2026","fifa","soccer","world cup","world","cup","brazil win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.08,"noPrice":0.92,"yesAsk":0.08,"noAsk":0.92,"volume24h":140829.58981799995,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"558937","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x14fd8ab261d14215058b77a9541a5013ccc3d3eb677276a9de54445a31acd194","platform":"polymarket","title":"Will Judy Shelton be confirmed as Fed Chair?","description":"This market will resolve according to the next individual formally confirmed as Chair of the Federal Reserve.\n\nFormal confirmation as Chair of the Federal Reserve requires the Senate to confirm a nominee as Chair of the Federal Reserve. Recess appointments without Senate confirmation will not count. Senate confirmation of a listed individual as a member of the Federal Reserve Board of Governors will not alone qualify.\n\nIf no Senate confirmation for the position of Chair of the Federal Reserve has occurred by December 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThe primary resolution source for this market is official information from the U.S. Senate; however, a consensus of credible reporting may also be used.","keywords":["judy","shelton","confirmed","fed","federal reserve","fomc","interest rates","chair","resolve","according","next","individual","formally","federal","reserve.","formal"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":140232.41752499974,"url":"https://polymarket.com/event/who-will-be-confirmed-as-fed-chair","category":"economics","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"1500755","oneDayPriceChange":0.005,"endDate":"2026-10-31"},{"id":"polymarket-0xfb1835b887c33862f5749c619e612d1244ab6e66115f0ef43d373485dc3a1573","platform":"polymarket","title":"Will Manchester City win the 2025–26 English Premier League?","description":"This is a polymarket on whether the listed club will win the 2025–26 English Premier League.\n\nThis market will resolve to \"Yes\" if the listed club is officially crowned the winner of the 2025–26 English Premier League. Otherwise, it will resolve to \"No\".\n\nIf at any point it becomes impossible for the listed club to win the league (e.g. they are mathematically eliminated), the market will resolve to \"No\".\n\nIf the 2025–26 English Premier League season is canceled or not completed by October 1, 2026, this market will resolve to \"Other\".\n\nThe primary resolution source will be official information from the English Premier League. A consensus of credible reporting may also be used.","keywords":["manchester","city","win","2025","26","english","premier","league","manchester city","man city","soccer","premier league","champions league","city win","win the","football","england","epl","polymarket","listed","club","league.","resolve","yes","officially","crowned"],"yesPrice":0.57,"noPrice":0.43,"yesAsk":0.57,"noAsk":0.43,"volume24h":140082.58862900012,"url":"https://polymarket.com/event/english-premier-league-winner","category":"sports","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"566188","oneDayPriceChange":0,"endDate":"2026-05-27"},{"id":"polymarket-0xf9f0965a3bd704ad9c184851242606ad35a4ffe733febf5074d4fbcc59d52eb8","platform":"polymarket","title":"US x Iran diplomatic meeting by April 30, 2026?","description":"This market will resolve to \"Yes\" if there is a diplomatic meeting between representatives of the United States and Iran by the listed date, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nA diplomatic meeting refers to a deliberate meeting between representatives of the listed countries who are acting in an official capacity and are authorized to engage in negotiation or diplomacy regarding US-Iranian relations on behalf of their governments. Meetings conducted indirectly, for example, through designated mediators, facilitators, or interlocutors acting with the knowledge and authorization of the relevant governments, will qualify. \n\nBrief greetings, chance encounters, or talks otherwise not deliberately aimed at diplomacy or negotiation will not count.\n\nThe meeting must be in-person (including indirect in-person meetings) and must be publicly acknowledged by either government or reported by a consensus of credible media. Remote meetings, phone calls, or other meetings where the relevant parties are not present will not count.\n\nThe resolution sources for this market will be official information from the governments of the United States and Iran, and a consensus of credible reporting.","keywords":["iran","nuclear","sanctions","middle east","diplomatic","meeting","april","30","2026","resolve","yes","there","between","representatives","united","states","listed"],"yesPrice":0.93,"noPrice":0.07,"yesAsk":0.93,"noAsk":0.07,"volume24h":139592.9838250001,"url":"https://polymarket.com/event/us-x-iran-diplomatic-meeting-by-329","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"1959320","oneDayPriceChange":0.14,"endDate":"2026-04-30"},{"id":"polymarket-0x28872d7d6f63cc8e4172a1825ce9694898f3e94e1f6f97496896d77bb54ef502","platform":"polymarket","title":"Will Italy win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["italy","win","eurovision","2026","italy win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":138499.37446800005,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"842021","oneDayPriceChange":-0.006,"endDate":"2026-05-16"},{"id":"polymarket-0xc185f6ce2c105d6e08c258a8b222ed9091191f28a011faec54abff188ac49dae","platform":"polymarket","title":"Will Bitcoin reach $85,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final High price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT High prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","reach","85000","april","bitcoin reach","reach 85000","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.08,"noPrice":0.92,"yesAsk":0.08,"noAsk":0.92,"volume24h":138021.73710600004,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"1823775","oneDayPriceChange":0.012,"endDate":"2026-05-01"},{"id":"polymarket-0x6e9f90a6f471b52d03499a81586ca478519474eb152f1327c8c767f020d62529","platform":"polymarket","title":"Will PSG win the 2025–26 Champions League?","description":"This is a polymarket on whether the listed team will win the 2025–26 UEFA Champions League.\n\nThis market will resolve to \"Yes\" if the listed team is officially crowned the winner of the 2025–26 UEFA Champions League. Otherwise, it will resolve to \"No\".\n\nIf at any point it becomes impossible for the listed team to win the tournament (e.g. they are mathematically eliminated), the market will resolve to \"No\".\n\nIf the 2025–26 UEFA Champions League is canceled or not completed by October 1, 2026, this market will resolve to \"Other\".\n\nThe primary resolution source will be official information from UEFA Champions League (https://www.uefa.com/uefachampionsleague/). A consensus of credible reporting may also be used.","keywords":["psg","paris saint germain","soccer","france","win","2025","26","champions","league","psg win","win the","champions league","football","europe","uefa","ucl","polymarket","listed","team","league.","resolve","yes","officially","crowned"],"yesPrice":0.26,"noPrice":0.74,"yesAsk":0.26,"noAsk":0.74,"volume24h":138012.33254800003,"url":"https://polymarket.com/event/uefa-champions-league-winner","category":"sports","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"566136","oneDayPriceChange":0,"endDate":"2026-05-31"},{"id":"polymarket-0x836b850fc838195374862551a36f1c8691d96ff01e58b0a071f0fc1a0e357fb1","platform":"polymarket","title":"Will LeBron James win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["lebron","lakers","nba","basketball","james","win","2028","presidential","election","james win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":137959.25355700002,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"561251","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x7f9eb9327201f36247365c258c28807731aac9cb9f9bf12efe535aca34944296","platform":"polymarket","title":"Will Bournemouth finish in 3rd place in the 2025-26 English Premier League?","description":"This is a polymarket on whether the listed club will finish in 3rd place in the 2025–26 English Premier League.\n\nThis market will resolve to \"Yes\" if the listed club finishes 3rd in the final standings of the 2025–26 English Premier League. Otherwise, it will resolve to \"No\".\n\nIf at any point it becomes impossible for the listed club to finish 3rd in the 2025-26 EPL season (e.g. they are mathematically eliminated), the market will resolve to \"No\".\n\nIf the 2025–26 English Premier League season is canceled or not completed by October 1, 2026, this market will resolve to \"Other\".\n\nThe primary resolution source will be official information from the English Premier League. A consensus of credible reporting may also be used.","keywords":["bournemouth","finish","3rd","place","2025-26","english","premier","league","premier league","soccer","football","england","epl","polymarket","listed","club","2025","26","league.","resolve","yes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":136854.88933299994,"url":"https://polymarket.com/event/english-premier-league-3rd-place","category":"sports","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"572775","oneDayPriceChange":-0.0005,"endDate":"2026-05-27"},{"id":"polymarket-0xf105ea1a83605540617366526881a245bd0fb586e0cfe15c1582d0d3ee579558","platform":"polymarket","title":"Will OpenAI have the best AI model at the end of April 2026?","description":"This market will resolve according to the company that owns the model that has the highest arena score based on the Chatbot Arena LLM Leaderboard (https://lmarena.ai/) when the table under the \"Leaderboard\" tab is checked on April 30, 2026, 12:00 PM ET.\n\nResults from the \"Score\" column under the \"Text Arena | Overall\" Leaderboard tab at https://lmarena.ai/leaderboard/text with style control off will be used to resolve this market.\n\nModels will be ranked primarily by their arena score at this market’s check time, with alphabetical order of company names as listed in this market group used as a tiebreaker (e.g., if the two models are tied by arena score, “Google” would be ranked ahead of “xAI”). This market will resolve based on the company that occupies first place under this ranking.\n\nThe resolution source for this market is the Chatbot Arena LLM Leaderboard found at https://lmarena.ai/. If this resolution source is unavailable at check time, this market will remain open until the leaderboard comes back online and will resolve based on the first check after it becomes available. If it becomes permanently unavailable, this market will resolve based on another resolution source.","keywords":["openai","ai","artificial intelligence","chatgpt","gpt","llm","best","model","end","april","2026","resolve","according","company","owns","highest","arena","score","based"],"yesPrice":0.15,"noPrice":0.85,"yesAsk":0.15,"noAsk":0.85,"volume24h":136507.8311230001,"url":"https://polymarket.com/event/which-company-has-the-best-ai-model-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"1664039","oneDayPriceChange":0.0835,"endDate":"2026-04-30"},{"id":"polymarket-0xf950740bc71136155d6525cc0528a582c81f88812bff227803190c32ca25f54d","platform":"polymarket","title":"Will Scotland win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["scotland","win","2026","fifa","soccer","world cup","world","cup","scotland win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":133807.4389469999,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"558973","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x7eceae72d7d7b3e175fa872c728526e6fec4714288a4bda91fe818e298e69a6f","platform":"polymarket","title":"Will WTI Crude Oil (WTI) hit (HIGH) $120 in April?","description":"This market will resolve to \"Yes\" if, at any point during April 2026, any 1-minute candle for the Active Month of WTI Crude Oil futures has a final \"High\" price equal to or above the listed price. Otherwise, this market will resolve to \"No\".\n\nFor WTI futures, the active month refers to the nearest listed contract month. The active month changes at 6:00:00 PM ET at the start of the trading session two business days prior to that contract's last trading day, at which point the next listed contract becomes the active month.\n\nFor WTI Crude Oil (CL) futures, the last trading day is defined as three business days prior to the 25th calendar day of the month preceding the contract's delivery month (or four business days prior if the 25th calendar day is not a business day), consistent with CME contract specifications.\n\nOnly prices achieved during the applicable trading session for the underlying market will be considered. Under the standard schedule, trading is open from 6:00:00 PM ET Sunday through 5:00:00 PM ET Friday, with a daily break from 5:00:00 PM ET to 6:00:00 PM ET, except where modified by holiday or special-session hours as listed on Pyth.\n\nPrices will be used exactly as published by Pyth, without rounding.\n\nIf the Active Month contract does not trade at all during the listed time frame, this market will resolve to \"No\".\n\nIn the event of a contract specification change, feed change, or similar structural modification affecting the underlying market during the listed time frame, this market will resolve based on adjusted prices as displayed on Pyth.\n\nThe resolution source for this market is Pyth — specifically, the Active Month WTI Crude Oil futures \"High\" prices available at https://pythdata.app/explore?search=WTI, with the chart settings configured for 1-minute candles.\n\nHistorical 1-minute candles may be accessed by appending a Unix timestamp (seconds) to the Pyth chart URL using the \"t=\" parameter.\n\nIf the relevant Pyth data is unavailable due to a system outage, data failure, or other technical disruption that prevents verification of the required 1-minute candle data, the official daily high price published for the Active Month WTI Crude Oil (CL) futures contract by CME Group may be used to determine whether the listed price was reached during the applicable trading session.","keywords":["wti","oil","crude","energy","hit","high","120","april","wti hit","hit high","resolve","yes","point","during","2026","1-minute","candle","active"],"yesPrice":0.08,"noPrice":0.92,"yesAsk":0.08,"noAsk":0.92,"volume24h":131615.98133699998,"url":"https://polymarket.com/event/what-price-will-wti-hit-in-april-2026","category":"climate","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"1712297","oneDayPriceChange":0.006,"endDate":"2026-04-30"},{"id":"polymarket-0x1ba55cf8a3b8ffa3a8646a68c13e345ed1f5e3a33381a823ad132a4920054a82","platform":"polymarket","title":"Will Albania win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["albania","win","eurovision","2026","albania win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":129680.35595199994,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"842004","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0x098e2be3df8ab529940c567819f8ef007cf007820e9d627642a5bbfaa42af372","platform":"polymarket","title":"Will Australia win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["australia","win","2026","fifa","soccer","world cup","world","cup","australia win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":129464.61800000002,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"558958","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x1970bcce75e3674660917ae4685b433a9b1e0152d810a8d7c346dfd5e00694c2","platform":"polymarket","title":"Will Cory Booker win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["cory","booker","win","2028","democratic","presidential","nomination","booker win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":124364.83912100003,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"559665","oneDayPriceChange":0.001,"endDate":"2028-11-07"},{"id":"polymarket-0x9b56568af78dd036b03c641e0673729d72cd7d63578eb0119cd23eb1f94f1b56","platform":"polymarket","title":"Will the Houston Rockets win the 2026 NBA Finals?","description":"This market will resolve to “Yes” if the Houston Rockets win the 2026 NBA Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NBA Finals based off the rules of the NBA.\n\nThe resolution source for this market will be information from the NBA.","keywords":["houston","rockets","win","2026","nba","basketball","finals","rockets win","win the","resolve","yes","finals.","otherwise","no","becomes","impossible","team"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":124168.37312900026,"url":"https://polymarket.com/event/2026-nba-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"553860","oneDayPriceChange":-0.0035,"endDate":"2026-07-01"},{"id":"polymarket-0x64d31a2af85518c6718a5757a35b840f08eca20c1e22c0eb1e96ec01cc55b8b6","platform":"polymarket","title":"Will Ron DeSantis win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["ron","desantis","win","2028","republican","presidential","nomination","desantis win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":123195.675095,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"561979","oneDayPriceChange":-0.001,"endDate":"2028-11-07"},{"id":"polymarket-0x0cf91d3955d89ec43b8ac1e918b159fa1a62531f29b26093273c4048337a84d7","platform":"polymarket","title":"Will Esteban Ocon be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["esteban","ocon","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":123146.23499999986,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"898419","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x97b92c6c26b31dc3be183b76b1c39167806611396793eda0edf084d29b76fa46","platform":"polymarket","title":"Will Gabriel Bortoleto be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["gabriel","bortoleto","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":122349.953,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"898422","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0xca68152902c3581ab42feb04921b8b1cd3c4e80d06f255ae077259fca0bba15c","platform":"polymarket","title":"Will Eric Trump win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["eric","trump","president","potus","administration","gop","republican","win","2028","presidential","nomination","trump win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":121359.953084,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"562006","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x6972edb1b3f8cd8192651a665fc424dff846efe1c4a2376f628d4b20c704144c","platform":"polymarket","title":"Will Senegal win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["senegal","win","2026","fifa","soccer","world cup","world","cup","senegal win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":121114.513546,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"558965","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0xd73f60114a0e7169a55082daef1228cb27fa50c939eea22cb0589f6bac6ce5d3","platform":"polymarket","title":"Iran x Israel/US conflict ends by May 15?","description":"This market will resolve to \"Yes\" if there is a continuous 14-day period without any qualifying military action between Iran, and Israel and the United States that begins at any time between market creation and the specified end date (ET). Otherwise, this market will resolve to \"No\". \n\nThe 14-day period may begin at any time between the creation of this market and the specified end date (ET), and must continue uninterrupted through 12:00 PM ET on the 14th calendar day after the strike is confirmed. \n\nA \"military action\" is defined as any use of force by Iran, or Israel and the United States against the other’s soil, or official embassies or consulates, that is either officially acknowledged by the acting government or confirmed through a clear consensus of credible reporting. \n\nThis includes, but is not limited to, airstrikes, naval attacks, and ground incursions. \n\nCyberattacks, sanctions, and diplomatic actions do not count. \n\nOnly actions by Iranian forces explicitly claimed by the Islamic Republic of Iran, or confirmed to have originated from Iranian territory will qualify as Iranian military actions. Attacks on Israel or the US by proxy forces (i.e. Hezbollah, Houthis, etc.) will not count.","keywords":["iran","nuclear","sanctions","middle east","israel","gaza","hamas","conflict","ends","15","resolve","yes","there","continuous","14-day","period","without","qualifying"],"yesPrice":0.94,"noPrice":0.06,"yesAsk":0.94,"noAsk":0.06,"volume24h":121028.77255400002,"url":"https://polymarket.com/event/iran-x-israelus-conflict-ends-by","category":"sports","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"1484914","oneDayPriceChange":0.071,"endDate":"2026-05-15"},{"id":"polymarket-0xd042ae3e62b2e4d1ffa4b8c9a41d537e5fa99ecb383f7aa3bc53d43ad7f42372","platform":"polymarket","title":"Will Elon Musk post 220-239 tweets from April 14 to April 21, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 14 12:00 PM ET to April 21, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","220-239","tweets","april","14","21","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.68,"noPrice":0.32,"yesAsk":0.68,"noAsk":0.32,"volume24h":119883.23693400004,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-14-april-21","category":"other","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"1943732","oneDayPriceChange":0.33,"endDate":"2026-04-21"},{"id":"polymarket-0xe59f59145045f82f8408f1fc5041d33c2c2b1de8ffaf7a4c450c638f5b038079","platform":"polymarket","title":"Will Juan Daniel Oviedo win the 2026 Colombian presidential election?","description":"Colombia's presidential elections are scheduled for May 31, 2026, and a second round (if required) on June 21, 2026, in case no candidate secures more than 50% of the valid votes in the first round.\n\nThis market will resolve according to the listed candidate that wins this election. \n\nThis market includes any potential second round. If the result of this election isn't known by December 31, 2026, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["juan","daniel","oviedo","win","2026","colombian","presidential","election","oviedo win","win the","presidential election","colombia's","elections","scheduled","31","second","round","required","june"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":118002.86799999997,"url":"https://polymarket.com/event/colombia-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"569360","oneDayPriceChange":0,"endDate":"2026-06-21"},{"id":"polymarket-0x8fe8b0f19001c5d61f186edc1991347a60eda9c5bc096f5f144c13d6cd72de78","platform":"polymarket","title":"Will WTI Crude Oil (WTI) hit (HIGH) $200 in April?","description":"This market will resolve to \"Yes\" if, at any point during April 2026, any 1-minute candle for the Active Month of WTI Crude Oil futures has a final \"High\" price equal to or above the listed price. Otherwise, this market will resolve to \"No\".\n\nFor WTI futures, the active month refers to the nearest listed contract month. The active month changes at 6:00:00 PM ET at the start of the trading session two business days prior to that contract's last trading day, at which point the next listed contract becomes the active month.\n\nFor WTI Crude Oil (CL) futures, the last trading day is defined as three business days prior to the 25th calendar day of the month preceding the contract's delivery month (or four business days prior if the 25th calendar day is not a business day), consistent with CME contract specifications.\n\nOnly prices achieved during the applicable trading session for the underlying market will be considered. Under the standard schedule, trading is open from 6:00:00 PM ET Sunday through 5:00:00 PM ET Friday, with a daily break from 5:00:00 PM ET to 6:00:00 PM ET, except where modified by holiday or special-session hours as listed on Pyth.\n\nPrices will be used exactly as published by Pyth, without rounding.\n\nIf the Active Month contract does not trade at all during the listed time frame, this market will resolve to \"No\".\n\nIn the event of a contract specification change, feed change, or similar structural modification affecting the underlying market during the listed time frame, this market will resolve based on adjusted prices as displayed on Pyth.\n\nThe resolution source for this market is Pyth — specifically, the Active Month WTI Crude Oil futures \"High\" prices available at https://pythdata.app/explore?search=WTI, with the chart settings configured for 1-minute candles.\n\nHistorical 1-minute candles may be accessed by appending a Unix timestamp (seconds) to the Pyth chart URL using the \"t=\" parameter.\n\nIf the relevant Pyth data is unavailable due to a system outage, data failure, or other technical disruption that prevents verification of the required 1-minute candle data, the official daily high price published for the Active Month WTI Crude Oil (CL) futures contract by CME Group may be used to determine whether the listed price was reached during the applicable trading session.","keywords":["wti","oil","crude","energy","hit","high","200","april","wti hit","hit high","resolve","yes","point","during","2026","1-minute","candle","active"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":116966.004391,"url":"https://polymarket.com/event/what-price-will-wti-hit-in-april-2026","category":"climate","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"1807967","oneDayPriceChange":-0.003,"endDate":"2026-04-30"},{"id":"polymarket-0x8187d6c49419ffca02a45d30062949995e606f5b18dc1bee3f6426b9e94b1c4d","platform":"polymarket","title":"Will the price of Bitcoin be above $84,000 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["bitcoin","btc","crypto","above","84000","april","21","be above","above 84000","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":116482.81630400002,"url":"https://polymarket.com/event/bitcoin-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:45.755Z","numericId":"1981843","oneDayPriceChange":-0.0025,"endDate":"2026-04-21"},{"id":"polymarket-0x8187d6c49419ffca02a45d30062949995e606f5b18dc1bee3f6426b9e94b1c4d","platform":"polymarket","title":"Will the price of Bitcoin be above $84,000 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["bitcoin","btc","crypto","above","84000","april","21","be above","above 84000","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":116482.81630400002,"url":"https://polymarket.com/event/bitcoin-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"1981843","oneDayPriceChange":-0.0025,"endDate":"2026-04-21"},{"id":"polymarket-0x7434b22007745d99095c102119fdb6b975d34869212e9dda4c6c5c48db0683a7","platform":"polymarket","title":"Russia x Ukraine ceasefire by April 30, 2026?","description":"This market will resolve to \"Yes\" if there is an official ceasefire agreement, defined as a publicly announced and mutually agreed halt in military engagement, between Russia and Ukraine by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nIf the agreement is officially reached before the resolution date, this market will resolve to \"Yes,\" regardless of whether the ceasefire officially starts afterward.\n\nOnly ceasefires that constitute a general pause in the conflict will qualify. Ceasefires that only apply to energy infrastructure, the Black Sea, or other similar agreements will not qualify.\n\nAny form of informal agreement will not be considered an official ceasefire. Humanitarian pauses will not count toward the resolution of this market.\n\nA peace deal or political framework will qualify if it includes a publicly announced and mutually agreed halt in military engagement, effective on a specific date. Frameworks or agreements that outline terms for a future peace but do not include an explicit, dated commitment to stop fighting will not count.\n\nThis market's resolution will be based on official announcements from both Russia and Ukraine; however, a wide consensus of credible media reporting stating an official ceasefire agreement between Russia and Ukraine has been reached will suffice.","keywords":["russia","ukraine","war","nato","zelensky","ceasefire","peace","conflict","april","30","2026","resolve","yes","there","official","agreement","defined","publicly","announced"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":115065.65276300003,"url":"https://polymarket.com/event/russia-x-ukraine-ceasefire-by-april-30-2026","category":"technology","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"1439560","oneDayPriceChange":0,"endDate":"2026-04-30"},{"id":"polymarket-0xf8ed23a148ce390bea3e0f959900913e9f9dadf285d16608575da22b8b3c0b4a","platform":"polymarket","title":"Will FC Midtjylland win on 2026-04-20?","description":"In the upcoming game, scheduled for April 20, 2026\nIf FC Midtjylland wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["midtjylland","win","2026-04-20","midtjylland win","win on","upcoming","game","scheduled","april","20","2026","wins","resolve"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":114916.38696599999,"url":"https://polymarket.com/event/den-mid-agf-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"1694910","oneDayPriceChange":0.5395,"endDate":"2026-04-20"},{"id":"polymarket-0xfe230d510eaf545198c0d62bb17871e5fe8989f1b19aa54c0c062b858360987c","platform":"polymarket","title":"Will Austria win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["austria","win","2026","fifa","soccer","world cup","world","cup","austria win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":113757.43119699993,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"558975","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0xdb7886829f415e00ab97b695a28b5747c6bce1f8ab09635a51ec6480e5d50314","platform":"polymarket","title":"Trump announces US x Iran ceasefire end by April 21, 2026?","description":"On April 7–8, 2026, the United States and Iran agreed to a temporary two-week ceasefire aimed at halting direct hostilities and de-escalating the ongoing conflict.\n\nThis market will resolve to \"Yes\" if President Trump, the US government, or the US military publicly and officially announces that the ceasefire between the United States and Iran has ended or is no longer in effect by the specified date, 11:59 PM ET. Otherwise, this market will resolve to \"No.\"\n\nQualifying statements must explicitly indicate that the ceasefire between the United States and Iran has ended, been terminated, or is no longer in effect, or use equivalently definitive language clearly signaling the end of the ceasefire commitment. \n\nStatements that merely reference violations, breaches, or non-compliance with the ceasefire, without an explicit declaration that the US is no longer committed to the ceasefire, will not alone qualify.\n\nAnnouncements of a new agreement (e.g, a broader peace framework) that supersedes the initial ceasefire agreement while maintaining a halt in direct military engagement between the United States and Iran will not qualify; only announcements that explicitly terminate the commitment to refrain from military hostilities will qualify.\n\nInformal announcements, statements from unnamed sources, or leaks do not qualify.\n\nWritten public statements from Donald Trump (e.g., posts from his personal Truth Social account) will qualify. Videos posted on his social media accounts will also qualify for a \"Yes\" resolution.\n\nThe primary resolution source for this market will be official statements from the US government and/or its official representatives; however, a consensus of credible reporting may also be used.\n\nNote: this market will resolve solely based on whether a qualifying announcement is made within the specified timeframe. Whether the ceasefire actually ends in practice or whether hostilities resume will not be considered.","keywords":["trump","president","potus","administration","gop","republican","announces","iran","nuclear","sanctions","middle east","ceasefire","ukraine","russia","peace","conflict","end","april","21","2026","7","8","united","states","agreed","temporary","two-week","aimed"],"yesPrice":0.1,"noPrice":0.9,"yesAsk":0.1,"noAsk":0.9,"volume24h":113320.50531000004,"url":"https://polymarket.com/event/trump-announces-us-x-iran-ceasefire-by","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"1912777","oneDayPriceChange":-0.16,"endDate":"2026-04-21"},{"id":"polymarket-0x290b3a5826b17e48ae7166b188767d95df5a9ed0b69fda116d98d0d27d753281","platform":"polymarket","title":"Will Éric Zemmour win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["ric","zemmour","win","2027","french","presidential","election","zemmour win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":113069.200875,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"679020","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0x822e61527476cabf98927e3aad385c5ecdae7086f945535f2c1fd9ae8dbfa46e","platform":"polymarket","title":"Will George Clooney win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["george","clooney","win","2028","democratic","presidential","nomination","clooney win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":112857.80509900002,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"559683","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xf326a07132ea27d151fade9df0424db7c5ee496b44e5f373a41b4f15431bfd97","platform":"polymarket","title":"Will Bitcoin dip to $65,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final Low price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT Low prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","dip","65000","april","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.07,"noPrice":0.93,"yesAsk":0.07,"noAsk":0.93,"volume24h":112136.92834399997,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"1823779","oneDayPriceChange":-0.05,"endDate":"2026-05-01"},{"id":"polymarket-0xde3d62becec90cd596e01294346786f5a9406a026e105c054d0f7e62cffdcf8f","platform":"polymarket","title":"Will Franco Colapinto be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["franco","colapinto","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":112087.06786600011,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"898424","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x67443cb1ffb2bf180f7df5b6ca7adff63f7e8e933c7e41405ba118f3e9f8befb","platform":"polymarket","title":"Will Canada win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["canada","win","2026","fifa","soccer","world cup","world","cup","canada win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":111871.22319899999,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"558952","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x6114a8a3f9ac214f48a7e20d169f1c7a5c84082cb6f7058ed9fe1137b11fd0e7","platform":"polymarket","title":"US x Iran permanent peace deal by June 30, 2026?","description":"This market will resolve to “Yes” if Iran and the United states agree to a permanent peace deal by the specified date, 11:59 PM ET. Otherwise, this market will resolve to “No”. \n\nA permanent peace deal refers to any agreement which explicitly indicates that military hostilities between the United States and Iran have ended or will permanently cease, or uses equivalent language clearly signaling a lasting end to military hostilities between the United States and Iran. Agreements that are explicitly temporary or which do not include a definitive agreement to end military hostilities between the US and Iran on a lasting basis (e.g. a temporary extension of the two-week ceasefire agreement announced on April 7, 2026), will not qualify.\n\nA qualifying agreement will be considered to have been established if either of the following conditions are met:\n\n- The United States and Iran each sign or formally adopt a written agreement (e.g. a treaty or multi-point agreement) which meets the above criteria.\n\n- Both the governments of the United States and Iran provide clear public confirmation that a qualifying agreement has been definitively established. Negotiations, statements of progress, or other statements which do not constitute a definitive announcement that a qualifying agreement has been reached will not count.\n\nThe primary resolution source for this market will be official information from the governments of the United States and Iran; however, a consensus of credible reporting may also be used.","keywords":["iran","nuclear","sanctions","middle east","permanent","peace","deal","june","30","2026","peace deal","ukraine","russia","peace agreement","ceasefire","resolve","yes","united","states","agree","specified","date","11"],"yesPrice":0.7,"noPrice":0.3,"yesAsk":0.7,"noAsk":0.3,"volume24h":110977.342775,"url":"https://polymarket.com/event/us-x-iran-permanent-peace-deal-by","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"1962237","oneDayPriceChange":0.04,"endDate":"2026-05-31"},{"id":"polymarket-0x0a995babae8f9a1df994c210d2b36f05e8422271af369a33d9b643e65f1bd194","platform":"polymarket","title":"Paul Mescal announced as next James Bond?","description":"This market will resolve to “Yes” if the above actor is officially announced as the next James Bond actor by June 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nThis market will resolve based on the first official announcement of who will be the next James Bond, regardless of any changes made thereafter.\n\nIf no actor is announced as the next Bond within the timeframe, this market will resolve to \"No Bond chosen\".\n\nThe primary resolution source for this market will be official information from Amazon MGM Studios. However, a consensus of credible reporting may also be used.","keywords":["paul","mescal","announced","next","james","bond","resolve","yes","above","actor","officially","june","30","2026"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":110528.9,"url":"https://polymarket.com/event/next-james-bond-actor-635","category":"other","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"572112","oneDayPriceChange":-0.0005,"endDate":"2026-06-30"},{"id":"polymarket-0x596b82d8371efcfcc2fd5312d5dde04f5e9aa1f0c61fd3f93be2a8be09e0da5f","platform":"polymarket","title":"Will Alexander Albon be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["alexander","albon","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":110060.61180000001,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"898427","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x881a3ffa618b6ae0ab95a5637e310afb1afc2d99c921bfe3235b15eccfce0344","platform":"polymarket","title":"Will Ghana win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["ghana","win","2026","fifa","soccer","world cup","world","cup","ghana win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":109836.93849900003,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"558967","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0xbbbece074c2d4010e39e39c85ed67b1131180fcea616073c893fb6beaf51d783","platform":"polymarket","title":"Will Michelle Obama win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["michelle","obama","win","2028","presidential","election","obama win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":109647.47923600001,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"561257","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xe5bd80313b8859e3f5761568ac9498866ea9d4419e4d1b6a877a9a9bd2754cb4","platform":"polymarket","title":"Will Croatia win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["croatia","win","2026","fifa","soccer","world cup","world","cup","croatia win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":109555.59983999998,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"558976","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x2a43878e2ffba31a6feb78a333b4fd26e667c758d935200df9d470b8c7e97d62","platform":"polymarket","title":"Will Elon Musk post 260-279 tweets from April 14 to April 21, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 14 12:00 PM ET to April 21, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","260-279","tweets","april","14","21","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.04,"noPrice":0.95,"yesAsk":0.04,"noAsk":0.95,"volume24h":109409.37078700007,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-14-april-21","category":"other","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"1943736","oneDayPriceChange":-0.05,"endDate":"2026-04-21"},{"id":"polymarket-0x3f4d2e2543f9ee3ab3fc6f688702b7e515a17b934ac2c376834fb9820863fb39","platform":"polymarket","title":"Will Darren Fletcher be appointed as manager of Manchester United?","description":"This market will resolve according to the person who is appointed as the next permanent manager of Manchester United.\n\nIf no permanent manager is appointed by December 31, 2026, 11:59 PM ET, the market will resolve to \"Other.\" \n\nAppointments of 'interim,' 'caretaker,' or other non-permanent managers will not impact this market's resolution.\n\nAn announcement of a new permanent manager's appointment before this market's close date will immediately resolve this market to the corresponding option, regardless of when the announced appointment goes into effect.\n\nThe primary resolution source for this market will be official information from Manchester United; however, a consensus of credible reporting will also be used.","keywords":["darren","fletcher","appointed","manager","manchester","united","manchester united","man united","soccer","premier league","resolve","according","person","next","permanent","united.","no","december"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":109282.90000000002,"url":"https://polymarket.com/event/next-manchester-united-manager","category":"other","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"1116673","oneDayPriceChange":-0.0025,"endDate":"2026-12-31"},{"id":"polymarket-0x66ee6f956b2d08267ddde879928026c580b9615adf7160cfe0ba73e2a82d0da2","platform":"polymarket","title":"Will Elon Musk post 420-439 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","420-439","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":108792.473664,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:45.799Z","numericId":"1977013","oneDayPriceChange":-0.005,"endDate":"2026-04-24"},{"id":"polymarket-0x46ac515c960ae9139fe9caeed46b48f0d0a8a2831e7660d7b401d5c9bcd67742","platform":"polymarket","title":"Will Viggo Björck be drafted 1st overall in the 2026 NHL Draft?","description":"This market will resolve according to the player drafted No. 1 overall in the 2026 NHL Draft scheduled for June 26-27, 2026. \n\nIf the 2026 NHL Draft is postponed, this market will stay open until its completion.\n\nIf the 2026 NHL draft is cancelled or the first pick is not definitively known by July 12, 2026, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from the NHL, including the live broadcast of the 2026 NHL draft; however, a consensus of credible reporting may also be used.","keywords":["viggo","rck","drafted","1st","overall","2026","nhl","hockey","draft","resolve","according","player","no.","1","scheduled","june","26-27"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":107653.58000000003,"url":"https://polymarket.com/event/2026-nhl-draft-1st-overall-pick-349","category":"sports","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"1343565","oneDayPriceChange":-0.0005,"endDate":"2026-06-27"},{"id":"polymarket-0xa2eb617c6556a9d767fdfb446c4ce1efe102f6417296d29e24229cc2a65ea373","platform":"polymarket","title":"Will Elon Musk post 280-299 tweets from April 14 to April 21, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 14 12:00 PM ET to April 21, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","280-299","tweets","april","14","21","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":106397.29474200001,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-14-april-21","category":"other","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"1943738","oneDayPriceChange":-0.0335,"endDate":"2026-04-21"},{"id":"polymarket-0x1480b819d03d4b6388d70e848b0384adf38c38d955cb783cdbcf6d4a436dee14","platform":"polymarket","title":"Will the next Prime Minister of Hungary be Péter Magyar?","description":"Parliamentary elections are scheduled to be held in Hungary on April 12 2026.\n\nThis market will resolve to the individual who is next officially appointed and confirmed as Prime Minister of Hungary following the 2026 parliamentary election.\n\nTo count for resolution, the individual must be formally elected and appointed to the role of Prime Minister. Any interim or caretaker Prime Minister will not count toward the resolution of this market.\n\nIf no such Prime Minister is confirmed by December 31, 2026, 11:59 PM ET, this market will resolve to “Other.”\n\nThe primary resolution source for this market will be official information from the Government of Hungary; however, a consensus of credible reporting may also be used.","keywords":["next","prime","minister","hungary","ter","magyar","parliamentary","elections","scheduled","held","april","12","2026.","resolve"],"yesPrice":0.98,"noPrice":0.02,"yesAsk":0.98,"noAsk":0.02,"volume24h":105737.68142399997,"url":"https://polymarket.com/event/next-prime-minister-of-hungary","category":"other","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"567561","oneDayPriceChange":-0.001,"endDate":"2026-04-12"},{"id":"polymarket-0x3cd6e52603d80ddbbdac9b1a4d43f9b7faa6aae4fae4d0fdfad3bd58454da7d3","platform":"polymarket","title":"Will Jasmine Crockett win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["jasmine","crockett","win","2028","democratic","presidential","nomination","crockett win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":105546.94577199999,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"559692","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x9e5f9d8c384f8fe368b195fa9a780be58643dff7360588a4e577012df8af00a7","platform":"polymarket","title":"Will New Zealand win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["new","zealand","win","2026","fifa","soccer","world cup","world","cup","zealand win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":105347.01399999997,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"558957","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0xfcaeb92c47b30dfb45c4fc2bed4da15b9cfb4f1322f130e4b12a7107bef225b1","platform":"polymarket","title":"Will Elon Musk post 120-139 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","120-139","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":105027.71396200001,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"1976988","oneDayPriceChange":0,"endDate":"2026-04-24"},{"id":"polymarket-0x7e5228c4aa228752fb75ec1ffcb315a5f2fef812d746ceb6601cee285366d1a8","platform":"polymarket","title":"Will J.D. Vance attend the next US x Iran diplomatic meeting?","description":"This market will resolve to \"Yes\" if the listed individual attends the next diplomatic meeting between representatives of the United States and Iran by June 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nA diplomatic meeting refers to a deliberate meeting between representatives of the listed countries who are acting in an official capacity and are authorized to engage in negotiation or diplomacy regarding US-Iranian relations on behalf of their governments. Meetings conducted indirectly, for example, through designated mediators, facilitators, or interlocutors acting with the knowledge and authorization of the relevant governments, will qualify.\n\nBrief greetings, chance encounters, or talks otherwise not deliberately aimed at diplomacy or negotiation will not qualify as diplomatic meetings.\n\nThe meeting must be in-person (including indirect in-person meetings) and must be publicly acknowledged by either government or reported by a consensus of credible media. Remote meetings, phone calls, or other meetings where the relevant parties are not present will not count.\n\nAttendance refers to the listed individual being physically present and actively participating in negotiations at the meeting.\n\nIf the next diplomatic meeting between representatives of the United States and Iran takes place over multiple days, attendance at any part of the meeting will qualify.\n\nThe primary resolution source for this market will be official information from the listed individual and the governments of the United States and Iran; however, a consensus of credible reporting will also be used.","keywords":["j.d.","vance","attend","next","iran","nuclear","sanctions","middle east","diplomatic","meeting","resolve","yes","listed","individual","attends","between","representatives","united"],"yesPrice":0.93,"noPrice":0.07,"yesAsk":0.93,"noAsk":0.07,"volume24h":104642.24162100002,"url":"https://polymarket.com/event/who-will-attend-the-next-us-x-iran-diplomatic-meeting","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"1986506","oneDayPriceChange":0.182,"endDate":"2026-06-30"},{"id":"polymarket-0xcf72b0f49af9446288a897ac1d73afa72549d98de7860bb17dacc3c4379a2c58","platform":"polymarket","title":"Will Liam Lawson be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["liam","lawson","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":104068.52475000003,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"898425","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x7a6491e3c906af3657b9b5cf2b371b454f1ddb91b4f4ca3344caaabf424a8056","platform":"polymarket","title":"Will Arvid Lindblad be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["arvid","lindblad","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":103514.77825,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"898426","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x67a8543bf23f52dfe5c908f512ea04e749c9044a6ff1a9fcf32a60b936b79472","platform":"polymarket","title":"Will WTI Crude Oil (WTI) hit (LOW) $70 in April?","description":"This market will resolve to \"Yes\" if, at any point during April 2026, any 1-minute candle for the Active Month of WTI Crude Oil futures has a final \"Low\" price equal to or below the listed price. Otherwise, this market will resolve to \"No\".\n\nFor WTI futures, the active month refers to the nearest listed contract month. The active month changes at 6:00:00 PM ET at the start of the trading session two business days prior to that contract's last trading day, at which point the next listed contract becomes the active month.\n\nFor WTI Crude Oil (CL) futures, the last trading day is defined as three business days prior to the 25th calendar day of the month preceding the contract's delivery month (or four business days prior if the 25th calendar day is not a business day), consistent with CME contract specifications.\n\nOnly prices achieved during the applicable trading session for the underlying market will be considered. Under the standard schedule, trading is open from 6:00:00 PM ET Sunday through 5:00:00 PM ET Friday, with a daily break from 5:00:00 PM ET to 6:00:00 PM ET, except where modified by holiday or special-session hours as listed on Pyth.\n\nPrices will be used exactly as published by Pyth, without rounding.\n\nIf the Active Month contract does not trade at all during the listed time frame, this market will resolve to \"No\".\n\nIn the event of a contract specification change, feed change, or similar structural modification affecting the underlying market during the listed time frame, this market will resolve based on adjusted prices as displayed on Pyth.\n\nThe resolution source for this market is Pyth — specifically, the Active Month WTI Crude Oil futures \"Low\" prices available at https://pythdata.app/explore?search=WTI, with the chart settings configured for 1-minute candles.\n\nHistorical 1-minute candles may be accessed by appending a Unix timestamp (seconds) to the Pyth chart URL using the \"t=\" parameter.\n\nIf the relevant Pyth data is unavailable due to a system outage, data failure, or other technical disruption that prevents verification of the required 1-minute candle data, the official daily low price published for the Active Month WTI Crude Oil (CL) futures contract by CME Group may be used to determine whether the listed price was reached during the applicable trading session.","keywords":["wti","oil","crude","energy","hit","low","70","april","wti hit","hit low","resolve","yes","point","during","2026","1-minute","candle","active"],"yesPrice":0.13,"noPrice":0.88,"yesAsk":0.13,"noAsk":0.88,"volume24h":103200.12594399998,"url":"https://polymarket.com/event/what-price-will-wti-hit-in-april-2026","category":"climate","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"1712302","oneDayPriceChange":0,"endDate":"2026-04-30"},{"id":"polymarket-0x2ca58175aa8080357d9706c535bb0be218ce7bb156dc48753e0d8b8ee6b56635","platform":"polymarket","title":"Will Aston Villa win the 2025–26 English Premier League?","description":"This is a polymarket on whether the listed club will win the 2025–26 English Premier League.\n\nThis market will resolve to \"Yes\" if the listed club is officially crowned the winner of the 2025–26 English Premier League. Otherwise, it will resolve to \"No\".\n\nIf at any point it becomes impossible for the listed club to win the league (e.g. they are mathematically eliminated), the market will resolve to \"No\".\n\nIf the 2025–26 English Premier League season is canceled or not completed by October 1, 2026, this market will resolve to \"Other\".\n\nThe primary resolution source will be official information from the English Premier League. A consensus of credible reporting may also be used.","keywords":["aston","villa","win","2025","26","english","premier","league","villa win","win the","premier league","soccer","football","england","epl","polymarket","listed","club","league.","resolve","yes","officially","crowned"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":102656.69,"url":"https://polymarket.com/event/english-premier-league-winner","category":"sports","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"566193","oneDayPriceChange":0,"endDate":"2026-05-27"},{"id":"polymarket-0xff0cfa9506cfa95759e4c7591654195bd26e3011f9882b51439135e04f2b69f1","platform":"polymarket","title":"Will Tunisia win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["tunisia","win","2026","fifa","soccer","world cup","world","cup","tunisia win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":102649.17883300001,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"558954","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0xa31e61f22cf97acf90a49111ed890b7115749a0b65067e63b798371e6c595a24","platform":"polymarket","title":"Will Park Hong-keun win the 2026 Seoul Mayoral Election","description":"The 2026 Seoul mayoral election is scheduled to take place on June 3, 2026 to elect the next mayor of Seoul.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nIf the result of this election isn't known by January 31, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the South Korean government, specifically the National Election Commission.","keywords":["park","hong-keun","win","2026","seoul","mayoral","election","hong-keun win","win the","mayoral election","scheduled","take","place","june","3","elect","next","mayor"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":102021.21354199998,"url":"https://polymarket.com/event/2026-seoul-mayoral-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"678936","oneDayPriceChange":0.001,"endDate":"2026-06-03"},{"id":"polymarket-0xe0173375b7eaccb836f7b92d28a9a2d1cc69e54e5a65fae89a5d7e49aadd332e","platform":"polymarket","title":"Will Nikki Haley win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["nikki","haley","win","2028","presidential","election","haley win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":101959.99947199998,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"561245","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x106ccc4508432a065a67394837d4c2c529a8d77ed69fa3ba90b81eedf5236598","platform":"polymarket","title":"Will Turkiye win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["turkiye","win","2026","fifa","soccer","world cup","world","cup","turkiye win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":101370.71489000002,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"558985","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x6e235eb1b3be07337a2a424d5e616e8759263f5d078c99604f177da7276d92a2","platform":"polymarket","title":"Will Serbia win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["serbia","win","eurovision","2026","serbia win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":101055.75558700004,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"842033","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0xd839785e6d4e4fdd44ef0e90f315eecccde47578924491e6ae74499e9f62d29e","platform":"polymarket","title":"Will Donald Trump announce that the United States blockade of the Strait of Hormuz has been lifted by April 23, 2026?","description":"On April 12, 2026, President Donald Trump announced that the United States will blockade the Strait of Hormuz. You can read more about that here: https://www.nbcnews.com/world/iran/live-blog/live-updates-us-iran-fail-reach-deal-peace-talks-day-negotiations-rcna315918.\n\nThis market will resolve to \"Yes\" if President Trump, the US government, or the US military publicly and officially announces the end of the United States blockade of the Strait of Hormuz by the specified date, 11:59 PM ET. Otherwise, this market will resolve to \"No.\"\n\nQualifying statements must clearly and explicitly indicate that the United States has lifted, ended, or will lift or end its blockade of the Strait of Hormuz on a specified date or use equivalently definitive language unambiguously signaling that such blockade has ceased or is set to cease on a specified date (e.g., statements unambiguously indicating that US naval activity in the relevant area has ceased will qualify). \n\nStatements that merely describe actions inconsistent with the blockade (e.g., \"Iran resumed shipping through the Strait of Hormuz\") without explicitly indicating the blockade as lifted will not alone suffice.\n\nInformal announcements, statements from unnamed sources, or leaks do not qualify.\n\nWritten public statements from Donald Trump (e.g., posts from his personal Truth Social account) will qualify. Videos posted on his social media accounts will also qualify for a \"Yes\" resolution.\n\nThe primary resolution source for this market will be official statements from the US government and/or its official representatives; however, a consensus of credible reporting may also be used.\n\nNote: this market will resolve solely based on whether a qualifying announcement is made within the specified timeframe. Whether the blockade is effectively enforced or whether maritime traffic resumes absent a qualifying announcement will not be considered.","keywords":["donald","trump","president","potus","administration","gop","republican","announce","united","states","blockade","strait","hormuz","lifted","april","23","2026","donald trump","12","announced","hormuz.","you","read","more","about","here"],"yesPrice":0.32,"noPrice":0.69,"yesAsk":0.32,"noAsk":0.69,"volume24h":99063.70832800004,"url":"https://polymarket.com/event/trump-announces-us-blockade-of-hormuz-lifted-by","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"2007028","oneDayPriceChange":0.075,"endDate":"2026-04-23"},{"id":"polymarket-0xb543d97766c60645f6971e1d43ee4bc4ece1c41528d97e24894c9e661ba5adf5","platform":"polymarket","title":"Will Baidu have the best AI model at the end of April 2026?","description":"This market will resolve according to the company that owns the model that has the highest arena score based on the Chatbot Arena LLM Leaderboard (https://lmarena.ai/) when the table under the \"Leaderboard\" tab is checked on April 30, 2026, 12:00 PM ET.\n\nResults from the \"Score\" column under the \"Text Arena | Overall\" Leaderboard tab at https://lmarena.ai/leaderboard/text with style control off will be used to resolve this market.\n\nModels will be ranked primarily by their arena score at this market’s check time, with alphabetical order of company names as listed in this market group used as a tiebreaker (e.g., if the two models are tied by arena score, “Google” would be ranked ahead of “xAI”). This market will resolve based on the company that occupies first place under this ranking.\n\nThe resolution source for this market is the Chatbot Arena LLM Leaderboard found at https://lmarena.ai/. If this resolution source is unavailable at check time, this market will remain open until the leaderboard comes back online and will resolve based on the first check after it becomes available. If it becomes permanently unavailable, this market will resolve based on another resolution source.","keywords":["baidu","best","model","end","april","2026","resolve","according","company","owns","highest","arena","score","based"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":98883.31899999997,"url":"https://polymarket.com/event/which-company-has-the-best-ai-model-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"1664043","oneDayPriceChange":0,"endDate":"2026-04-30"},{"id":"polymarket-0x5e9392d31f3156e5855557ea36a72932a0cfc4a6855d69c34c4a174278434fc8","platform":"polymarket","title":"Will Montenegro win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["montenegro","win","eurovision","2026","montenegro win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":98584.39582899999,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"842027","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0x942f3440451a021ee1c242171eb251ece3a69b1ed2856c3b62f5f59d154bfafc","platform":"polymarket","title":"Will Moreirense FC win on 2026-04-20?","description":"In the upcoming game, scheduled for April 20, 2026\nIf Moreirense FC wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["moreirense","win","2026-04-20","fc win","win on","upcoming","game","scheduled","april","20","2026","wins","resolve"],"yesPrice":0.61,"noPrice":0.39,"yesAsk":0.61,"noAsk":0.39,"volume24h":96247.98363300003,"url":"https://polymarket.com/event/por-mor-est-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"1745025","oneDayPriceChange":0.31,"endDate":"2026-04-20"},{"id":"polymarket-0xe00f84278d7ec49668b4f9f6c6d0a437663cdcf0e330fdb3789c649f8a29fdc8","platform":"polymarket","title":"Will the US officially declare war on Iran by April 30, 2026?","description":"This market will resolve to \"Yes\" if the United States formally declares war on Iran through an act of Congress between market creation and the specified date, 11:59 PM ET. Otherwise, this market will resolve to \"No.\"\n\nTo qualify, Congress must pass a formal declaration of war, consistent with its constitutional authority under Article I, Section 8. Authorizations for the use of military force (AUMFs), executive orders, presidential statements, or military actions do not qualify unless accompanied by a formal declaration of war enacted by Congress and signed into law.\n\nThe resolution source will be a clear consensus of credible reporting.","keywords":["officially","declare","war","iran","nuclear","sanctions","middle east","april","30","2026","resolve","yes","united","states","formally","declares","through","act"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":95870.94962599999,"url":"https://polymarket.com/event/will-the-us-officially-declare-war-on-iran-by","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"1707316","oneDayPriceChange":0.0025,"endDate":"2026-04-30"},{"id":"polymarket-0x611ac8b703b5291cb8798560e6db1edf9c5eb3038b138d1885d4f708380d4b52","platform":"polymarket","title":"Will Latvia win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["latvia","win","eurovision","2026","latvia win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":95795.09766399991,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.800Z","numericId":"842022","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0xa2b7d292821eafb97059947b9d834512deda11b7866e0f7b299bcb035071d626","platform":"polymarket","title":"Will Oliver Bearman be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["oliver","bearman","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":95755.33992799999,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"898420","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x9ca9ea6bcad843f3e94c213ad978b4f21d712d90f9a28372d9248ec99bb7193a","platform":"polymarket","title":"Will Sergio Pérez be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["sergio","rez","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":95528.74533000003,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"898430","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x3a26ca6425e2d98f14935670bc22cdb0744defc6f6d83c65f8c413a921c5c70c","platform":"polymarket","title":"Will Switzerland win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["switzerland","win","2026","fifa","soccer","world cup","world","cup","switzerland win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":94862.00694299999,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"558974","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0xe39dd4dda2144c32921db11ee31127555dcf7dbabbf4a3b65f2413cf601f3908","platform":"polymarket","title":"Will Estonia win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["estonia","win","eurovision","2026","estonia win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":93746.08233100004,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"842014","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0xc517b6dcbae1b769dcd81a56c5bdde73ee5bf9b91e60c6dc5ebb1e6f2445a6d6","platform":"polymarket","title":"Will MegaETH launch a token by April 30, 2026?","description":"This market will resolve to “Yes” if MegaETH officially launches a governance token by 11:59 PM ET on the date specified in the title. Otherwise, this market will resolve to “No”.\n\nThe token must be actively and publicly transferable and tradable. Announcements alone do not qualify.\n\nThe primary resolution source for this market will be information from MegaETH, however a consensus of credible reporting will also be used.","keywords":["megaeth","launch","token","april","30","2026","resolve","yes","officially","launches","governance","11","59","date"],"yesPrice":0.36,"noPrice":0.64,"yesAsk":0.36,"noAsk":0.64,"volume24h":92624.75443300001,"url":"https://polymarket.com/event/will-megaeth-launch-a-token-by","category":"crypto","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"1731274","oneDayPriceChange":0.11,"endDate":"2027-01-01"},{"id":"polymarket-0x9a7bd9d29ac01f579c0c6c8eb7b2add40f82ba8000c783eccf08fd4b565442fa","platform":"polymarket","title":"Will Switzerland win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["switzerland","win","eurovision","2026","switzerland win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":92306.45760999995,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"842035","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0xdb4b2f370c3d0e996fbb32213c87aa5402936e3d4882432b6738e2f5661b79a6","platform":"polymarket","title":"Will Curaçao win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["cura","win","2026","fifa","soccer","world cup","world","cup","ao win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":92277.75600000007,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"558978","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0xaf15f055f10713cbd3c7c30cece5c20c4ff00a76e51da59d635bb5160654bd34","platform":"polymarket","title":"Will Carlos Sainz Jr. be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["carlos","sainz","jr.","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":91211.5640000001,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"technology","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"898428","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0xcba24842ceac7a40d2a8b9adde1f4407999b6505193b9fd68156ae76fbffa706","platform":"polymarket","title":"Will Arsenal win the 2025–26 English Premier League?","description":"This is a polymarket on whether the listed club will win the 2025–26 English Premier League.\n\nThis market will resolve to \"Yes\" if the listed club is officially crowned the winner of the 2025–26 English Premier League. Otherwise, it will resolve to \"No\".\n\nIf at any point it becomes impossible for the listed club to win the league (e.g. they are mathematically eliminated), the market will resolve to \"No\".\n\nIf the 2025–26 English Premier League season is canceled or not completed by October 1, 2026, this market will resolve to \"Other\".\n\nThe primary resolution source will be official information from the English Premier League. A consensus of credible reporting may also be used.","keywords":["arsenal","soccer","premier league","england","win","2025","26","english","premier","league","arsenal win","win the","football","epl","polymarket","listed","club","league.","resolve","yes","officially","crowned"],"yesPrice":0.42,"noPrice":0.57,"yesAsk":0.42,"noAsk":0.57,"volume24h":90550.037587,"url":"https://polymarket.com/event/english-premier-league-winner","category":"sports","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"566187","oneDayPriceChange":0,"endDate":"2026-05-27"},{"id":"polymarket-0x03865bd6273b82fe88954a2cf647be4dcc4ebcf03f0e5ef704386318fe409fea","platform":"polymarket","title":"Will Jeon Hyun-heui win the 2026 Seoul Mayoral Election","description":"The 2026 Seoul mayoral election is scheduled to take place on June 3, 2026 to elect the next mayor of Seoul.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nIf the result of this election isn't known by January 31, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the South Korean government, specifically the National Election Commission.","keywords":["jeon","hyun-heui","win","2026","seoul","mayoral","election","hyun-heui win","win the","mayoral election","scheduled","take","place","june","3","elect","next","mayor"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":89888.52427799998,"url":"https://polymarket.com/event/2026-seoul-mayoral-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"678940","oneDayPriceChange":0,"endDate":"2026-06-03"},{"id":"polymarket-0x518a5b030b205706b8ffe6bbad9bd3de59548348e5c0471827f5de21e513333c","platform":"polymarket","title":"Strait of Hormuz traffic returns to normal by end of May?","description":"This market will resolve to “Yes” if IMF Portwatch publishes a 7-day moving average of transit calls (“Arrivals of Ships”) for the Strait of Hormuz equal to or above 60 for any date between market creation and May 31, 2026. Otherwise, this market will resolve to “No”.\n\nDaily transit calls include container, dry bulk, roll-on/roll-off, general cargo, and tanker ships. Ships not reported by IMF Portwatch will not be considered.\n\nThis market will resolve as soon as IMF Portwatch publishes a 7-day moving average of transit calls equal to or above the specified level, or once data has been published for the final date in the specified period and no such value has been published. If no data has been published for the final date of the specified period within 14 calendar days (ET) after the end of that period, this market will resolve based on data published up to that point.\n\nRevisions to previously published data points made within this market’s timeframe will be considered. However, they will not disqualify a previously published data point from qualifying. Revisions to previously published data points after data is published for May 31, 2026, however, will not be considered.\n\nThe resolution source for this market will be IMF Portwatch, specifically the transit calls data published for the Strait of Hormuz at https://portwatch.imf.org/pages/cb5856222a5b4105adc6ee7e880a1730, both in the chart and through downloadable files.","keywords":["strait","hormuz","traffic","returns","normal","end","resolve","yes","imf","portwatch","publishes","7-day","moving","average"],"yesPrice":0.71,"noPrice":0.29,"yesAsk":0.71,"noAsk":0.29,"volume24h":89606.33169899996,"url":"https://polymarket.com/event/strait-of-hormuz-traffic-returns-to-normal-by-end-of-may","category":"technology","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"1809560","oneDayPriceChange":0.05,"endDate":"2026-05-31"},{"id":"polymarket-0x3fb8a8de2ac275882d72b2c4f22d41776fcf033f9e413a77a84dd395c0d5257c","platform":"polymarket","title":"Will Saudi Arabia win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["saudi","saudi arabia","oil","opec","arabia","win","2026","fifa","soccer","world cup","world","cup","arabia win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":89584.41899900002,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"558972","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x8616bfa937c684de4f0fcdd9b373b668ac9cbccdf168016e20e7b96f58dfe915","platform":"polymarket","title":"Will Bad Bunny have the greatest number of monthly Spotify listeners this month?","description":"This market will resolve according to the listed artist with the greatest number of monthly listeners according to Spotify on April 30, 2026, 12PM ET.\n\nThe monthly listener count is listed on each artist's public Spotify profile. Only primary artist profiles will qualify; features or collaborations under another artist profile will not count towards the featured artist's total.\n\nIn the event of an exact tie for the number of monthly listeners, this market will resolve in favor of the listed artist whose name comes first in alphabetical order.\n\nIf Spotify is down at the listed time on the listed date, this market will resolve based on the most recent available data.\n\nThe resolution source for this market will be Spotify.","keywords":["bad","bunny","greatest","number","monthly","spotify","listeners","month","resolve","according","listed","artist","april","30","2026","12pm"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":89037.15199999999,"url":"https://polymarket.com/event/top-spotify-artist-in-april","category":"other","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"1705041","oneDayPriceChange":-0.003,"endDate":"2026-04-30"},{"id":"polymarket-0xe5c26c71732b00f7e967903079ab24166a4fa2be62012a8ce4393e79b26cdaa7","platform":"polymarket","title":"Will Poland win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["poland","win","eurovision","2026","poland win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":88754.93361499996,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"842029","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0x2b1a5aa2f2bad83ac7efacfa77328930a010b3eb6208313767b591bb3757bea1","platform":"polymarket","title":"Will Armenia win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["armenia","win","eurovision","2026","armenia win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":88729.57160299997,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"842038","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0xf7c252ad31286ada89db99be13597440c560902399c76c38467fa86b0afafc38","platform":"polymarket","title":"Will Felix Auger Aliassime win the 2026 Men's US Open?","description":"The 2026 U.S. Open tennis tournament is scheduled for August 23 - September 13, 2026.\n\nThis market will resolve to the player that wins the 2026 U.S. Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 U.S. Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 U.S. Open Men’s Singles Tournament is cancelled, postponed after October 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the U.S. Open (https://www.usopen.org/index.html); however, a consensus of credible reporting may also be used.","keywords":["felix","auger","aliassime","win","2026","men's","open","aliassime win","win the","us open","tennis","grand slam","u.s.","tournament","scheduled","august","23","september","13","2026."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":88010.82092500004,"url":"https://polymarket.com/event/2026-mens-us-open-winner-tennis","category":"other","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"1088480","oneDayPriceChange":-0.0005,"endDate":"2026-09-13"},{"id":"polymarket-0x92fe546f73bbe6f2c1e6f5ad8ebfc78c2b9ae4a45ae9c89269118bae045e3a2b","platform":"polymarket","title":"Will United Kingdom win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["united","kingdom","win","eurovision","2026","kingdom win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":87777.99374999994,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"842037","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0xbaf7780f9059e34b84301fd411f8dc573b4d56adfe6e0cda33daf304b1438da4","platform":"polymarket","title":"Will Ecuador win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["ecuador","win","2026","fifa","soccer","world cup","world","cup","ecuador win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":87378.39876999994,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"558955","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x48fbf70c1713e71a405052bc4641e26dbba435fa557672c4040763c901cbf606","platform":"polymarket","title":"Will Trump visit China by April 30?","description":"If U.S. President Donald Trump visits China by April 30, 2026, 11:59 PM ET, this market will resolve to \"Yes\". Otherwise, this market will resolve to \"No\".\n\nFor the purpose of this market, a \"visit\" is defined as Trump physically entering the terrestrial or maritime territory of the listed country. Whether or not Trump enters the country's airspace during the timeframe of this market will have no bearing on a positive resolution.\n\nThe primary resolution source for this information will be official information from government of the United States of America, official information from Trump or released by his verified social media accounts (e.g. https://twitter.com/POTUS), however, a consensus of credible reporting will also be used.","keywords":["trump","president","potus","administration","gop","republican","visit","china","chinese","prc","beijing","xi","april","30","u.s.","donald","visits","2026","11","59","resolve","yes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":87323.970608,"url":"https://polymarket.com/event/will-trump-visit-china-by","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"706279","oneDayPriceChange":0.001,"endDate":"2026-04-30"},{"id":"polymarket-0xdce84960dce38aa4a5800a5eba7c9ac34d2ce49ba9d44c42572c472d468af264","platform":"polymarket","title":"Will Raphael Warnock win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["raphael","warnock","win","2028","democratic","presidential","nomination","warnock win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":87207.68909599994,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"559664","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x3265b10daeb30dbcc3214bd02e488551d0a5d3028392f4152e4750b943fbfc91","platform":"polymarket","title":"Will Tim Walz win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["tim","walz","win","2028","democratic","presidential","nomination","walz win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":87141.44609999997,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"559666","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xf8dee8afce7415675a5cb8db05ab37bfa070a6192e9aa5051394b40839d9ccb8","platform":"polymarket","title":"Will the price of Bitcoin be above $80,000 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["bitcoin","btc","crypto","above","80000","april","21","be above","above 80000","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":86511.740793,"url":"https://polymarket.com/event/bitcoin-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"1981840","oneDayPriceChange":-0.0155,"endDate":"2026-04-21"},{"id":"polymarket-0xa9433e26ddb6e037fd5c7c7451f77829740822fa12e2bdf82406624661434ba0","platform":"polymarket","title":"Will the US strike 14 countries in 2026?","description":"This market will resolve according to the total number of different countries' soil that the United States initiates a drone, missile, or air strike on between January 1, 2026, 12:00 AM ET and December 31, 2026, 11:59 PM ET.\n\nStrikes on embassies or consulates will count towards the country the embassy or consulate is located in, not towards the country they represent.\n\nStrikes within the territory controlled by the United States as of December 31, 2025, 11:59 PM ET will not be counted towards this market's resolution.\n\nFor the purposes of this market, a qualifying \"strike\" is defined as the use of aerial bombs, drones, or missiles (including cruise or ballistic missiles) launched by US military forces that impact another country's ground territory that is officially acknowledged by the US government or a consensus of credible reporting.\n\nMissiles or drones that are intercepted and surface-to-air missile strikes will not count towards the resolution of this market, regardless of whether they land on another country's territory or cause damage.\n\nActions such as artillery fire, small arms fire, FPV or ATGM strikes directly, ground incursions, naval shelling, cyberattacks, or other operations conducted by US ground operatives will not qualify.\n\nThe resolution source will be a consensus of credible reporting.","keywords":["strike","14","countries","2026","resolve","according","total","number","different","countries'","soil","united"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":86371.22999999998,"url":"https://polymarket.com/event/how-many-different-countries-will-the-us-strike-in-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"678783","oneDayPriceChange":-0.0015,"endDate":"2026-12-31"},{"id":"polymarket-0x8fc141205ebce5adf437bfdf4d0c5ff58ff24293b79c9431991346c208bb48ed","platform":"polymarket","title":"Will Tulsi Gabbard win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["tulsi","gabbard","win","2028","presidential","election","gabbard win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":86368.22638799995,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"561242","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x9d4f94f82de9d13ff1d3318639ab9000ee2533949e525343156f374fb00bd9b1","platform":"polymarket","title":"Will Mark Cuban win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["mark","cuban","win","2028","democratic","presidential","nomination","cuban win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":86316.16634499999,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"559662","oneDayPriceChange":0.001,"endDate":"2028-11-07"},{"id":"polymarket-0xd5659eea81cada0bac656f5a9099861786cbae6755e2e1ac2c9e9441908b551f","platform":"polymarket","title":"Will Steve Bannon win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["steve","bannon","win","2028","republican","presidential","nomination","bannon win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":85576.56152300003,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"562001","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x33a87d02fa01e958929385c74b8627d32cc4474e9ebd312d268865c5207147fa","platform":"polymarket","title":"Will Jordan win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["jordan","win","2026","fifa","soccer","world cup","world","cup","jordan win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":84755.21499999997,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"558962","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x35d8c42a467d4e485ffba50c5d2d984ed0793f4935319ca923b494798051c8ef","platform":"polymarket","title":"Will WTI Crude Oil (WTI) hit (HIGH) $110 in April?","description":"This market will resolve to \"Yes\" if, at any point between market creation and the final trading day during April 2026, any 1-minute candle for the Active Month of WTI Crude Oil futures has a final \"High\" price equal to or above the listed price. Otherwise, this market will resolve to \"No\".\n\nFor WTI futures, the active month refers to the nearest listed contract month. The active month changes at 6:00:00 PM ET at the start of the trading session two business days prior to that contract's last trading day, at which point the next listed contract becomes the active month.\n\nFor WTI Crude Oil (CL) futures, the last trading day is defined as three business days prior to the 25th calendar day of the month preceding the contract's delivery month (or four business days prior if the 25th calendar day is not a business day), consistent with CME contract specifications.\n\nOnly prices achieved during the applicable trading session for the underlying market will be considered. Under the standard schedule, trading is open from 6:00:00 PM ET Sunday through 5:00:00 PM ET Friday, with a daily break from 5:00:00 PM ET to 6:00:00 PM ET, except where modified by holiday or special-session hours as listed on Pyth.\n\nPrices will be used exactly as published by Pyth, without rounding.\n\nIf the Active Month contract does not trade at all during the listed time frame, this market will resolve to \"No\".\n\nIn the event of a contract specification change, feed change, or similar structural modification affecting the underlying market during the listed time frame, this market will resolve based on adjusted prices as displayed on Pyth.\n\nThe resolution source for this market is Pyth — specifically, the Active Month WTI Crude Oil futures \"High\" prices available at https://pythdata.app/explore?search=WTI, with the chart settings configured for 1-minute candles.\n\nHistorical 1-minute candles may be accessed by appending a Unix timestamp (seconds) to the Pyth chart URL using the \"t=\" parameter.\n\nIf the relevant Pyth data is unavailable due to a system outage, data failure, or other technical disruption that prevents verification of the required 1-minute candle data, the official daily high price published for the Active Month WTI Crude Oil (CL) futures contract by CME Group may be used to determine whether the listed price was reached during the applicable trading session.","keywords":["wti","oil","crude","energy","hit","high","110","april","wti hit","hit high","resolve","yes","point","between","creation","final","trading","day"],"yesPrice":0.15,"noPrice":0.84,"yesAsk":0.15,"noAsk":0.84,"volume24h":84691.42461199999,"url":"https://polymarket.com/event/what-price-will-wti-hit-in-april-2026","category":"climate","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"1929170","oneDayPriceChange":-0.085,"endDate":"2026-04-30"},{"id":"polymarket-0x1d519b87999e3d4e90e1e8f57b5eee73a0ba488ff3fdb70867f294733aba84a9","platform":"polymarket","title":"Will Andy Beshear win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["andy","beshear","win","2028","democratic","presidential","nomination","beshear win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":84640.14592499999,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"559660","oneDayPriceChange":0.001,"endDate":"2028-11-07"},{"id":"polymarket-0x64396449b471b10b006285fa49dd9a5df535694de7b4c703fdeb0d88d5c4cd33","platform":"polymarket","title":"Will Vivek Ramaswamy win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["vivek","doge","republican","government efficiency","ramaswamy","win","2028","presidential","election","ramaswamy win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":84224.23222400005,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"561248","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x9b6ba70c448a1ea821a7e75fee63064aca75d13fc728c3c6b4b2cc629541150a","platform":"polymarket","title":"Will the price of Bitcoin be above $78,000 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["bitcoin","btc","crypto","above","78000","april","21","be above","above 78000","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.1,"noPrice":0.9,"yesAsk":0.1,"noAsk":0.9,"volume24h":84137.28751299999,"url":"https://polymarket.com/event/bitcoin-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"1981837","oneDayPriceChange":0,"endDate":"2026-04-21"},{"id":"polymarket-0x84edef36bded182da6a395ac6c785dba8f3e09b6c5ad041385b2042536cbef25","platform":"polymarket","title":"Will Iran win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["iran","nuclear","sanctions","middle east","win","2026","fifa","soccer","world cup","world","cup","iran win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":84055.82983299998,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"558959","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0xe29b33ef5bf351c8a22bfd79f8b58e62649d54ceee6f9735387cef79f52fecae","platform":"polymarket","title":"Will Wes Moore win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["wes","moore","win","2028","presidential","election","moore win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":83762.19143999998,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"561235","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x5ec80dc407457301f282a2b44341947afc700dfaa7923d14c8894e04bc63b03f","platform":"polymarket","title":"Will the next Prime Minister of Hungary be Viktor Orbán?","description":"Parliamentary elections are scheduled to be held in Hungary on April 12 2026.\n\nThis market will resolve to the individual who is next officially appointed and confirmed as Prime Minister of Hungary following the 2026 parliamentary election.\n\nTo count for resolution, the individual must be formally elected and appointed to the role of Prime Minister. Any interim or caretaker Prime Minister will not count toward the resolution of this market.\n\nIf no such Prime Minister is confirmed by December 31, 2026, 11:59 PM ET, this market will resolve to “Other.”\n\nThe primary resolution source for this market will be official information from the Government of Hungary; however, a consensus of credible reporting may also be used.","keywords":["next","prime","minister","hungary","viktor","orb","parliamentary","elections","scheduled","held","april","12","2026.","resolve"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":83284.013179,"url":"https://polymarket.com/event/next-prime-minister-of-hungary","category":"other","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"567560","oneDayPriceChange":0.001,"endDate":"2026-04-12"},{"id":"polymarket-0x6897736d782ce70f47126dfcec6669073f563d6e757e60bc61c0367370d6f73e","platform":"polymarket","title":"Kharg Island no longer under Iranian control by June 30?","description":"This market will resolve to \"Yes\" if Kharg Island is no longer under Iranian control by June 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\n“No longer under the control of Iran” means that Iran no longer exercises primary governmental or military control over Kharg Island, and another state, occupying force, or internationally backed authority has established control over the island.\n\nTemporary raids, isolated landings, special operations, bombardment, sabotage, naval presence offshore, or temporary disruption of Iranian activity will not qualify on their own.\n\nAn announcement, threat, or claim that Iran has lost control will not qualify without actual control being established.\n\nIf control changes pursuant to a negotiated settlement, ceasefire term, surrender, or transfer agreement, this will qualify only once actual control has been established on the island.\n\nIf control over Kharg Island is contested, unclear, disputed, or not sufficiently established by the resolution date, this will not qualify, and the market will resolve to “No”.\n\nThe primary resolution source will be official statements from the relevant governments and militaries, along with a consensus of credible reporting.","keywords":["kharg","island","no","longer","under","iranian","control","june","30","island no","no longer","longer under","under iranian","resolve","yes","2026","11","59","et.","otherwise","iran"],"yesPrice":0.14,"noPrice":0.85,"yesAsk":0.14,"noAsk":0.85,"volume24h":83131.64683900001,"url":"https://polymarket.com/event/kharg-island-no-longer-under-iranian-control-by-march-31","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"1708086","oneDayPriceChange":-0.03,"endDate":"2026-06-30"},{"id":"polymarket-0xeeb1b35c595b19f9512c55f85fdf93f3625c3cec1a9b6bac6262921fbd87912e","platform":"polymarket","title":"Trump out as President by June 30?","description":"This market will resolve to “Yes” if Donald Trump resigns or is removed as President or otherwise ceases to be the President of the United States for any period of time by June 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nAn announcement of Donald Trump's resignation/removal before this market's end date will immediately resolve this market to \"Yes\", regardless of when the announced resignation/removal goes into effect.\n\nOnly permanent removal from office will qualify. Temporary removal (e.g. temporary invocation of the 25th Amendment under Section 3 or a Section 4 invocation not sustained by both Houses of Congress) or impeachment without removal will not count.\n\nA sustained invocation of the Twenty-Fifth Amendment, Section 4 (i.e., if both Houses of Congress, by two-thirds vote, uphold the Vice President and Cabinet’s determination of presidential inability) will qualify for a \"Yes\" resolution. \n\nThe resolution source for this market will be a consensus of credible reporting.","keywords":["trump","president","potus","administration","gop","republican","out","june","30","resolve","yes","donald","resigns","removed","otherwise","ceases","united"],"yesPrice":0.04,"noPrice":0.95,"yesAsk":0.04,"noAsk":0.95,"volume24h":82887.905909,"url":"https://polymarket.com/event/trump-out-as-president-by-june-30","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"1559394","oneDayPriceChange":-0.01,"endDate":"2026-06-30"},{"id":"polymarket-0x2d3c4fc5cde6dfb43448402b912e41bd4453e3f030448ed026bff8f1a0bc072e","platform":"polymarket","title":"Will Eric Trump win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["eric","trump","president","potus","administration","gop","republican","win","2028","presidential","election","trump win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":82661.42827699998,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"561263","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x42c86ccd2f53f6265d28e351b4e124df60a8cea3df23da8d965cdc4b401b6012","platform":"polymarket","title":"Will Alibaba have the best AI model at the end of April 2026?","description":"This market will resolve according to the company that owns the model that has the highest arena score based on the Chatbot Arena LLM Leaderboard (https://lmarena.ai/) when the table under the \"Leaderboard\" tab is checked on April 30, 2026, 12:00 PM ET.\n\nResults from the \"Score\" column under the \"Text Arena | Overall\" Leaderboard tab at https://lmarena.ai/leaderboard/text with style control off will be used to resolve this market.\n\nModels will be ranked primarily by their arena score at this market’s check time, with alphabetical order of company names as listed in this market group used as a tiebreaker (e.g., if the two models are tied by arena score, “Google” would be ranked ahead of “xAI”). This market will resolve based on the company that occupies first place under this ranking.\n\nThe resolution source for this market is the Chatbot Arena LLM Leaderboard found at https://lmarena.ai/. If this resolution source is unavailable at check time, this market will remain open until the leaderboard comes back online and will resolve based on the first check after it becomes available. If it becomes permanently unavailable, this market will resolve based on another resolution source.","keywords":["alibaba","best","model","end","april","2026","resolve","according","company","owns","highest","arena","score","based"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":82657.50999999997,"url":"https://polymarket.com/event/which-company-has-the-best-ai-model-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:45.801Z","numericId":"1664040","oneDayPriceChange":0,"endDate":"2026-04-30"},{"id":"polymarket-0x722db2841f8405ffb54ecc960ca2fbd765c3b1f75cfc5d4ff392dcf84dfacf40","platform":"polymarket","title":"Will Ethereum reach $2,600 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for ETH/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final High price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the ETH/USDT High prices available at https://www.binance.com/en/trade/ETH_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance ETH/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["ethereum","eth","crypto","reach","2600","april","ethereum reach","reach 2600","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.24,"noPrice":0.76,"yesAsk":0.24,"noAsk":0.76,"volume24h":82284.76723200001,"url":"https://polymarket.com/event/what-price-will-ethereum-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.802Z","numericId":"1823796","oneDayPriceChange":0.02,"endDate":"2026-05-01"},{"id":"polymarket-0x3cc62b3ec93e53e0766cecb28f57f55acb9ca73ffdfa0e4b0a1b914aebb30046","platform":"polymarket","title":"Will Azerbaijan win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["azerbaijan","win","eurovision","2026","azerbaijan win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":81843.922981,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"technology","lastUpdated":"2026-04-20T19:49:45.802Z","numericId":"842007","oneDayPriceChange":-0.001,"endDate":"2026-05-16"},{"id":"polymarket-0x3dbf1d213f9048353b073e8b02585b1d378b88cd05599abd23b00709120ad1f7","platform":"polymarket","title":"Will Austria win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["austria","win","eurovision","2026","austria win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":81327.51394600005,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.802Z","numericId":"842006","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0xd08544f6162283dc8d0a82f16362aab837a8537379df9bbe604960eec9cd4618","platform":"polymarket","title":"US-Iran nuclear deal by April 30?","description":"This market will resolve to \"Yes\" if an official agreement over Iranian nuclear research and/or nuclear weapon development, defined as a publicly announced mutual agreement, is reached between the United States and Iran by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nIf such an agreement is officially reached before the resolution date, this market will resolve to \"Yes\", regardless of if/when the agreement goes into effect.\n\nAgreements that include the United States and Iran as parties, even if they also involve other countries (e.g., a multilateral deal like the JCPOA), will qualify for resolution.\n\nThe primary resolution source for this market will be an official announcement by the United States and/or the Islamic Republic of Iran, however an overwhelming consensus of credible reporting confirming an agreement has been reached will also qualify.","keywords":["us-iran","nuclear","deal","april","30","resolve","yes","official","agreement","over","iranian","research","weapon"],"yesPrice":0.4,"noPrice":0.6,"yesAsk":0.4,"noAsk":0.6,"volume24h":81308.45238099997,"url":"https://polymarket.com/event/us-iran-nuclear-deal-by-april-30","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.802Z","numericId":"1543487","oneDayPriceChange":0.035,"endDate":"2026-04-30"},{"id":"polymarket-0x88d573d2ba5e43e1320cf0eb733452feb4cb4a1d4780dcb05ac6ee6830c2e4c3","platform":"polymarket","title":"Will Pierre Gasly be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["pierre","gasly","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":81266.53039999996,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:45.802Z","numericId":"898423","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x15507748349a518f615b27ad8b48513d33bbc336ea0728307f38429f4beb01db","platform":"polymarket","title":"Will the Indian National Congress (INC) win the most seats in the 2026 West Bengal Legislative Assembly election?","description":"Parliamentary elections are to be scheduled to be held in West Bengal, India, in March–April 2026.\n\nThis market will resolve according to the political party that wins the greatest number of seats in the next West Bengal Legislative Assembly election. \n\nIf the results are not known definitively by October 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nIn the event of a tie between multiple parties for the most seats won, this market will resolve in favor of the party that received a greater number of valid votes. In the event that results in a tie, this market will resolve in favor of the party whose listed abbreviation appears first in alphabetical order.\n\nThis market's resolution will be based solely on the number of seats won by the named party in the West Bengal Parliament. \n\nThis market will resolve based on the results of this election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Indian government, specifically the Election Commission of India (ECI) (eci.gov.in). If there are multiple reports, this market will resolve based on the one that includes the most Assembly Constituents (AC).","keywords":["indian","national","congress","senate","legislation","house","inc","win","most","seats","2026","west","bengal","legislative","assembly","election","inc win","win the","assembly election","parliamentary","elections","scheduled","held","india","modi","rupee","bse"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":80136.15,"url":"https://polymarket.com/event/west-bengal-legislative-assembly-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.802Z","numericId":"951186","oneDayPriceChange":0,"endDate":"2026-04-29"},{"id":"polymarket-0xebea087687d29abcfc7ff807e68790c32b8aca18ff33d196ece0f54282b306b4","platform":"polymarket","title":"Will Belgium win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["belgium","win","eurovision","2026","belgium win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":79896.60828399999,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.802Z","numericId":"842008","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0xa2aa548967ab1c300887749c7313386015167eb3419109009ff9dbeaa3dd35e0","platform":"polymarket","title":"Will San Marino win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["san","marino","win","eurovision","2026","marino win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":79820.76216399997,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.802Z","numericId":"842032","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0xc6c25c2150b2e2c7758ee0ad8640324f60086367fc689f0bca618621c890a2c6","platform":"polymarket","title":"Will Trump post \"POTUS\" this week on Truth Social?","description":"This market will resolve to \"Yes\" if @realDonaldTrump posts/truths the listed term between April 13, 2026, 12:00 AM ET and April 19, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nFor the purposes of this market, all text posted by the listed account in quote and reply posts/truths count toward a \"Yes\" resolution, but quoted posts/truths and reposts/reTruths will not count.\n\nText posted in images, memes, or other non-animated, non-video media that are not strictly text will qualify towards a \"Yes\" resolution only if the listed term is spelled out clearly and in full. (e.g., words spelled out in a letter posted as a .jpg will qualify, however a word posted as part of an animated .gif will not.)\n\nAny plural or possessive forms of a listed term, as well as variance in capitalizations, will count toward the resolution of this market, regardless of context. Other forms of the listed term will NOT count.\n\nExtraneous symbols being inserted into a word (ex: r@d1cal, for \"radical\") will disqualify it from counting toward a \"Yes\" resolution.\n\nMisspellings or iterations of the listed term, including all grammatical or slang forms, or misspellings with extra, missing, or incorrect letters (ex: helloooooooo or heoll, for ‘hello’), will not count toward a “Yes” resolution, regardless of context or intent.\n\nInstances where the term is used in a compound word will count regardless of context (e.g. joyful is not a compound word for \"joy,\" however \"killjoy\" is a compounding of the words \"kill\" and \"joy\").\n\nThe resolution source for this market will be Donald Trumps's verified Truth Social account: @realDonaldTrump\n\nPlease note, only the @realDonaldTrump verified Truth Social account counts for this market, regardless of the URL for this profile. If Donald Trump posts/truths from another account, it has no bearing on the resolution of this market.","keywords":["trump","president","potus","administration","gop","republican","post","white house","week","truth","social","resolve","yes","realdonaldtrump","posts","truths","listed","term","between"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":79643.91794500002,"url":"https://polymarket.com/event/what-will-trump-post-this-week-april-13-april-19","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.850Z","numericId":"1939850","oneDayPriceChange":0.538,"endDate":"2026-04-19"},{"id":"polymarket-0x52bda1b8d68c469eb3176f2052f4da7cacc65a814c51f53294637d124af6afde","platform":"polymarket","title":"Will J.D. Vance have a diplomatic meeting with Iran by April 30?","description":"This market will resolve to \"Yes\" if there is a diplomatic meeting between the listed individual, acting as a representative of the United States, and representatives of Iran by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nTo qualify, the listed individual must be physically present at the meeting and actively participate as a negotiator representing the United States.\n\nA diplomatic meeting refers to a deliberate meeting between representatives of the listed countries who are acting in an official capacity and are authorized to engage in negotiation or diplomacy regarding US-Iranian relations on behalf of their governments. Meetings conducted indirectly, for example, through designated mediators, facilitators, or interlocutors acting with the knowledge and authorization of the relevant governments, will qualify.\n\nBrief greetings, chance encounters, or talks otherwise not deliberately aimed at diplomacy or negotiation will not count.\n\nThe meeting must be in-person and must be publicly acknowledged by either government or reported by a consensus of credible media. Remote meetings, phone calls, or other meetings where the relevant parties are not present will not count.\n\nThe primary resolution source for this market will be official information from the listed individual and the governments of the United States and Iran; however, a consensus of credible reporting will also be used.","keywords":["j.d.","vance","diplomatic","meeting","iran","nuclear","sanctions","middle east","april","30","resolve","yes","there","between","listed","individual","acting","representative"],"yesPrice":0.87,"noPrice":0.13,"yesAsk":0.87,"noAsk":0.13,"volume24h":79150.360507,"url":"https://polymarket.com/event/who-will-meet-with-iran-by-april-30","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.850Z","numericId":"1986538","oneDayPriceChange":0.1,"endDate":"2026-04-30"},{"id":"polymarket-0xffc9457fe8743745dc3e565131d57f2692d60391420b421a3859ccd441feddbd","platform":"polymarket","title":"Will Elon Musk post 115-139 tweets from April 18 to April 20, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 18 12:00 PM ET to April 20, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","115-139","tweets","april","18","20","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":79051.28920099999,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-18-april-20","category":"other","lastUpdated":"2026-04-20T19:49:45.850Z","numericId":"1999920","oneDayPriceChange":-0.005,"endDate":"2026-04-20"},{"id":"polymarket-0x295d35d1c69380d0938903dc7f70cf035c0f1283bccb502d651be8a1c1e1d390","platform":"polymarket","title":"Will Georgia win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["georgia","win","eurovision","2026","georgia win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":78370.251999,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.850Z","numericId":"842017","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0x46a4cf28264350ca9ac3f18a15e2636565a59df71fd30bdd9fb5be399f936e78","platform":"polymarket","title":"Will US Lecce win on 2026-04-20?","description":"In the upcoming game, scheduled for April 20, 2026\nIf US Lecce wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["lecce","win","2026-04-20","lecce win","win on","upcoming","game","scheduled","april","20","2026","wins","resolve"],"yesPrice":0.09,"noPrice":0.92,"yesAsk":0.09,"noAsk":0.92,"volume24h":78048.42743199997,"url":"https://polymarket.com/event/sea-lec-fio-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:45.850Z","numericId":"1897673","oneDayPriceChange":-0.19,"endDate":"2026-04-20"},{"id":"polymarket-0x882eb500b7722acbd5cdb8e66e253fb46574c4e9463007c0b4158fa98639b77d","platform":"polymarket","title":"Will Elon Musk post 440-459 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","440-459","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":77261.563387,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:45.850Z","numericId":"1977015","oneDayPriceChange":-0.003,"endDate":"2026-04-24"},{"id":"polymarket-0x5f1b1caf70eb994bfff2986727a05a3ac9f7ec8b0da4017f7732596d023e5a07","platform":"polymarket","title":"Will Kristi Noem win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["kristi","noem","win","2028","republican","presidential","nomination","noem win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":77152.612462,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.850Z","numericId":"561994","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x6ff8d96a792130aa08cfb1e8e1488aa9d4eb4ada325d46af666bb6a8d0e2b0b0","platform":"polymarket","title":"Will James Parkin win the 2026 Alaska governor election?","description":"This market will resolve according to the candidate who wins the 2026 Alaska gubernatorial election currently scheduled for November 3, 2026. \n\nIf the results of the election are not confirmed by July 31, 2027, this market will resolve to \"Other\". \n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race in Alaska for the same candidate, this market will resolve based on official certification.","keywords":["james","parkin","win","2026","alaska","governor","election","parkin win","win the","governor election","resolve","according","candidate","wins","gubernatorial","currently","scheduled","november"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":77037.15000000001,"url":"https://polymarket.com/event/alaska-governor-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.850Z","numericId":"635010","oneDayPriceChange":0.006,"endDate":"2026-11-03"},{"id":"polymarket-0x4e4a7df876b0c04f0b8b29b9073eddfbaf5c787192da825ae7ca1031bc8cfd15","platform":"polymarket","title":"Will the Fed decrease interest rates by 50+ bps after the June 2026 meeting?","description":"The FED interest rates are defined in this market by the upper bound of the target federal funds range. The decisions on the target federal funds range are made by the Federal Open Market Committee (FOMC) meetings.\n\nThis market will resolve to the amount of basis points the upper bound of the target federal funds rate is changed by versus the level it was prior to the Federal Reserve's June 2026 meeting.\n\nIf the target federal funds rate is changed to a level not expressed in the displayed options, the change will be rounded up to the nearest 25 and will resolve to the relevant bracket. (e.g. if there's a cut/increase of 12.5 bps it will be considered to be 25 bps)\n\nThe resolution source for this market is the FOMC’s statement after its meeting scheduled for June 16-17, 2026 according to the official calendar: https://www.federalreserve.gov/monetarypolicy/fomccalendars.htm.\n\nThe level and change of the target federal funds rate is also published at the official website of the Federal Reserve at https://www.federalreserve.gov/monetarypolicy/openmarket.htm.\n\nThis market may resolve as soon as the FOMC’s statement for their June meeting with relevant data is issued. If no statement is released by the end date of the next scheduled meeting, this market will resolve to the \"No change\" bracket.","keywords":["fed","federal reserve","fomc","interest rates","decrease","interest","rates","50","bps","basis points","after","june","2026","meeting","bps after","after the","defined","upper","bound","target","federal","funds","range.","decisions"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":76804.83476599999,"url":"https://polymarket.com/event/fed-decision-in-june-825","category":"economics","lastUpdated":"2026-04-20T19:49:45.850Z","numericId":"906972","oneDayPriceChange":0.002,"endDate":"2026-06-17"},{"id":"polymarket-0x450810ae738a0ff820d3248f2b24937f63fb8c8cf422ed2a915125adb4d9d3c8","platform":"polymarket","title":"Will Andrew Yang win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["andrew","yang","win","2028","democratic","presidential","nomination","yang win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":76664.772956,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"559688","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xb37e5f6ece2db9165517b62e3257e0da5d3e79713883cb71c74013fe912e8a4d","platform":"polymarket","title":"Netanyahu out by April 30?","description":"This market will resolve to “Yes” if Benjamin Netanyahu ceases to be Prime Minister of Israel for any period of time between market creation and the specified date (ET). Otherwise, this market will resolve to “No”.\n\nAn announcement of Benjamin Netanyahu's resignation/removal before this market's end date will immediately resolve this market to \"Yes\", regardless of when the announced resignation/removal goes into effect.\n\nThe resolution source for this market will be official information from Benjamin Netanyahu and the government of Israel; however, a consensus of credible reporting may also be used.","keywords":["netanyahu","out","april","30","resolve","yes","benjamin","ceases","prime","minister","israel","gaza"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":76654.72769499998,"url":"https://polymarket.com/event/netanyahu-out-before-2027","category":"other","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"1632763","oneDayPriceChange":0.0005,"endDate":"2026-04-30"},{"id":"polymarket-0x4567b275e6b667a6217f5cb4f06a797d3a1eaf1d0281fb5bc8c75e2046ae7e57","platform":"polymarket","title":"Will Gavin Newsom win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["gavin","newsom","win","2028","presidential","election","newsom win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.18,"noPrice":0.82,"yesAsk":0.18,"noAsk":0.82,"volume24h":76229.42344699998,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"561230","oneDayPriceChange":0.011,"endDate":"2028-11-07"},{"id":"polymarket-0xa315788fbf3b6f7a72ebc75fa28e23aba5cbb3b51500a8ce12a290249c0f1104","platform":"polymarket","title":"Will Bitcoin reach $95,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final High price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT High prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","reach","95000","april","bitcoin reach","reach 95000","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":76069.412327,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"1823773","oneDayPriceChange":0,"endDate":"2026-05-01"},{"id":"polymarket-0xae70ab9bf1c3726fe430a2ba8b517697ae24e0f0ab554b876a5b521153068882","platform":"polymarket","title":"Will Tim Walz win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["tim","walz","win","2028","presidential","election","walz win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":75421.02039100003,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"561247","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xedcc1af0d27a8e2d59466ec26156050b11187aebc6fb02becf50ca685f5475ba","platform":"polymarket","title":"Will Meituan have the best AI model at the end of April 2026?","description":"This market will resolve according to the company that owns the model that has the highest arena score based on the Chatbot Arena LLM Leaderboard (https://lmarena.ai/) when the table under the \"Leaderboard\" tab is checked on April 30, 2026, 12:00 PM ET.\n\nResults from the \"Score\" column under the \"Text Arena | Overall\" Leaderboard tab at https://lmarena.ai/leaderboard/text with style control off will be used to resolve this market.\n\nModels will be ranked primarily by their arena score at this market’s check time, with alphabetical order of company names as listed in this market group used as a tiebreaker (e.g., if the two models are tied by arena score, “Google” would be ranked ahead of “xAI”). This market will resolve based on the company that occupies first place under this ranking.\n\nThe resolution source for this market is the Chatbot Arena LLM Leaderboard found at https://lmarena.ai/. If this resolution source is unavailable at check time, this market will remain open until the leaderboard comes back online and will resolve based on the first check after it becomes available. If it becomes permanently unavailable, this market will resolve based on another resolution source.","keywords":["meituan","best","model","end","april","2026","resolve","according","company","owns","highest","arena","score","based"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":75409.88099999996,"url":"https://polymarket.com/event/which-company-has-the-best-ai-model-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"1664049","oneDayPriceChange":0,"endDate":"2026-04-30"},{"id":"polymarket-0x233ce0c3969a5cd5079287f16fcd283be7c1db82263e08697f85dbe1b4d2113c","platform":"polymarket","title":"Will South Africa win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["south","africa","emerging markets","win","2026","fifa","soccer","world cup","world","cup","africa win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":75131.081833,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"558964","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x52847ca1413b76a5570b97c0c432e38dbe61b0140f9d45e912604591b08f6fca","platform":"polymarket","title":"Will the Montreal Canadiens win the 2026 NHL Stanley Cup?","description":"This market will resolve to “Yes” if the Montreal Canadiens win the 2026 NHL Stanley Cup. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NHL Stanley Cup based off the rules of the NHL.\n\nThe resolution source for this market will be information from the NHL.\n","keywords":["montreal","canadiens","win","2026","nhl","hockey","stanley","cup","canadiens win","win the","resolve","yes","cup.","otherwise","no","becomes","impossible","team"],"yesPrice":0.06,"noPrice":0.94,"yesAsk":0.06,"noAsk":0.94,"volume24h":74981.72154200001,"url":"https://polymarket.com/event/2026-nhl-stanley-cup-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"553849","oneDayPriceChange":0.011,"endDate":"2026-06-30"},{"id":"polymarket-0x969e18e715c39bee7e8b6d3c39cc6dea7c0239fe5003120fbb0adf79fb05bc19","platform":"polymarket","title":"Will the price of Bitcoin be above $70,000 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["bitcoin","btc","crypto","above","70000","april","21","be above","above 70000","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":74592.62810399999,"url":"https://polymarket.com/event/bitcoin-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"1981821","oneDayPriceChange":0.0235,"endDate":"2026-04-21"},{"id":"polymarket-0x1fa4c5e080e59674d14625faa0360cc7716c92fc063cfdb8506af2dd5af469ab","platform":"polymarket","title":"EU/NATO country announces peacekeeping force in Ukraine by June 30?","description":"This market will resolve to \"Yes\" if any NATO or EU member country officially announces that they will be sending troops to Ukraine as part of a peacekeeping force by June 30, 2026, 11:59 PM ET. Otherwise this market will resolve to “No”.\n\nA qualifying announcement must be part of a formal agreement between a NATO or EU member country and another country or international organization or otherwise indicative of a formalized policy.\n\nAnnouncements which are statements of intent, contingent, or otherwise are not indicative of a formalized policy will not count\n\nThe primary resolution source for this market will be official information from NATO, the EU, or member states of either entity, however a consensus of credible reporting will also be used.","keywords":["nato","alliance","military","europe","ukraine","country","announces","peacekeeping","force","russia","war","zelensky","june","30","resolve","yes","member","officially","sending","troops","part","2026"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":74521.42,"url":"https://polymarket.com/event/eunato-country-announces-peacekeeping-force-in-ukraine-before-2027","category":"technology","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"1048246","oneDayPriceChange":-0.0055,"endDate":"2026-12-31"},{"id":"polymarket-0x8fbcb151e2c988df5a43abb02298014b7daf34c008f3eed9188dd16a2a19bec1","platform":"polymarket","title":"Will Jared Polis win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["jared","polis","win","2028","democratic","presidential","nomination","polis win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":74303.811666,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"559674","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xc6f68e3d5ce9efabbba7123bcceba0316b81e07707390869587a967ad4f87b16","platform":"polymarket","title":"Will the price of Bitcoin be above $68,000 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["bitcoin","btc","crypto","above","68000","april","21","be above","above 68000","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":73057.208681,"url":"https://polymarket.com/event/bitcoin-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"1981819","oneDayPriceChange":0.0075,"endDate":"2026-04-21"},{"id":"polymarket-0xe31a6c763685129123cb6a0f729bfce04b768c5a22cb09c5610406df1a302465","platform":"polymarket","title":"Will Donald Trump announce that the United States blockade of the Strait of Hormuz has been lifted by April 30, 2026?","description":"On April 12, 2026, President Donald Trump announced that the United States will blockade the Strait of Hormuz. You can read more about that here: https://www.nbcnews.com/world/iran/live-blog/live-updates-us-iran-fail-reach-deal-peace-talks-day-negotiations-rcna315918.\n\nThis market will resolve to \"Yes\" if President Trump, the US government, or the US military publicly and officially announces the end of the United States blockade of the Strait of Hormuz by the specified date, 11:59 PM ET. Otherwise, this market will resolve to \"No.\"\n\nQualifying statements must clearly and explicitly indicate that the United States has lifted, ended, or will lift or end its blockade of the Strait of Hormuz on a specified date or use equivalently definitive language unambiguously signaling that such blockade has ceased or is set to cease on a specified date (e.g., statements unambiguously indicating that US naval activity in the relevant area has ceased will qualify). \n\nStatements that merely describe actions inconsistent with the blockade (e.g., \"Iran resumed shipping through the Strait of Hormuz\") without explicitly indicating the blockade as lifted will not alone suffice.\n\nInformal announcements, statements from unnamed sources, or leaks do not qualify.\n\nWritten public statements from Donald Trump (e.g., posts from his personal Truth Social account) will qualify. Videos posted on his social media accounts will also qualify for a \"Yes\" resolution.\n\nThe primary resolution source for this market will be official statements from the US government and/or its official representatives; however, a consensus of credible reporting may also be used.\n\nNote: this market will resolve solely based on whether a qualifying announcement is made within the specified timeframe. Whether the blockade is effectively enforced or whether maritime traffic resumes absent a qualifying announcement will not be considered.","keywords":["donald","trump","president","potus","administration","gop","republican","announce","united","states","blockade","strait","hormuz","lifted","april","30","2026","donald trump","12","announced","hormuz.","you","read","more","about","here"],"yesPrice":0.6,"noPrice":0.4,"yesAsk":0.6,"noAsk":0.4,"volume24h":72860.41283799996,"url":"https://polymarket.com/event/trump-announces-us-blockade-of-hormuz-lifted-by","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"1961415","oneDayPriceChange":0.105,"endDate":"2026-04-30"},{"id":"polymarket-0x3cdf6fa07ce061ab6cdd26c7386b21d0b4c2cb3226d0a069cd8b597fdc667676","platform":"polymarket","title":"Will WTI Crude Oil (WTI) hit (HIGH) $105 in April?","description":"This market will resolve to \"Yes\" if, at any point between market creation and the final trading day during April 2026, any 1-minute candle for the Active Month of WTI Crude Oil futures has a final \"High\" price equal to or above the listed price. Otherwise, this market will resolve to \"No\".\n\nFor WTI futures, the active month refers to the nearest listed contract month. The active month changes at 6:00:00 PM ET at the start of the trading session two business days prior to that contract's last trading day, at which point the next listed contract becomes the active month.\n\nFor WTI Crude Oil (CL) futures, the last trading day is defined as three business days prior to the 25th calendar day of the month preceding the contract's delivery month (or four business days prior if the 25th calendar day is not a business day), consistent with CME contract specifications.\n\nOnly prices achieved during the applicable trading session for the underlying market will be considered. Under the standard schedule, trading is open from 6:00:00 PM ET Sunday through 5:00:00 PM ET Friday, with a daily break from 5:00:00 PM ET to 6:00:00 PM ET, except where modified by holiday or special-session hours as listed on Pyth.\n\nPrices will be used exactly as published by Pyth, without rounding.\n\nIf the Active Month contract does not trade at all during the listed time frame, this market will resolve to \"No\".\n\nIn the event of a contract specification change, feed change, or similar structural modification affecting the underlying market during the listed time frame, this market will resolve based on adjusted prices as displayed on Pyth.\n\nThe resolution source for this market is Pyth — specifically, the Active Month WTI Crude Oil futures \"High\" prices available at https://pythdata.app/explore?search=WTI, with the chart settings configured for 1-minute candles.\n\nHistorical 1-minute candles may be accessed by appending a Unix timestamp (seconds) to the Pyth chart URL using the \"t=\" parameter.\n\nIf the relevant Pyth data is unavailable due to a system outage, data failure, or other technical disruption that prevents verification of the required 1-minute candle data, the official daily high price published for the Active Month WTI Crude Oil (CL) futures contract by CME Group may be used to determine whether the listed price was reached during the applicable trading session.","keywords":["wti","oil","crude","energy","hit","high","105","april","wti hit","hit high","resolve","yes","point","between","creation","final","trading","day"],"yesPrice":0.22,"noPrice":0.78,"yesAsk":0.22,"noAsk":0.78,"volume24h":72741.87108100002,"url":"https://polymarket.com/event/what-price-will-wti-hit-in-april-2026","category":"climate","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"1980675","oneDayPriceChange":-0.055,"endDate":"2026-04-30"},{"id":"polymarket-0x9779c09fd4dd0a1c82dd82618269c2aa5669d91305293b396d1e0b8a166b566e","platform":"polymarket","title":"Will Panama win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["panama","win","2026","fifa","soccer","world cup","world","cup","panama win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":72709.99849999999,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"558979","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x4e228aa40f6edd94ed381dfbfc52b790ce51a5ff67b473388311842db25d8032","platform":"polymarket","title":"Will US Lecce vs. ACF Fiorentina end in a draw?","description":"In the upcoming game, scheduled for April 20, 2026\nIf the game ends in a draw, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve to \"Yes\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["lecce","vs.","acf","fiorentina","end","draw","upcoming","game","scheduled","april","20","2026","ends","resolve"],"yesPrice":0.24,"noPrice":0.76,"yesAsk":0.24,"noAsk":0.76,"volume24h":72595.74322799998,"url":"https://polymarket.com/event/sea-lec-fio-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"1897674","oneDayPriceChange":-0.05,"endDate":"2026-04-20"},{"id":"polymarket-0x191c90a6c432001b40b1e8bc4dd7af0abc857faa6326f8ea283bd8daa35e6148","platform":"polymarket","title":"Will Z.ai have the best AI model at the end of April 2026?","description":"This market will resolve according to the company that owns the model that has the highest arena score based on the Chatbot Arena LLM Leaderboard (https://lmarena.ai/) when the table under the \"Leaderboard\" tab is checked on April 30, 2026, 12:00 PM ET.\n\nResults from the \"Score\" column under the \"Text Arena | Overall\" Leaderboard tab at https://lmarena.ai/leaderboard/text with style control off will be used to resolve this market.\n\nModels will be ranked primarily by their arena score at this market’s check time, with alphabetical order of company names as listed in this market group used as a tiebreaker (e.g., if the two models are tied by arena score, “Google” would be ranked ahead of “xAI”). This market will resolve based on the company that occupies first place under this ranking.\n\nThe resolution source for this market is the Chatbot Arena LLM Leaderboard found at https://lmarena.ai/. If this resolution source is unavailable at check time, this market will remain open until the leaderboard comes back online and will resolve based on the first check after it becomes available. If it becomes permanently unavailable, this market will resolve based on another resolution source.","keywords":["z.ai","best","model","end","april","2026","resolve","according","company","owns","highest","arena","score","based"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":72463.05199999998,"url":"https://polymarket.com/event/which-company-has-the-best-ai-model-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"1664046","oneDayPriceChange":0,"endDate":"2026-04-30"},{"id":"polymarket-0xe77371d68925a220e9b1822e1cb7c51cf86fe764acb4cbf983a2944688531b5f","platform":"polymarket","title":"Will Gaziantep FK win on 2026-04-20?","description":"In the upcoming game, scheduled for April 20, 2026\nIf Gaziantep FK wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["gaziantep","win","2026-04-20","fk win","win on","upcoming","game","scheduled","april","20","2026","wins","resolve"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":72287.78942100004,"url":"https://polymarket.com/event/tur-gfk-kay-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"1762760","oneDayPriceChange":0.5795,"endDate":"2026-04-20"},{"id":"polymarket-0xcd836ec4d94b8a4ddc5713d80fe9db245d2fb4796eaf12337974da1b4e96100d","platform":"polymarket","title":"Will Congo DR win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["congo","win","2026","fifa","soccer","world cup","world","cup","dr win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":72274.825,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"558981","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x2d859e9b62672ab0e90238495c1799f37759f8a2e96b67e240ddbf679428e7c8","platform":"polymarket","title":"Will another country conduct military action against Iran by April 15, 2026?","description":"This market will resolve to “Yes” if any country other than Israel or the United States initiates a drone, missile, or air strike on Iranian soil or any official Iranian embassy or consulate by the listed date, 11:59 PM ET. Otherwise, this market will resolve to “No.”\n\nFor the purposes of this market, a qualifying “military action” is defined as the use of aerial bombs, drones, or missiles (including cruise or ballistic missiles) launched by a country other than Israel or the United States’ military forces that impact Iranian ground territory or any official Iranian embassy or consulate (e.g., if a weapons depot on Iranian soil is hit by a missile or drone launched by such a country, this market will resolve to “Yes”).\n\nMissiles or drones that are intercepted and surface-to-air missile strikes will not be sufficient for a “Yes” resolution, regardless of whether they land on Iranian territory or cause damage.\n\nActions such as artillery fire, small arms fire, FPV or ATGM strikes directly, ground incursions, naval shelling, cyberattacks, or other operations conducted by ground forces of countries other than Israel or the United States will not qualify.\n\nThe resolution source will be a consensus of credible reporting.\n\nIf the date/time of a strike cannot be confirmed by a consensus of credible reporting by the end of the third calendar date after this market's end date, it will resolve to \"No\" regardless of whether a strike was later confirmed to have taken place.","keywords":["country","conduct","military","action","against","iran","nuclear","sanctions","middle east","april","15","2026","resolve","yes","than","israel","gaza","hamas","middle east","united"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":71005.395806,"url":"https://polymarket.com/event/will-another-country-conduct-military-action-against-iran-by","category":"technology","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"1641031","oneDayPriceChange":-0.0025,"endDate":"2026-04-15"},{"id":"polymarket-0x6ac0f239c53763cc907a6707eb73d3b6a5b3308584efe37b10bad4174918377c","platform":"polymarket","title":"Will Anthropic have the best AI model at the end of April 2026?","description":"This market will resolve according to the company that owns the model that has the highest arena score based on the Chatbot Arena LLM Leaderboard (https://lmarena.ai/) when the table under the \"Leaderboard\" tab is checked on April 30, 2026, 12:00 PM ET.\n\nResults from the \"Score\" column under the \"Text Arena | Overall\" Leaderboard tab at https://lmarena.ai/leaderboard/text with style control off will be used to resolve this market.\n\nModels will be ranked primarily by their arena score at this market’s check time, with alphabetical order of company names as listed in this market group used as a tiebreaker (e.g., if the two models are tied by arena score, “Google” would be ranked ahead of “xAI”). This market will resolve based on the company that occupies first place under this ranking.\n\nThe resolution source for this market is the Chatbot Arena LLM Leaderboard found at https://lmarena.ai/. If this resolution source is unavailable at check time, this market will remain open until the leaderboard comes back online and will resolve based on the first check after it becomes available. If it becomes permanently unavailable, this market will resolve based on another resolution source.","keywords":["anthropic","ai","claude","llm","artificial intelligence","best","model","end","april","2026","resolve","according","company","owns","highest","arena","score","based"],"yesPrice":0.84,"noPrice":0.16,"yesAsk":0.84,"noAsk":0.16,"volume24h":70982.92704899998,"url":"https://polymarket.com/event/which-company-has-the-best-ai-model-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:45.851Z","numericId":"1664037","oneDayPriceChange":-0.085,"endDate":"2026-04-30"},{"id":"polymarket-0x4610581e0083b8d64854b8572232d65f69f11cbd64bee2dbe91929eab73c3e37","platform":"polymarket","title":"Will Bernard Arnault be richest person on December 31?","description":"This market will resolve according to the name ranked #1 on the Bloomberg Billionaires Index on December 31, 2026, 5:30 PM ET.\n\nThe primary resolution source for this market will be the Bloomberg Billionaires Index (https://www.bloomberg.com/billionaires/). If the data for the specified date is not released by December 31, 2026, 11:59 PM ET, the Forbes Real-Time Billionaires List will be used (https://www.forbes.com/real-time-billionaires/#6aa3f0213d78). If neither source provides the specified date's data by January 2, 2027, 11:59 PM ET, this market will resolve according to the latest data point available on the Bloomberg Billionaires Index.","keywords":["bernard","arnault","richest","person","december","31","resolve","according","name","ranked","1","bloomberg","billionaires","index"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":70892.6701,"url":"https://polymarket.com/event/richest-person-on-december-31-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"676940","oneDayPriceChange":-0.002,"endDate":"2026-12-31"},{"id":"polymarket-0xf05b4b55336a4c1c7b44c726911d2b559732cff7bad339084de86ae364dc85f6","platform":"polymarket","title":"Will Zohran Mamdani win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["zohran","mamdani","win","2028","presidential","election","mamdani win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":70883.39338099997,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"561256","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x663b88d3a8f2341bb8d878709dc78632bcaf7512e577bd15521e5d8ed933efbc","platform":"polymarket","title":"Will Hillary Clinton win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["hillary","clinton","win","2028","democratic","presidential","nomination","clinton win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":70679.816963,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"559677","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xfd2ad2eb408df974df56ae9347baa13d7c156b3875e5c4556adbe2d19b2e4e86","platform":"polymarket","title":"Will Lithuania win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["lithuania","win","eurovision","2026","lithuania win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":70335.78674999998,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"842023","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0xd87a0ee5367e38072ac013e99035672125fee3a3f4446f0389fe806e42e3e42e","platform":"polymarket","title":"US obtains Iranian enriched uranium by April 30?","description":"This market will resolve to “Yes” if the US government or military officially announces or confirms that it has gained possession of any quantity of enriched uranium previously controlled by Iran by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\n“Possession” means that the United States has actual physical custody or control of the enriched uranium, whether held within U.S. territory or elsewhere. Announcements of deals, agreements, commitments, or plans under which the United States would acquire possession of Iranian enriched uranium at a later time will not qualify.\n\nQualifying possession of Iranian enriched uranium may be acquired through any means, including through an agreed surrender or seizure.\n\nA widespread consensus of credible reporting that the United States has gained possession of Iranian enriched uranium will also qualify for a “Yes” resolution, even if the United States makes no formal announcement.\n\nThe primary resolution source for this market will be official information from the government of the United States; however, a widespread consensus of credible reporting may also be used.","keywords":["obtains","iranian","enriched","uranium","april","30","resolve","yes","government","military","officially","announces","confirms","gained"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":69783.71593699999,"url":"https://polymarket.com/event/us-obtains-iranian-enriched-uranium-by","category":"technology","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"2006982","oneDayPriceChange":-0.0025,"endDate":"2026-04-30"},{"id":"polymarket-0xea649be6ea3447f3c145a173883c68a89faf4edda1f85109b76baa93b3ee7a87","platform":"polymarket","title":"Will Pete Hegseth win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["pete","hegseth","win","2028","presidential","election","hegseth win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":69728.92795699999,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"crypto","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"561264","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x73f7620da1d4a2ec2283ad55d72f5ff4666e8732ec04458f88dff6773d6be2c6","platform":"polymarket","title":"Will Victor Wembanyama win the 2025–2026 NBA MVP?","description":"This market will resolve to \"Yes\" if Victor Wembanyama is awarded the 2025–26 regular season NBA Most Valuable Player (MVP) Award. Otherwise, this market will resolve to \"No\".\n\nIf the listed player is not announced as a finalist for the 2025–26 NBA MVP award, this market will immediately resolve to \"No\".\n\nThe primary resolution source for this market will be official information from the NBA. However, a consensus of credible reporting may also be used.","keywords":["victor","wembanyama","win","2025","2026","nba","basketball","mvp","wembanyama win","win the","resolve","yes","awarded","26","regular","season","most","valuable"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":69559.37393699998,"url":"https://polymarket.com/event/nba-mvp-694","category":"sports","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"564166","oneDayPriceChange":0.015,"endDate":"2026-06-10"},{"id":"polymarket-0x190d98a8009045e55fdef0923372d308086469ba1c5286ea5a76a744f6496fa0","platform":"polymarket","title":"Will the Colorado Rockies win the 2026 World Series?","description":"This market will resolve according to the team that wins the 2026 MLB World Series. \n\nIf at any point it becomes impossible for a listed team to win the 2026 MLB World Series per the rules of MLB (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2026 MLB season is cancelled, postponed after December 31, 2026 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from MLB (https://www.mlb.com/); however, a consensus of credible reporting may also be used.","keywords":["colorado","rockies","win","2026","world","series","rockies win","win the","resolve","according","team","wins","mlb","baseball","series.","point"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":69496.354895,"url":"https://polymarket.com/event/mlb-world-series-champion-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"1235576","oneDayPriceChange":0.001,"endDate":"2026-10-31"},{"id":"polymarket-0x0e0839e06a1e7b83dc6c27aaa14501e6a6d44f89c2d160792941e69e20e24ef5","platform":"polymarket","title":"Will Cho Kuk win the 2026 Seoul Mayoral Election","description":"The 2026 Seoul mayoral election is scheduled to take place on June 3, 2026 to elect the next mayor of Seoul.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nIf the result of this election isn't known by January 31, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the South Korean government, specifically the National Election Commission.","keywords":["cho","kuk","win","2026","seoul","mayoral","election","kuk win","win the","mayoral election","scheduled","take","place","june","3","elect","next","mayor"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":69376.67460699996,"url":"https://polymarket.com/event/2026-seoul-mayoral-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"678941","oneDayPriceChange":0,"endDate":"2026-06-03"},{"id":"polymarket-0xffb1ee3a720ba2499f4f3b24e1bceadb57b005904f2542d2c2a00c887db46330","platform":"polymarket","title":"Will Germany win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["germany","german","euro","bund","europe","win","eurovision","2026","germany win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":69050.046,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"842018","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0x158fdaad572880f8de3d3f00e4d3c2fbbae77108d88c29deb800141928c1e040","platform":"polymarket","title":"Will Jorge Nieto win the 2026 Peruvian presidential election?","description":"General elections are scheduled to be held in Peru on April 12, 2026.\n\nThis market will resolve according to the listed candidate who wins the next Peruvian Presidential election. \n\nThis market includes any potential second round. \n\nIf the results are not known definitively by October 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the results of this election, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve solely on the official results as reported by the Peruvian government, specifically the National Office of Electoral Processes (Oficina Nacional de Procesos Electorales, ONPE) (https://www.onpe.gob.pe/elecciones/) and the National Jury of Elections (Jurado Nacional de Elecciones, JNE) (https://portal.jne.gob.pe/portal/) ","keywords":["jorge","nieto","win","2026","peruvian","presidential","election","nieto win","win the","presidential election","general","elections","scheduled","held","peru","april","12","2026."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":68803.01913500001,"url":"https://polymarket.com/event/peru-presidential-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"947288","oneDayPriceChange":-0.0015,"endDate":"2026-06-07"},{"id":"polymarket-0xdde103389d3a3dcc18d57bfba9495faf5105b0f02054714d9c2bc830483d59fb","platform":"polymarket","title":"Will Norway win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["norway","win","eurovision","2026","norway win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":68746.14526600004,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"842028","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0xae6d3d20bc8f742922dc40880cd8a8671c10385a9912fa7cd670fba0643dfe96","platform":"polymarket","title":"Will Rafael López Aliaga win the 2026 Peruvian presidential election?","description":"General elections are scheduled to be held in Peru on April 12, 2026.\n\nThis market will resolve according to the listed candidate who wins the next Peruvian Presidential election. \n\nThis market includes any potential second round. \n\nIf the results are not known definitively by October 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the results of this election, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve solely on the official results as reported by the Peruvian government, specifically the National Office of Electoral Processes (Oficina Nacional de Procesos Electorales, ONPE) (https://www.onpe.gob.pe/elecciones/) and the National Jury of Elections (Jurado Nacional de Elecciones, JNE) (https://portal.jne.gob.pe/portal/) ","keywords":["rafael","pez","aliaga","win","2026","peruvian","presidential","election","aliaga win","win the","presidential election","general","elections","scheduled","held","peru","april","12","2026."],"yesPrice":0.09,"noPrice":0.92,"yesAsk":0.09,"noAsk":0.92,"volume24h":68419.48036200002,"url":"https://polymarket.com/event/peru-presidential-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"947268","oneDayPriceChange":0.005,"endDate":"2026-06-07"},{"id":"polymarket-0x5a59d269c2b5108cd2f64c624e46ee2c8b5cfd88b882582565f927918315b6aa","platform":"polymarket","title":"Will Algeria win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["algeria","win","2026","fifa","soccer","world cup","world","cup","algeria win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":68351.14283299999,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"558969","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x66b906b8205f48a26beb8e553bbb1e7954e87e4f6e1d539823441221d1806e8f","platform":"polymarket","title":"Will Stephen Smith win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["stephen","smith","win","2028","presidential","election","smith win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":66916.03273400002,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"561240","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x39104f7f48f4f379de4162f0cf64c24bf1ccb1f786fd7fafb3fbfb879fffedcc","platform":"polymarket","title":"Will WTI Crude Oil (WTI) hit (HIGH) $150 in April?","description":"This market will resolve to \"Yes\" if, at any point during April 2026, any 1-minute candle for the Active Month of WTI Crude Oil futures has a final \"High\" price equal to or above the listed price. Otherwise, this market will resolve to \"No\".\n\nFor WTI futures, the active month refers to the nearest listed contract month. The active month changes at 6:00:00 PM ET at the start of the trading session two business days prior to that contract's last trading day, at which point the next listed contract becomes the active month.\n\nFor WTI Crude Oil (CL) futures, the last trading day is defined as three business days prior to the 25th calendar day of the month preceding the contract's delivery month (or four business days prior if the 25th calendar day is not a business day), consistent with CME contract specifications.\n\nOnly prices achieved during the applicable trading session for the underlying market will be considered. Under the standard schedule, trading is open from 6:00:00 PM ET Sunday through 5:00:00 PM ET Friday, with a daily break from 5:00:00 PM ET to 6:00:00 PM ET, except where modified by holiday or special-session hours as listed on Pyth.\n\nPrices will be used exactly as published by Pyth, without rounding.\n\nIf the Active Month contract does not trade at all during the listed time frame, this market will resolve to \"No\".\n\nIn the event of a contract specification change, feed change, or similar structural modification affecting the underlying market during the listed time frame, this market will resolve based on adjusted prices as displayed on Pyth.\n\nThe resolution source for this market is Pyth — specifically, the Active Month WTI Crude Oil futures \"High\" prices available at https://pythdata.app/explore?search=WTI, with the chart settings configured for 1-minute candles.\n\nHistorical 1-minute candles may be accessed by appending a Unix timestamp (seconds) to the Pyth chart URL using the \"t=\" parameter.\n\nIf the relevant Pyth data is unavailable due to a system outage, data failure, or other technical disruption that prevents verification of the required 1-minute candle data, the official daily high price published for the Active Month WTI Crude Oil (CL) futures contract by CME Group may be used to determine whether the listed price was reached during the applicable trading session.","keywords":["wti","oil","crude","energy","hit","high","150","april","wti hit","hit high","resolve","yes","point","during","2026","1-minute","candle","active"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":66809.76794100001,"url":"https://polymarket.com/event/what-price-will-wti-hit-in-april-2026","category":"climate","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"1712294","oneDayPriceChange":-0.0075,"endDate":"2026-04-30"},{"id":"polymarket-0x96c7650600ccaefbe0f5a0e1176073d5ab289645d7eb3c9e0da0278a5c994228","platform":"polymarket","title":"Will Bitcoin dip to $60,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final Low price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT Low prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","dip","60000","april","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":66624.12581300004,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"1823780","oneDayPriceChange":-0.009,"endDate":"2026-05-01"},{"id":"polymarket-0xec42e78dfeee2cf7aed86a49600e7b11eba6f9be0d8d99bcdd66e872cb7a58bc","platform":"polymarket","title":"Will Elon Musk post 580+ tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","580","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":66507.089423,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"1977022","oneDayPriceChange":0,"endDate":"2026-04-24"},{"id":"polymarket-0x7abed80b88301210ee83b7b14ec41bc9a5161e1af07254fbb26c6e2bf7182766","platform":"polymarket","title":"Will Erika Kirk win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["erika","kirk","win","2028","republican","presidential","nomination","kirk win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":66332.05726699998,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"562002","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x7190eccbd0677d5d0ae8cdf598b37e945a346915c666dda11468dc9970657a56","platform":"polymarket","title":"Will John Thune win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["john","thune","win","2028","republican","presidential","nomination","thune win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":66306.26919199996,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"561993","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x04a49c759879b8c588c309a100b9443766e9678eee496b2c1aa6e1d897cbb662","platform":"polymarket","title":"Will Athletic Club win on 2026-04-21?","description":"In the upcoming game, scheduled for April 21, 2026\nIf Athletic Club wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["athletic","club","win","2026-04-21","club win","win on","upcoming","game","scheduled","april","21","2026","wins","resolve"],"yesPrice":0.52,"noPrice":0.48,"yesAsk":0.52,"noAsk":0.48,"volume24h":66216.98906699997,"url":"https://polymarket.com/event/lal-bil-osa-2026-04-21","category":"other","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"1915696","oneDayPriceChange":0.02,"endDate":"2026-04-21"},{"id":"polymarket-0xd0dbdc94b28c5cffeef64ed6b13e5f0f2324fb177e5ffaa634b48c88fe18d5e7","platform":"polymarket","title":"Will Sweden win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["sweden","win","2026","fifa","soccer","world cup","world","cup","sweden win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":65687.29999799999,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"558980","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x00c5350239c609a0927e9c112661b0de125c558b69842d32e9140b0b22bb0b18","platform":"polymarket","title":"Will the price of Bitcoin be above $86,000 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["bitcoin","btc","crypto","above","86000","april","21","be above","above 86000","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":65383.251,"url":"https://polymarket.com/event/bitcoin-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"1981844","oneDayPriceChange":-0.001,"endDate":"2026-04-21"},{"id":"polymarket-0x80971af8befc488bbdd6dcc075d388793851a0ea1c46f7ffd353b190691c7199","platform":"polymarket","title":"Will Isack Hadjar be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["isack","hadjar","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":64210.75000000009,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"898414","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x41c6341dd79903aca4bb0c29f5a7976946c3774d2fd72f38cbb7de7092144520","platform":"polymarket","title":"Will Mike Pence win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["mike","pence","win","2028","republican","presidential","nomination","pence win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":64116.33762600003,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"561995","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x6cb3ec9e0fb1c258898f648f8b33422f59ba3e8a71aee551449d7cb147bb8ead","platform":"polymarket","title":"Iran agrees to surrender enriched uranium stockpile by June 30, 2026?","description":"This market will resolve to \"Yes\" if Iran publicly agrees to surrender its enriched uranium stockpile by June 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nAn official pledge by Iran to surrender its enriched uranium stockpile will qualify for a “Yes” resolution whether as a unilateral announcement or part of an agreement with the U.S. or Israel.\n\nAn agreement by Iran to surrender any amount of its enriched uranium stockpile will count.\n\nTo qualify, Iran must publicly agree that its enriched uranium stockpile, or any portion thereof, will be transferred, shipped, or placed under the custody or control of any entity outside of Iran and its influence, excluding non-state armed groups or Iranian-aligned organizations (such as Hezbollah, the Houthis, or similar actors).\n\nAny agreement or pledge made before the resolution date of this market will qualify, regardless of if/when the agreement goes into effect.\n\nAn agreement by Iran to surrender its enriched uranium stockpile as a precondition of a more comprehensive peace process or deal will qualify, even if the agreement is not finalized or part of a formalized peace deal.\n\nAgreements to merely limit or cap the level or quality of enrichment—such as reducing enrichment to below weapons-grade thresholds—will not qualify.\n\nThe primary resolution source for this market will be a consensus of credible reporting.","keywords":["iran","nuclear","sanctions","middle east","agrees","surrender","enriched","uranium","stockpile","june","30","2026","resolve","yes","publicly","11","59","et.","otherwise","no"],"yesPrice":0.42,"noPrice":0.58,"yesAsk":0.42,"noAsk":0.58,"volume24h":64033.930672,"url":"https://polymarket.com/event/iran-agrees-to-surrender-enriched-uranium-stockpile-by","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"1731345","oneDayPriceChange":-0.145,"endDate":"2026-06-30"},{"id":"polymarket-0x6b934e09bcaa5d0cb9405c6dcc101781f3fa14d47dd3fc57eb65c28b7cd0ee80","platform":"polymarket","title":"Will Joao Fonseca win the 2026 Men's US Open?","description":"The 2026 U.S. Open tennis tournament is scheduled for August 23 - September 13, 2026.\n\nThis market will resolve to the player that wins the 2026 U.S. Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 U.S. Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 U.S. Open Men’s Singles Tournament is cancelled, postponed after October 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the U.S. Open (https://www.usopen.org/index.html); however, a consensus of credible reporting may also be used.","keywords":["joao","fonseca","win","2026","men's","open","fonseca win","win the","us open","tennis","grand slam","u.s.","tournament","scheduled","august","23","september","13","2026."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":63906.12070500002,"url":"https://polymarket.com/event/2026-mens-us-open-winner-tennis","category":"other","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"1088479","oneDayPriceChange":0,"endDate":"2026-09-13"},{"id":"polymarket-0x506f80bcf76bc75e6b31a250e2d754f347c4c231665326931d58bdb339ba1913","platform":"polymarket","title":"Will Haiti win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["haiti","win","2026","fifa","soccer","world cup","world","cup","haiti win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":63838.86500000002,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"technology","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"558977","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x82c85fd89271efb1ad356855d4ca1c2fc248e0d14c9740b628d28d9d6b0261f1","platform":"polymarket","title":"Will Amazon have the best AI model at the end of April 2026?","description":"This market will resolve according to the company that owns the model that has the highest arena score based on the Chatbot Arena LLM Leaderboard (https://lmarena.ai/) when the table under the \"Leaderboard\" tab is checked on April 30, 2026, 12:00 PM ET.\n\nResults from the \"Score\" column under the \"Text Arena | Overall\" Leaderboard tab at https://lmarena.ai/leaderboard/text with style control off will be used to resolve this market.\n\nModels will be ranked primarily by their arena score at this market’s check time, with alphabetical order of company names as listed in this market group used as a tiebreaker (e.g., if the two models are tied by arena score, “Google” would be ranked ahead of “xAI”). This market will resolve based on the company that occupies first place under this ranking.\n\nThe resolution source for this market is the Chatbot Arena LLM Leaderboard found at https://lmarena.ai/. If this resolution source is unavailable at check time, this market will remain open until the leaderboard comes back online and will resolve based on the first check after it becomes available. If it becomes permanently unavailable, this market will resolve based on another resolution source.","keywords":["amazon","amzn","aws","cloud","bezos","best","model","end","april","2026","resolve","according","company","owns","highest","arena","score","based"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":63385.571,"url":"https://polymarket.com/event/which-company-has-the-best-ai-model-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"1664045","oneDayPriceChange":0,"endDate":"2026-04-30"},{"id":"polymarket-0x7f695758278e6d4d9e63df862afa88d664d3402a3d26e4d32ae05121cdbddba6","platform":"polymarket","title":"Will Kim Kardashian win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["kim","north korea","nuclear","kardashian","win","2028","presidential","election","kardashian win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":62838.78572199997,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"561254","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xb314f5dbf75919a34d4997e8b22e6793505e3377a690eaa11a75a2547e926bee","platform":"polymarket","title":"Will Ro Khanna win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["khanna","win","2028","presidential","election","khanna win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":62409.72570700002,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"561259","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xcd26bdb63b81dfcc5482c42e9372c8a46091b1de1123d2afefb83df83fe859fd","platform":"polymarket","title":"Bab el-Mandeb Strait effectively closed by April 30?","description":"This market will resolve to “Yes” if IMF PortWatch publishes a 7-day moving average of transit calls (“Arrivals of Ships”) for the Bab el-Mandeb Strait less than or equal to 10 for any date between market creation and the listed date. Otherwise, this market will resolve to “No”.\n\nThis market will resolve as soon as IMF PortWatch publishes a 7-day moving average of transit calls for the Bab el-Mandeb Strait equal to or below 10, or once data has been published for the listed date and no such value has been published.\n\nIf no data has been published for the listed date within 14 calendar days (ET) after that date, this market will resolve based on the data published up to that point.\n\nRevisions to previously published data points made before data has been published for the listed date will be considered; however, they will not disqualify a previously published data point from qualifying. Revisions made after data has been published for the listed date will not be considered.\n\nThe resolution source for this market will be IMF PortWatch, specifically the “Arrivals of Ships” data published for the Bab el-Mandeb Strait at https://portwatch.imf.org/pages/6b1814d64903461b98144a6cc25eb79c\n, including both the chart and downloadable files.","keywords":["bab","el-mandeb","strait","effectively","closed","april","30","resolve","yes","imf","portwatch","publishes","7-day","moving","average"],"yesPrice":0.12,"noPrice":0.89,"yesAsk":0.12,"noAsk":0.89,"volume24h":62122.511856,"url":"https://polymarket.com/event/bab-el-mandeb-strait-effectively-closed-by","category":"technology","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"1609728","oneDayPriceChange":-0.015,"endDate":"2026-04-30"},{"id":"polymarket-0x8dbf6b51f302fd401065706245c144e93fe209abce183199433d4484b3ed8aff","platform":"polymarket","title":"Will Dwayne 'The Rock' Johnson win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["dwayne","'the","rock'","johnson","win","2028","democratic","presidential","nomination","johnson win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":61746.48748400001,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"559686","oneDayPriceChange":0.001,"endDate":"2028-11-07"},{"id":"polymarket-0x81a537b379a35e4e17c286d3b37394e94bd74c1779bbe9a13670eb991b201a3a","platform":"polymarket","title":"Will Tarcisio de Freitas win the 2026 Brazilian presidential election?","description":"A presidential election is scheduled to take place in Brazil on October 4, 2026.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nThis market includes any potential second round. If the result of this election isn't known by June 30, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Brazilian government, specifically the Superior Electoral Court (Tribunal Superior Eleitoral, TSE) (e.g., https://dadosabertos.tse.jus.br/).","keywords":["tarcisio","freitas","win","2026","brazilian","presidential","election","freitas win","win the","presidential election","scheduled","take","place","brazil","october","4","2026.","resolve"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":61667.838935999986,"url":"https://polymarket.com/event/brazil-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"601818","oneDayPriceChange":0,"endDate":"2026-10-04"},{"id":"polymarket-0xe9801c96bd2b204fa3f5970893bfed329d6609ad1e1955083c1cb772a06adac3","platform":"polymarket","title":"Will Hong Ihk-pyo win the 2026 Seoul Mayoral Election","description":"The 2026 Seoul mayoral election is scheduled to take place on June 3, 2026 to elect the next mayor of Seoul.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nIf the result of this election isn't known by January 31, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the South Korean government, specifically the National Election Commission.","keywords":["hong","ihk-pyo","win","2026","seoul","mayoral","election","ihk-pyo win","win the","mayoral election","scheduled","take","place","june","3","elect","next","mayor"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":61161.667293,"url":"https://polymarket.com/event/2026-seoul-mayoral-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"678939","oneDayPriceChange":0,"endDate":"2026-06-03"},{"id":"polymarket-0x0ac23db1e56971022bc7e822b907a2466c618b34104ea72bc9fa95e41c86a9c6","platform":"polymarket","title":"Will Ted Cruz win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["ted","cruz","win","2028","republican","presidential","nomination","cruz win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":60614.54452700001,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"561989","oneDayPriceChange":0.001,"endDate":"2028-11-07"},{"id":"polymarket-0xbce03e14c6874e6dee01715a572c2dc995e2ca235b7b09fd39aa90b9cb63ee2b","platform":"polymarket","title":"Will John Stephens win the 2026 Dublin-central by-election?","description":"A by-election for a seat from the Dublin Central constituency in the Dáil Éireann, the lower house of the Irish parliament, is expected to take place sometime in 2026to fill the vacancy left by the resignation of Paschal Donohoe.\n\nThis market will resolve according to the candidate who wins the by-election for this Dublin-Central seat in the Irish Dáil Éireann.\n\nIf voting does not take place in this election or the election results are not definitively known by March 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThe resolution source for this market will be a consensus of credible reporting. In case of ambiguity, this market will resolve solely based on the official election results published by the Irish government, specifically the Irish parliament or “Oireachtas” (https://www.oireachtas.ie/en/elections/).","keywords":["john","stephens","win","2026","dublin-central","by-election","stephens win","win the","seat","dublin","central","constituency","ireann","lower","house","congress"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":60562.77580000002,"url":"https://polymarket.com/event/dublin-central-by-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"1400472","oneDayPriceChange":-0.002,"endDate":"2026-12-31"},{"id":"polymarket-0x18b1c135d0a40c5894da9412e77311827d9caf16cf4cd6591b247a34730af919","platform":"polymarket","title":"Will J.D. Vance win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["j.d.","vance","win","2028","republican","presidential","nomination","vance win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.39,"noPrice":0.61,"yesAsk":0.39,"noAsk":0.61,"volume24h":60352.515394999995,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"561974","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xc4c3dbcc37a957a817599b0bf9fb5bd6b62b19210b0f527fec57cb75c7ed150a","platform":"polymarket","title":"Will Keiko Fujimori win the 2026 Peruvian presidential election?","description":"General elections are scheduled to be held in Peru on April 12, 2026.\n\nThis market will resolve according to the listed candidate who wins the next Peruvian Presidential election. \n\nThis market includes any potential second round. \n\nIf the results are not known definitively by October 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the results of this election, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve solely on the official results as reported by the Peruvian government, specifically the National Office of Electoral Processes (Oficina Nacional de Procesos Electorales, ONPE) (https://www.onpe.gob.pe/elecciones/) and the National Jury of Elections (Jurado Nacional de Elecciones, JNE) (https://portal.jne.gob.pe/portal/) ","keywords":["keiko","fujimori","win","2026","peruvian","presidential","election","fujimori win","win the","presidential election","general","elections","scheduled","held","peru","april","12","2026."],"yesPrice":0.67,"noPrice":0.33,"yesAsk":0.67,"noAsk":0.33,"volume24h":59910.47181399997,"url":"https://polymarket.com/event/peru-presidential-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"947269","oneDayPriceChange":0.01,"endDate":"2026-06-07"},{"id":"polymarket-0xcb239105ed21a2420ba4d85090b9bc32755c56601ffdc528afd17fd6282fe930","platform":"polymarket","title":"Will Gina Raimondo win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["gina","raimondo","win","2028","democratic","presidential","nomination","raimondo win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":59812.50867099998,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"559670","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x4fe305a2ae995a52ff278895344895fe587b4fec3d5f04347b4dbf5e99bce99c","platform":"polymarket","title":"Will Qatar win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["qatar","win","2026","fifa","soccer","world cup","world","cup","qatar win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":59700.30400000001,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"558971","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x3535fb2f4aef6619dde8b367cb5e5d209526bb496d5d9778428c58a0252435e3","platform":"polymarket","title":"Will Zohran Mamdani win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["zohran","mamdani","win","2028","democratic","presidential","nomination","mamdani win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":59513.973244000015,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"559671","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x00f89ad58499dfda366bf9182878c81d9ec6a73cdf4bf9a85b9d24474debf684","platform":"polymarket","title":"Will Valtteri Bottas be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["valtteri","bottas","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":59243.12474999998,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"898429","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x432e3bff20596f36c22e015ec23182e591ab7c37367e1ad96db73dc5984ddf5b","platform":"polymarket","title":"Will Roberto Sánchez Palomino finish in second place in the first round of the 2026 Peruvian presidential election?","description":"First-round presidential elections are scheduled to be held in Peru on April 12, 2026, with a potential second round on June 7, 2026, if no candidate receives more than 50% of the valid votes outright.\n\nThis market will resolve according to the listed candidate who receives the second-most valid votes in the first round of this election.\n\nThe named candidates will be primarily ranked by the number of valid votes received in the specified election. If two or more candidates are tied on valid votes, ties will be broken by alphabetical order of the candidates' last names. This market will resolve to the candidate that occupies the second-highest finishing position after applying this ranking.\n\nIf the results are not known definitively by October 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the results of this election, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve solely on the official results as reported by the Peruvian government, specifically the National Office of Electoral Processes (Oficina Nacional de Procesos Electorales, ONPE) (https://www.onpe.gob.pe/elecciones/) and the National Jury of Elections (Jurado Nacional de Elecciones, JNE) (https://portal.jne.gob.pe/portal/)","keywords":["roberto","nchez","palomino","finish","second","place","first","round","2026","peruvian","presidential","election","presidential election","first-round","elections","scheduled","held","peru","april","12","potential"],"yesPrice":0.84,"noPrice":0.16,"yesAsk":0.84,"noAsk":0.16,"volume24h":59230.86463100004,"url":"https://polymarket.com/event/peru-presidential-election-first-round-2nd-place","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"1656087","oneDayPriceChange":0.007,"endDate":"2026-04-12"},{"id":"polymarket-0x75ad781e57ad5ef7d8e279c838da39ab60351fdc056492375af4e35247d5af25","platform":"polymarket","title":"Will the upper bound of the target federal funds rate be 2.0% at the end of 2026?","description":"The FED rate is defined in this market by the upper bound of the target federal funds range. The decisions on the target federal fund range are made by the Federal Open Market Committee (FOMC) meetings.\n\nThis market will resolve according to the upper bound of the Federal Reserve’s target federal funds range after the December 2026 Federal Open Market Committee (FOMC) meeting, currently scheduled for December 8-9, 2026.\n\nThis market may resolve immediately after the statement for the FOMC’s December meeting, with relevant information about the FOMC’s decision on the target federal funds range, has been issued. If no FOMC decision on the target federal funds range for their December meeting has been issued by December 31, 2026, 11:59 PM ET, this market will resolve according to the upper bound of the target federal funds range at that time.\n\nThe upper bound of the target federal funds range will be rounded to the nearest 25 basis points for resolution of this market. If the upper bound of the target federal funds range falls exactly between two listed options, it will be rounded away from zero (e.g. if the upper bound is 2.875, with listed options of 3.0 & 2.75, this market will resolve to 3.0).\n\nThe primary resolution source for this market will be official information from the Federal Reserve (https://www.federalreserve.gov/monetarypolicy/openmarket.htm).","keywords":["upper","bound","target","federal","funds","rate","2.0%","end","2026","fed","federal reserve","fomc","interest rates","defined","range.","decisions","fund"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":59074.78999999999,"url":"https://polymarket.com/event/what-will-the-fed-rate-be-at-the-end-of-2026","category":"economics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"1168844","oneDayPriceChange":-0.001,"endDate":"2026-12-09"},{"id":"polymarket-0x7dca1c4307dddce4d21198ee7297585da0d2c9300019cad78d2b671fae0b3dca","platform":"polymarket","title":"Will Reza Pahlavi enter Iran by April 30?","description":"If Reza Pahlavi visits Iran between market creation and April 30, 2026, 11:59 PM ET, this market will resolve to \"Yes\". Otherwise, this market will resolve to \"No\".\n\nFor the purpose of this market, a \"visit\" is defined as Reza Pahlavi physically entering the terrestrial territory of Iran. Whether or not Reza Pahlavi enters Iranian airspace or maritime territory during the timeframe of this market will have no bearing on a positive resolution.\n\nThe primary resolution source for this market will be a consensus of credible reporting.","keywords":["reza","pahlavi","enter","iran","nuclear","sanctions","middle east","april","30","visits","between","creation","2026","11","59","resolve","yes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":59054.07609500001,"url":"https://polymarket.com/event/will-reza-pahlavi-enter-iran-by-june-30","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.852Z","numericId":"1662841","oneDayPriceChange":-0.002,"endDate":"2026-04-30"},{"id":"polymarket-0x306bbce53f9a77906b9a928d52728bdee2e48f3354d19a9d6f0db7c9a1d4230d","platform":"polymarket","title":"Will Scott Jensen win the 2026 Minnesota Governor Republican primary election?","description":"This market will resolve according to the winner of the Republican Primary for Governor of Minnesota, scheduled to take place on August 11, 2026. Resolution will be based on the overall winner of the primary, including any potential second round or run-off.\n\nIf no 2026 Minnesota Gubernatorial Republican Primary takes place, this market will resolve to “Other.”\n\nThe resolution source for this market will be the first official announcement of the results from the Minnesota Republican Party; however, an overwhelming consensus of credible reporting may suffice.","keywords":["scott","jensen","jensen huang","nvidia","nvda","gpu","win","2026","minnesota","governor","republican","primary","election","jensen win","win the","primary election","resolve","according","winner","scheduled","take","place","august","11"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":59013.89000000001,"url":"https://polymarket.com/event/minnesota-governor-republican-primary-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.853Z","numericId":"907984","oneDayPriceChange":-0.001,"endDate":"2026-08-11"},{"id":"polymarket-0xe615cb213bb989ec21df153f65e12d1ad9684dfb5864463a6acfab750830beeb","platform":"polymarket","title":"Will FC Bayern München win on 2026-04-28?","description":"In the upcoming game, scheduled for April 28, 2026\nIf FC Bayern München wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["bayern","nchen","win","2026-04-28","nchen win","win on","upcoming","game","scheduled","april","28","2026","wins","resolve"],"yesPrice":0.34,"noPrice":0.66,"yesAsk":0.34,"noAsk":0.66,"volume24h":58670.164557000004,"url":"https://polymarket.com/event/ucl-psg1-bay1-2026-04-28","category":"other","lastUpdated":"2026-04-20T19:49:45.853Z","numericId":"2000789","oneDayPriceChange":0,"endDate":"2026-04-28"},{"id":"polymarket-0xe7894a952192bb5fdead59f4b45a4240a7944e136e70e5a8da98fd85e7656d26","platform":"polymarket","title":"Will Apple be the largest company in the world by market cap on April 30?","description":"This market will resolve to the largest company in the world by market cap on April 30, 2026, as of market close.\n\nThe resolution source for this market will be a consensus of credible reporting.","keywords":["apple","aapl","iphone","tim cook","largest","company","world","cap","april","30","resolve","2026","close.","resolution","source","consensus","credible","reporting."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":58496.427815,"url":"https://polymarket.com/event/largest-company-end-of-april-738","category":"other","lastUpdated":"2026-04-20T19:49:45.853Z","numericId":"1487056","oneDayPriceChange":0.001,"endDate":"2026-04-30"},{"id":"polymarket-0x4d5f5e9772a2f2aebc236987a1b29290f0394ab414d53661d41d23b3cc111596","platform":"polymarket","title":"Will Portugal win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["portugal","win","eurovision","2026","portugal win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":58318.87116599997,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.853Z","numericId":"842030","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0x655b4bfdfa55a95c24d6e9bf7e7cd62f1b57da9a1f4c7f40f090b8ba847dffa2","platform":"polymarket","title":"Will Elise Stefanik win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["elise","stefanik","win","2028","republican","presidential","nomination","stefanik win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":57711.10860399996,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.853Z","numericId":"561987","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x20d0bc282552ac5ec6f61cd7101cb42a5948cae07e7651bdf40ede1a8b2c5eac","platform":"polymarket","title":"Will Ro Khanna win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["khanna","win","2028","democratic","presidential","nomination","khanna win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":57519.75987799986,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.853Z","numericId":"559694","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xd666c8eb740964a90685bf02d2a235a0970907fc48434e607011e89f6a092ea8","platform":"polymarket","title":"Will Donald Trump have a diplomatic meeting with Iran by April 30?","description":"This market will resolve to \"Yes\" if there is a diplomatic meeting between the listed individual, acting as a representative of the United States, and representatives of Iran by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nTo qualify, the listed individual must be physically present at the meeting and actively participate as a negotiator representing the United States.\n\nA diplomatic meeting refers to a deliberate meeting between representatives of the listed countries who are acting in an official capacity and are authorized to engage in negotiation or diplomacy regarding US-Iranian relations on behalf of their governments. Meetings conducted indirectly, for example, through designated mediators, facilitators, or interlocutors acting with the knowledge and authorization of the relevant governments, will qualify.\n\nBrief greetings, chance encounters, or talks otherwise not deliberately aimed at diplomacy or negotiation will not count.\n\nThe meeting must be in-person and must be publicly acknowledged by either government or reported by a consensus of credible media. Remote meetings, phone calls, or other meetings where the relevant parties are not present will not count.\n\nThe primary resolution source for this market will be official information from the listed individual and the governments of the United States and Iran; however, a consensus of credible reporting will also be used.","keywords":["donald","trump","president","potus","administration","gop","republican","diplomatic","meeting","iran","nuclear","sanctions","middle east","april","30","donald trump","resolve","yes","there","between","listed","individual","acting","representative"],"yesPrice":0.17,"noPrice":0.83,"yesAsk":0.17,"noAsk":0.83,"volume24h":57477.563081,"url":"https://polymarket.com/event/who-will-meet-with-iran-by-april-30","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.853Z","numericId":"1986537","oneDayPriceChange":-0.0065,"endDate":"2026-04-30"},{"id":"polymarket-0x68e3c4e0dd8f82d010060032006fd157401b0bd8e04bd2953ae293e31eb99bf6","platform":"polymarket","title":"Will Elon Musk win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["elon","elon musk","tesla","spacex","doge","musk","win","2028","presidential","election","twitter","x","musk win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":57232.29017500001,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.853Z","numericId":"561250","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xa1d97efb8a19de58d995edf58b882c4f99ef356c8a564af8daf888a7610edea1","platform":"polymarket","title":"Kharg Island no longer under Iranian control by May 31?","description":"This market will resolve to \"Yes\" if Kharg Island is no longer under Iranian control by May 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\n“No longer under the control of Iran” means that Iran no longer exercises primary governmental or military control over Kharg Island, and another state, occupying force, or internationally backed authority has established control over the island.\n\nTemporary raids, isolated landings, special operations, bombardment, sabotage, naval presence offshore, or temporary disruption of Iranian activity will not qualify on their own.\n\nAn announcement, threat, or claim that Iran has lost control will not qualify without actual control being established.\n\nIf control changes pursuant to a negotiated settlement, ceasefire term, surrender, or transfer agreement, this will qualify only once actual control has been established on the island.\n\nIf control over Kharg Island is contested, unclear, disputed, or not sufficiently established by the resolution date, this will not qualify, and the market will resolve to “No”.\n\nThe primary resolution source will be official statements from the relevant governments and militaries, along with a consensus of credible reporting.","keywords":["kharg","island","no","longer","under","iranian","control","31","island no","no longer","longer under","under iranian","resolve","yes","2026","11","59","et.","otherwise","iran"],"yesPrice":0.13,"noPrice":0.88,"yesAsk":0.13,"noAsk":0.88,"volume24h":57085.72888699999,"url":"https://polymarket.com/event/kharg-island-no-longer-under-iranian-control-by-march-31","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.853Z","numericId":"1708109","oneDayPriceChange":-0.01,"endDate":"2026-05-31"},{"id":"polymarket-0x18b1c135d0a40c5894da9412e77311827d9caf16cf4cd6591b247a34730af919","platform":"polymarket","title":"Will J.D. Vance win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["j.d.","vance","win","2028","republican","presidential","nomination","vance win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.39,"noPrice":0.61,"yesAsk":0.39,"noAsk":0.61,"volume24h":56862.945394999995,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"561974","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x77f77ffe5706bde5a2795bb228431c33b1ece0425b5426ba4754b495dd190335","platform":"polymarket","title":"Will Elon Musk post 60-79 tweets from April 21 to April 28, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 21 12:00 PM ET to April 28, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","60-79","tweets","april","21","28","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":56716.28999999999,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-21-april-28","category":"other","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"2010933","oneDayPriceChange":0,"endDate":"2026-04-28"},{"id":"polymarket-0x807ba575f84169bdb061dd05da3e8eb314a129aa152e31518c2aff9979d5f986","platform":"polymarket","title":"Will Trump agree to Iranian enrichment of uranium in April?","description":"This market will resolve to \"Yes\" if the United States agrees to the continued enrichment of uranium by Iran by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No.\"\n\nContinued enrichment of uranium by Iran refers to US acceptance of the enrichment of, or the right to enrich, any quantity of uranium by Iran for any future amount of time. Agreements that include limitations, restrictions, or specified terms (e.g., caps on enrichment level, monitoring requirements) will qualify, provided the United States accepts continued enrichment.\n\nThe United States will be considered to have agreed to the continued enrichment of uranium by Iran if:\n\n- Donald Trump or another authorized representative of the Government of the United States publicly announces that they have definitively agreed to accept the continued enrichment of uranium by Iran.\n- Continued enrichment of uranium by Iran is included as part of a treaty or deal that is formally established between the United States and Iran, either through signing or other formal means.\n\nAgreement refers to an explicit acceptance, authorization or consent to the specified action. Only announcements of definitive agreement will qualify. Suggestions, negotiations, expressions of openness, or other non-definitive statements will not qualify.\n\nAny definitive agreement or commitment made before the resolution date will be considered, regardless of when or whether the specified action is begun.\n\nThe primary resolution source for this market will be official statements from Donald Trump and the US government and their official representatives; however a consensus of credible reporting may also be used to verify the details of an announcement or formal agreement.","keywords":["trump","president","potus","administration","gop","republican","agree","iranian","enrichment","uranium","april","resolve","yes","united","states","agrees","continued","iran","nuclear"],"yesPrice":0.34,"noPrice":0.66,"yesAsk":0.34,"noAsk":0.66,"volume24h":56625.656295000015,"url":"https://polymarket.com/event/what-will-the-us-agree-to","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"1921802","oneDayPriceChange":-0.0205,"endDate":"2026-04-30"},{"id":"polymarket-0x54b36f27449bac18ab792efb1fce8e923d6dc190a311cb28aef0926583ae5760","platform":"polymarket","title":"Will NVIDIA be the largest company in the world by market cap on April 30?","description":"This market will resolve to the largest company in the world by market cap on April 30, 2026, as of market close.\n\nThe resolution source for this market will be a consensus of credible reporting.","keywords":["nvidia","nvda","gpu","ai chips","semiconductors","largest","company","world","cap","april","30","resolve","2026","close.","resolution","source","consensus","credible","reporting."],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":56557.414323000005,"url":"https://polymarket.com/event/largest-company-end-of-april-738","category":"other","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"1487054","oneDayPriceChange":-0.0015,"endDate":"2026-04-30"},{"id":"polymarket-0xc44edcfdedb422bae8ff1803e2178d1ee025fc41efd81400ccbede709e018841","platform":"polymarket","title":"Will MrBeast win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["mrbeast","youtube","content creator","jimmy donaldson","win","2028","democratic","presidential","nomination","mrbeast win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":56274.610383000014,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"559685","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x5f88a260d61f6ab1cc05e8e34019121d5d65c516f33f5eac22755c3a29e20311","platform":"polymarket","title":"Will Bitcoin dip to $50,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final Low price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT Low prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","dip","50000","april","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":55914.530371,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"1823782","oneDayPriceChange":0.0015,"endDate":"2026-05-01"},{"id":"polymarket-0x1889a2b777aea48dfc49618adfe5df7d9b564a3139223ebc18f65949e50add8d","platform":"polymarket","title":"Will Ethereum dip to $2,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for ETH/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final Low price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the ETH/USDT Low prices available at https://www.binance.com/en/trade/ETH_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance ETH/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["ethereum","eth","crypto","dip","2000","april","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.15,"noPrice":0.85,"yesAsk":0.15,"noAsk":0.85,"volume24h":55825.99405500001,"url":"https://polymarket.com/event/what-price-will-ethereum-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"1823799","oneDayPriceChange":-0.081,"endDate":"2026-05-01"},{"id":"polymarket-0x2f6a547524c1d290f8a2bbff80be2b0e8ca1b3b716dd3a0e74bf8ddb3e3fd6b7","platform":"polymarket","title":"Iran leadership change by May 31?","description":"This market will resolve to \"Yes\" if the Supreme Leader of Iran, Mojtaba Khamenei, ceases to be the de facto leader of Iran at any point between market creation and the listed date (ET). Otherwise, this market will resolve to \"No\".\n\nMojtaba Khamenei will be considered to no longer be the de facto leader of Iran if he is removed from power, is detained, or otherwise loses his position or is prevented from acting as the de facto leader of Iran within this market's timeframe.\n\nAn official announcement of Mojtaba Khamenei’s resignation or removal will qualify for a \"Yes\" resolution regardless of when the announced departure goes into effect.\n\nThe primary resolution source for this market will be a consensus of credible reporting.","keywords":["iran","nuclear","sanctions","middle east","leadership","change","31","resolve","yes","supreme","leader","mojtaba","khamenei","ceases","facto"],"yesPrice":0.08,"noPrice":0.92,"yesAsk":0.08,"noAsk":0.92,"volume24h":55798.12438399998,"url":"https://polymarket.com/event/iran-leadership-change-by","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"1708132","oneDayPriceChange":-0.035,"endDate":"2026-05-31"},{"id":"polymarket-0x8e6d892346600222b7cb8350acd0e97dda1ae616259ba117ea2e9b59bbe038a1","platform":"polymarket","title":"Will the Seattle Seahawks win the 2027 NFL league championship?","description":"This market will resolve according to the team that wins the 2027 NFL league championship. \n\nIf at any point it becomes impossible for a listed team to win the 2027 NFL league championship per the rules of the NFL (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2027 NFL league championship game is cancelled, postponed after March 31, 2027 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from NFL (https://www.nfl.com/); however, a consensus of credible reporting may also be used.","keywords":["seattle","seahawks","win","2027","nfl","football","super bowl","league","championship","seahawks win","win the","resolve","according","team","wins","championship.","point","becomes","impossible"],"yesPrice":0.14,"noPrice":0.86,"yesAsk":0.14,"noAsk":0.86,"volume24h":55511.913329,"url":"https://polymarket.com/event/big-game-champion-2027","category":"sports","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"1357399","oneDayPriceChange":0.02,"endDate":"2027-03-31"},{"id":"polymarket-0xe06579f1a7e5108e31c4cc69cca54c7d8d1b0ae507a9e465222f3c490e77793f","platform":"polymarket","title":"Will Luxembourg win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["luxembourg","win","eurovision","2026","luxembourg win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":55278.400266000004,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"842024","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0xd0d79c95f985a4233ac5719310f8b6861799e67677fc20daf7dfdf5af7b2b494","platform":"polymarket","title":"Will the price of Bitcoin be above $82,000 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["bitcoin","btc","crypto","above","82000","april","21","be above","above 82000","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":55169.12361700001,"url":"https://polymarket.com/event/bitcoin-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"1981842","oneDayPriceChange":-0.0045,"endDate":"2026-04-21"},{"id":"polymarket-0x7ad403c3508f8e3912940fd1a913f227591145ca0614074208e0b962d5fcc422","platform":"polymarket","title":"Will JD Vance win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["vance","win","2028","presidential","election","vance win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.19,"noPrice":0.81,"yesAsk":0.19,"noAsk":0.81,"volume24h":54893.36099899997,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"561229","oneDayPriceChange":0.0035,"endDate":"2028-11-07"},{"id":"polymarket-0xb657cafc3884257287c0cc4c9a131c5b4e8fb3ad7e594b50c14e6a539eedf839","platform":"polymarket","title":"Will Reuben Bain Jr. be the second pick in the 2026 NFL draft?","description":"This market will resolve according to the listed player who is drafted second overall in the 2026 NFL Draft.\n\nIf the 2026 NFL Draft is canceled or the second overall pick is not definitively known by July 30, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThe resolution source for this market will be official information from the NFL; however, a consensus of credible reporting may also be used.","keywords":["reuben","bain","jr.","second","pick","2026","nfl","football","super bowl","draft","resolve","according","listed","player","drafted","overall","draft.","canceled"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":54788.57005000001,"url":"https://polymarket.com/event/nfl-draft-2026-2nd-overall-pick-792","category":"technology","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"991908","oneDayPriceChange":-0.0005,"endDate":"2026-04-23"},{"id":"polymarket-0x3f9f4f2fa0ca005060d8c9aebc5dc7d3f5d19d04dde77cb79665efc9090b0fd7","platform":"polymarket","title":"Will Elon Musk post 360-379 tweets from April 14 to April 21, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 14 12:00 PM ET to April 21, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","360-379","tweets","april","14","21","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":54726.02881499999,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-14-april-21","category":"other","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"1943743","oneDayPriceChange":-0.001,"endDate":"2026-04-21"},{"id":"polymarket-0xcb5c7a711ddbf3af60c3dd349d50460d8d27bee46c0cd6cd507690eb5d7646fc","platform":"polymarket","title":"Will Bitcoin reach $100,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final High price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT High prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","reach","100000","april","bitcoin reach","reach 100000","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":54101.514445,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"1823772","oneDayPriceChange":0.001,"endDate":"2026-05-01"},{"id":"polymarket-0x1d3a98b8b9791d94de1714e89c0a17e7637311461701a1514c8968d9ca909301","platform":"polymarket","title":"Will Elon Musk post 460-479 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","460-479","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":53831.420000000006,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"1977016","oneDayPriceChange":-0.001,"endDate":"2026-04-24"},{"id":"polymarket-0x3dc47a72ac6bb265e9cefebd2a2eeed00966394cb2d07245b5c94138b60e82a3","platform":"polymarket","title":"Will Rahm Emanuel win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["rahm","emanuel","win","2028","democratic","presidential","nomination","emanuel win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":53500.82991099999,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"559669","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x8b203037c7c0e21b500314f8398d2a8ea294b7ce1f4f9185f426425a3505bc45","platform":"polymarket","title":"Will LeBron James win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["lebron","lakers","nba","basketball","james","win","2028","democratic","presidential","nomination","james win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":53279.674524999944,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"559681","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x70f1a7d2cd490b640676d5e31470bcbe16fef40087de1af8b6f6e44e299b5784","platform":"polymarket","title":"Will Eduardo Leite win the 2026 Brazilian presidential election?","description":"A presidential election is scheduled to take place in Brazil on October 4, 2026.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nThis market includes any potential second round. If the result of this election isn't known by June 30, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Brazilian government, specifically the Superior Electoral Court (Tribunal Superior Eleitoral, TSE) (e.g., https://dadosabertos.tse.jus.br/).","keywords":["eduardo","leite","win","2026","brazilian","presidential","election","leite win","win the","presidential election","scheduled","take","place","brazil","october","4","2026.","resolve"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":53145.57700000002,"url":"https://polymarket.com/event/brazil-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"601831","oneDayPriceChange":0,"endDate":"2026-10-04"},{"id":"polymarket-0xf21dfd7b985a2e3e78f56f14146013b35cdbd24dbc3f72831d425d7e131ac26b","platform":"polymarket","title":"Will Park Ju-min win the 2026 Seoul Mayoral Election","description":"The 2026 Seoul mayoral election is scheduled to take place on June 3, 2026 to elect the next mayor of Seoul.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nIf the result of this election isn't known by January 31, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the South Korean government, specifically the National Election Commission.","keywords":["park","ju-min","win","2026","seoul","mayoral","election","ju-min win","win the","mayoral election","scheduled","take","place","june","3","elect","next","mayor"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":53084.96030900002,"url":"https://polymarket.com/event/2026-seoul-mayoral-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"678934","oneDayPriceChange":0,"endDate":"2026-06-03"},{"id":"polymarket-0xdedef5719a21db8c17a43b9a53558b0ef775f03a1f8efe16960929556b90e29a","platform":"polymarket","title":"Will Carlos Felipe Córdoba win the 2026 Colombian presidential election?","description":"Colombia's presidential elections are scheduled for May 31, 2026, and a second round (if required) on June 21, 2026, in case no candidate secures more than 50% of the valid votes in the first round.\n\nThis market will resolve according to the listed candidate that wins this election. \n\nThis market includes any potential second round. If the result of this election isn't known by December 31, 2026, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["carlos","felipe","rdoba","win","2026","colombian","presidential","election","rdoba win","win the","presidential election","colombia's","elections","scheduled","31","second","round","required","june"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":52750.244000000006,"url":"https://polymarket.com/event/colombia-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"569374","oneDayPriceChange":0,"endDate":"2026-06-21"},{"id":"polymarket-0x5ccfe1b69a582d2985db08a8481a0d74c314b1fce9b4711ae2efb2c6467fe6aa","platform":"polymarket","title":"Will Mexico win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["mexico","win","2026","fifa","soccer","world cup","world","cup","mexico win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":52579.93275500002,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"558945","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x17902b9490c6a73152772316b4705935c5c6801ba269f2afc81686532e34fb9a","platform":"polymarket","title":"Will Marjorie Taylor Greene win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["marjorie","taylor","greene","win","2028","republican","presidential","nomination","greene win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":52557.54028499998,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"562004","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xc536ab586b250f5928bf4da82030a642b1d193b95b38dc39ac3e48327a8d98a2","platform":"polymarket","title":"Will Tennessee Titans win the 2027 NFL AFC Championship?","description":"This market will resolve according to the team that wins the 2027 AFC championship game.\n\nIf at any point it becomes impossible for a listed team to win the 2027 NFL AFC championship per the rules of the NFL (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2027 NFL AFC championship game is cancelled, postponed after March 31, 2027 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from NFL (https://www.nfl.com/); however, a consensus of credible reporting may also be used.","keywords":["tennessee","titans","win","2027","nfl","football","super bowl","afc","championship","titans win","win the","resolve","according","team","wins","game.","point","becomes","impossible"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":52451.88,"url":"https://polymarket.com/event/pro-football-2027-afc-champion","category":"sports","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"1361091","oneDayPriceChange":-0.0005,"endDate":"2027-01-25"},{"id":"polymarket-0x93a144757495d68c867022424152e77ed5ff20a473cb05e16960de2b88300bd8","platform":"polymarket","title":"Will DeepSeek have the best AI model at the end of April 2026?","description":"This market will resolve according to the company that owns the model that has the highest arena score based on the Chatbot Arena LLM Leaderboard (https://lmarena.ai/) when the table under the \"Leaderboard\" tab is checked on April 30, 2026, 12:00 PM ET.\n\nResults from the \"Score\" column under the \"Text Arena | Overall\" Leaderboard tab at https://lmarena.ai/leaderboard/text with style control off will be used to resolve this market.\n\nModels will be ranked primarily by their arena score at this market’s check time, with alphabetical order of company names as listed in this market group used as a tiebreaker (e.g., if the two models are tied by arena score, “Google” would be ranked ahead of “xAI”). This market will resolve based on the company that occupies first place under this ranking.\n\nThe resolution source for this market is the Chatbot Arena LLM Leaderboard found at https://lmarena.ai/. If this resolution source is unavailable at check time, this market will remain open until the leaderboard comes back online and will resolve based on the first check after it becomes available. If it becomes permanently unavailable, this market will resolve based on another resolution source.","keywords":["deepseek","ai","llm","china ai","artificial intelligence","best","model","end","april","2026","resolve","according","company","owns","highest","arena","score","based"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":52329.77611599999,"url":"https://polymarket.com/event/which-company-has-the-best-ai-model-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:45.914Z","numericId":"1664048","oneDayPriceChange":-0.0005,"endDate":"2026-04-30"},{"id":"polymarket-0x910a05fb750d627179bc6cdd845fe858f1ef444ad8def0e40d4336c66dc4fdd8","platform":"polymarket","title":"Will Ahn Cheol-soo win the 2026 Seoul Mayoral Election","description":"The 2026 Seoul mayoral election is scheduled to take place on June 3, 2026 to elect the next mayor of Seoul.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nIf the result of this election isn't known by January 31, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the South Korean government, specifically the National Election Commission.","keywords":["ahn","cheol-soo","win","2026","seoul","mayoral","election","cheol-soo win","win the","mayoral election","scheduled","take","place","june","3","elect","next","mayor"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":51330.337612999996,"url":"https://polymarket.com/event/2026-seoul-mayoral-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"678933","oneDayPriceChange":0,"endDate":"2026-06-03"},{"id":"polymarket-0xc6f68e3d5ce9efabbba7123bcceba0316b81e07707390869587a967ad4f87b16","platform":"polymarket","title":"Will the price of Bitcoin be above $68,000 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["bitcoin","btc","crypto","above","68000","april","21","be above","above 68000","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":51253.735681,"url":"https://polymarket.com/event/bitcoin-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"1981819","oneDayPriceChange":0.0065,"endDate":"2026-04-21"},{"id":"polymarket-0x00ad3bb5284b0b2314b1a2d42812fe292f606619c6278bd95c9d905816c240f6","platform":"polymarket","title":"Will Sarah Huckabee Sanders win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["sarah","huckabee","sanders","win","2028","republican","presidential","nomination","sanders win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":51193.30681399999,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"561982","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x98836967b3291ac597477867ab3e5d141ec344cac432df45f0aea9539fb5c4f2","platform":"polymarket","title":"Will the price of Bitcoin be above $72,000 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["bitcoin","btc","crypto","above","72000","april","21","be above","above 72000","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":51182.60096799999,"url":"https://polymarket.com/event/bitcoin-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"1981825","oneDayPriceChange":0.095,"endDate":"2026-04-21"},{"id":"polymarket-0x5037195eafd98f9d50ef8d5700abcaaa7351cc53bfdb1df23fd28fd35eb94e9b","platform":"polymarket","title":"Will Enrique Peñalosa win the 1st round of the 2026 Colombian presidential election?","description":"Colombia's presidential elections are scheduled for May 31, 2026, and a second round (if required) on June 21, 2026, in case no candidate secures more than 50% of the valid votes in the first round.\n\nThis market will resolve according to the candidate who receives the greatest number of valid votes in the first round of voting.\n\nIf the results of the first round of the Colombian presidential election are not known by December 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["enrique","alosa","win","1st","round","2026","colombian","presidential","election","alosa win","win the","presidential election","colombia's","elections","scheduled","31","second","required","june","21"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":51030.872,"url":"https://polymarket.com/event/colombia-presidential-election-1st-round-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"569349","oneDayPriceChange":0,"endDate":"2026-05-31"},{"id":"polymarket-0xe1d5733322fd2215f136412f419d9ff805d097f78c68de3261515ff736895f2b","platform":"polymarket","title":"Will Eduardo Bolsonaro win the 2026 Brazilian presidential election?","description":"A presidential election is scheduled to take place in Brazil on October 4, 2026.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nThis market includes any potential second round. If the result of this election isn't known by June 30, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Brazilian government, specifically the Superior Electoral Court (Tribunal Superior Eleitoral, TSE) (e.g., https://dadosabertos.tse.jus.br/).","keywords":["eduardo","bolsonaro","win","2026","brazilian","presidential","election","bolsonaro win","win the","presidential election","scheduled","take","place","brazil","october","4","2026.","resolve"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":50411.047947,"url":"https://polymarket.com/event/brazil-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"601823","oneDayPriceChange":0,"endDate":"2026-10-04"},{"id":"polymarket-0xdca2e3e6397f748058d268fcf402ea6b93f09cee2be1d6289ebf5c1b19d1e4db","platform":"polymarket","title":"Will the price of Ethereum be above $2,500 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for ETH/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the ETH/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/ETH_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance ETH/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["ethereum","eth","crypto","above","2500","april","21","be above","above 2500","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":50376.59964,"url":"https://polymarket.com/event/ethereum-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"1981774","oneDayPriceChange":-0.0305,"endDate":"2026-04-21"},{"id":"polymarket-0x3e4bfbc0ea817202923aafcbe099b3f53c35b8fdff8f45cc0206f3b5fcd92a44","platform":"polymarket","title":"Will \"The Super Mario Galaxy Movie\" 3rd Weekend Box Office be between 34m and 37m?","description":"This market will resolve according to how much \"The Super Mario Galaxy Movie\" Weekend Box Office will gross domestically on its third weekend. The \"Daily Box Office Performance\" figures found on the “Box Office” tab on this movie's The Numbers (https://www.the-numbers.com/) page will be used to resolve this market once the values for the 3-day weekend (April 17 - April 19) are final (i.e., not studio estimates).\n\nIf the reported value falls exactly between two brackets, then this market will resolve to the higher range bracket.\n\nPlease note, this market will resolve according to the The Numbers figures provided under Weekend Box Office Performance for the 3-day weekend (which typically includes Thursday's previews), regardless of whether domestic refers to only the USA, or to USA and Canada, etc.\n\nIf there is ambiguity as to whether the resolution source's figures are final, this market will remain open until both https://www.boxofficemojo.com/ and https://www.the-numbers.com/ have confirmed their finalized figures.\n\nIf there is no final data available by April 26, 2026, 11:59 PM ET, another credible resolution source will be chosen.","keywords":["super","mario","nintendo","switch","gaming","super mario","galaxy","movie","film","cinema","box office","3rd","weekend","box","office","between","34m","37m","revenue","theater","resolve","according","much","gross","domestically","third","weekend.","daily"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":49850.94017,"url":"https://polymarket.com/event/the-super-mario-galaxy-movie-3rd-weekend-box-office-lower-strikes","category":"other","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"1993390","oneDayPriceChange":0.1365,"endDate":"2026-04-20"},{"id":"polymarket-0xf887472a2ac013ef61840034321aa5b46de87ac093ee77ecafca477fdbaadd45","platform":"polymarket","title":"Will Marine Tondelier win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["marine","tondelier","win","2027","french","presidential","election","tondelier win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":49437.67500800001,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"679031","oneDayPriceChange":0.001,"endDate":"2027-04-30"},{"id":"polymarket-0x88d67705780a3d922317ecb0c78a947a306174d0510df2ae89394d5abfb28206","platform":"polymarket","title":"Will Barack Obama win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["barack","obama","win","2028","democratic","presidential","nomination","obama win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":49391.48952999997,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"559676","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x730a9e020a8c98c53e5d6c24ce2cd779ccf73a4bf23f1733e38c1a13f50c4775","platform":"polymarket","title":"Will the highest temperature in Hong Kong be 28°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded by the Hong Kong Observatory in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from the Hong Kong Observatory, specifically the \"Absolute Daily Max (deg. C)\" the specified date once information is finalized in the relevant \"Daily Extract\", available here: https://www.weather.gov.hk/en/cis/climat.htm\n\nThis market can not resolve to \"Yes\" until data for this date has been finalized.\n\nThe resolution source for this market measures temperatures in Celsius to one decimal place (eg, 9.1°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","hong","kong","28","april","20","resolve","range","contains","recorded","observatory","degrees","celsius","apr"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":48797.44359199997,"url":"https://polymarket.com/event/highest-temperature-in-hong-kong-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"2011251","oneDayPriceChange":0.5845,"endDate":"2026-04-20"},{"id":"polymarket-0xeca080635da47c3fb80cb489dc05174fdfe49144861feed3f2b27718874a3890","platform":"polymarket","title":"Will WTI Crude Oil (WTI) hit (HIGH) $115 in April?","description":"This market will resolve to \"Yes\" if, at any point between market creation and the final trading day during April 2026, any 1-minute candle for the Active Month of WTI Crude Oil futures has a final \"High\" price equal to or above the listed price. Otherwise, this market will resolve to \"No\".\n\nFor WTI futures, the active month refers to the nearest listed contract month. The active month changes at 6:00:00 PM ET at the start of the trading session two business days prior to that contract's last trading day, at which point the next listed contract becomes the active month.\n\nFor WTI Crude Oil (CL) futures, the last trading day is defined as three business days prior to the 25th calendar day of the month preceding the contract's delivery month (or four business days prior if the 25th calendar day is not a business day), consistent with CME contract specifications.\n\nOnly prices achieved during the applicable trading session for the underlying market will be considered. Under the standard schedule, trading is open from 6:00:00 PM ET Sunday through 5:00:00 PM ET Friday, with a daily break from 5:00:00 PM ET to 6:00:00 PM ET, except where modified by holiday or special-session hours as listed on Pyth.\n\nPrices will be used exactly as published by Pyth, without rounding.\n\nIf the Active Month contract does not trade at all during the listed time frame, this market will resolve to \"No\".\n\nIn the event of a contract specification change, feed change, or similar structural modification affecting the underlying market during the listed time frame, this market will resolve based on adjusted prices as displayed on Pyth.\n\nThe resolution source for this market is Pyth — specifically, the Active Month WTI Crude Oil futures \"High\" prices available at https://pythdata.app/explore?search=WTI, with the chart settings configured for 1-minute candles.\n\nHistorical 1-minute candles may be accessed by appending a Unix timestamp (seconds) to the Pyth chart URL using the \"t=\" parameter.\n\nIf the relevant Pyth data is unavailable due to a system outage, data failure, or other technical disruption that prevents verification of the required 1-minute candle data, the official daily high price published for the Active Month WTI Crude Oil (CL) futures contract by CME Group may be used to determine whether the listed price was reached during the applicable trading session.","keywords":["wti","oil","crude","energy","hit","high","115","april","wti hit","hit high","resolve","yes","point","between","creation","final","trading","day"],"yesPrice":0.11,"noPrice":0.89,"yesAsk":0.11,"noAsk":0.89,"volume24h":48693.986699,"url":"https://polymarket.com/event/what-price-will-wti-hit-in-april-2026","category":"climate","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"1929187","oneDayPriceChange":-0.031,"endDate":"2026-04-30"},{"id":"polymarket-0xabe87ef65fbf14524375d7875fca53cab24de288efad25fc17269b7b7b580bb4","platform":"polymarket","title":"Will Scott Bessent be confirmed as Fed Chair?","description":"This market will resolve according to the next individual formally confirmed as Chair of the Federal Reserve.\n\nFormal confirmation as Chair of the Federal Reserve requires the Senate to confirm a nominee as Chair of the Federal Reserve. Recess appointments without Senate confirmation will not count. Senate confirmation of a listed individual as a member of the Federal Reserve Board of Governors will not alone qualify.\n\nIf no Senate confirmation for the position of Chair of the Federal Reserve has occurred by December 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThe primary resolution source for this market is official information from the U.S. Senate; however, a consensus of credible reporting may also be used.","keywords":["scott","bessent","treasury","fiscal policy","confirmed","fed","federal reserve","fomc","interest rates","chair","scott bessent","fiscal","secretary treasury","resolve","according","next","individual","formally","federal","reserve.","formal"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":48474.37433299996,"url":"https://polymarket.com/event/who-will-be-confirmed-as-fed-chair","category":"economics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"1500768","oneDayPriceChange":0,"endDate":"2026-10-31"},{"id":"polymarket-0x6cfb4dd3f166274ac6fff20091bb7d1b42ae2d2f5725c1e5c606d97c3605cffc","platform":"polymarket","title":"Will Bitcoin dip to $30,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final Low price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT Low prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","dip","30000","april","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":48197.275789999985,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"1823786","oneDayPriceChange":-0.001,"endDate":"2026-05-01"},{"id":"polymarket-0x6bd56627aa21311850825edb27e53434a0e17a4f782be0086bc07f71eee00d0d","platform":"polymarket","title":"Putin out as President of Russia by December 31, 2026?","description":"This market will resolve to “Yes” if Vladimir Putin ceases to be President of Russia for any period of time between market creation and the specified date (ET). Otherwise, this market will resolve to “No”.\n\nAn announcement of Vladimir Putin's resignation/removal before this market's end date will immediately resolve this market to \"Yes\", regardless of when the announced resignation/removal goes into effect.\n\nIf the specified individual is detained, effectively removed from the specified position, or otherwise permanently prevented from fulfilling the duties of the specified position within this market’s timeframe, it will qualify for a “Yes” resolution.\n\nThe resolution source for this market will be official information from Vladimir Putin and the government of Russia; however, a consensus of credible reporting may also be used.","keywords":["putin","russia","ukraine","kremlin","out","president","december","31","2026","resolve","yes","vladimir","ceases","period","time","between","creation"],"yesPrice":0.1,"noPrice":0.91,"yesAsk":0.1,"noAsk":0.91,"volume24h":47880.126212,"url":"https://polymarket.com/event/putin-out-before-2027","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"560317","oneDayPriceChange":0,"endDate":"2026-12-31"},{"id":"polymarket-0xd65891729ce093cc12236856837eba1a0872fc7998fd4294c21346f7db68079c","platform":"polymarket","title":"Will Josh Shapiro win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["josh","shapiro","win","2028","democratic","presidential","nomination","shapiro win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":47399.82086400001,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"559655","oneDayPriceChange":-0.002,"endDate":"2028-11-07"},{"id":"polymarket-0x7ad85edf61c201126d604ab1e59bb62bec9ad22cbf74e8cc4fe61481a4fbaeee","platform":"polymarket","title":"Will Bitcoin dip to $20,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final Low price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT Low prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","dip","20000","april","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":46865.74300000005,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"1823788","oneDayPriceChange":0,"endDate":"2026-05-01"},{"id":"polymarket-0x0f49db97f71c68b1e42a6d16e3de93d85dbf7d4148e3f018eb79e88554be9f75","platform":"polymarket","title":"Will Gavin Newsom win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["gavin","newsom","win","2028","democratic","presidential","nomination","newsom win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.27,"noPrice":0.73,"yesAsk":0.27,"noAsk":0.73,"volume24h":46333.76341199998,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"559652","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xe883f2fda25a605a184bb5fe583afce6cc21ea0b348b6a3728ec3067553c548d","platform":"polymarket","title":"Will J.B. Pritzker win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["j.b.","pritzker","win","2028","democratic","presidential","nomination","pritzker win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":46156.125040999985,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"559663","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xa59bb6bb91e5c1e4d533864520fbd3bb75d6d0ebb813b4cd8a8b88479bfa8966","platform":"polymarket","title":"Will Carlos Roberto Massa Júnior win the 2026 Brazilian presidential election?","description":"A presidential election is scheduled to take place in Brazil on October 4, 2026.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nThis market includes any potential second round. If the result of this election isn't known by June 30, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Brazilian government, specifically the Superior Electoral Court (Tribunal Superior Eleitoral, TSE) (e.g., https://dadosabertos.tse.jus.br/).","keywords":["carlos","roberto","massa","nior","win","2026","brazilian","presidential","election","nior win","win the","presidential election","scheduled","take","place","brazil","october","4","2026.","resolve"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":45922.39700000003,"url":"https://polymarket.com/event/brazil-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"601824","oneDayPriceChange":0,"endDate":"2026-10-04"},{"id":"polymarket-0x38bb9355fd91f6d7053465caefbbf691bd4a81ec1b08edcca656fc9dde259b14","platform":"polymarket","title":"Will Fernando Alonso be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["fernando","alonso","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":45287.74233000004,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"898417","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x09ad4955c170d46c6d80b5f554435b19e229ff7dbe55370892b64782336cc3b9","platform":"polymarket","title":"Will Andy Beshear win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["andy","beshear","win","2028","presidential","election","beshear win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":44988.92454199999,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"561237","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x3b0107a80edd066fe987784d7ab5963c177888433efbec10689951c17320606c","platform":"polymarket","title":"Will Satoshi move any Bitcoin in 2026?","description":"This market will resolve to “Yes” if any wallet labeled as belonging to Satoshi Nakamoto on Arkham’s Intel Explorer shows an “Outflow” or “Swaps” transaction at any time between January 9, 2026, 1:00 PM ET and December 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No.”\n\nThe resolution source for this market is Arkham’s Intel Explorer, specifically the entity page for Satoshi Nakamoto available at https://intel.arkm.com/explorer/entity/satoshi-nakamoto\n\nIf Arkham becomes permanently unavailable, this market will resolve based on a consensus of credible sources.\n\n\n","keywords":["satoshi","bitcoin","btc","move","crypto","2026","resolve","yes","wallet","crypto","ethereum","bitcoin","labeled","belonging"],"yesPrice":0.09,"noPrice":0.91,"yesAsk":0.09,"noAsk":0.91,"volume24h":44720.181232999996,"url":"https://polymarket.com/event/will-satoshi-move-any-bitcoin-in-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"1144471","oneDayPriceChange":0.0015,"endDate":"2027-01-01"},{"id":"polymarket-0x467cf9f5be224e3e0404f31cc040f6e13b2fa43dbdf12ae3a81ae2ec246dca26","platform":"polymarket","title":"Will Han Dong-hoon win the 2026 Seoul Mayoral Election","description":"The 2026 Seoul mayoral election is scheduled to take place on June 3, 2026 to elect the next mayor of Seoul.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nIf the result of this election isn't known by January 31, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the South Korean government, specifically the National Election Commission.","keywords":["han","dong-hoon","win","2026","seoul","mayoral","election","dong-hoon win","win the","mayoral election","scheduled","take","place","june","3","elect","next","mayor"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":44591.86699999998,"url":"https://polymarket.com/event/2026-seoul-mayoral-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"678932","oneDayPriceChange":0,"endDate":"2026-06-03"},{"id":"polymarket-0x37ec4c6b57a18b16eed1241f6155ee7ff45bc1697d7848f15ac33d406e38ed00","platform":"polymarket","title":"Will Michelle Bolsonaro win the 2026 Brazilian presidential election?","description":"A presidential election is scheduled to take place in Brazil on October 4, 2026.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nThis market includes any potential second round. If the result of this election isn't known by June 30, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Brazilian government, specifically the Superior Electoral Court (Tribunal Superior Eleitoral, TSE) (e.g., https://dadosabertos.tse.jus.br/).","keywords":["michelle","bolsonaro","win","2026","brazilian","presidential","election","bolsonaro win","win the","presidential election","scheduled","take","place","brazil","october","4","2026.","resolve"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":44307.060070999985,"url":"https://polymarket.com/event/brazil-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"601822","oneDayPriceChange":-0.0015,"endDate":"2026-10-04"},{"id":"polymarket-0x02f8dd15d4c674a75fccbd0e00f0cf1256101c45ef41f6d0c5dfde9c36d4141e","platform":"polymarket","title":"Israel x Hezbollah Ceasefire extended by April 26, 2026?","description":"This market will resolve to “Yes” if there is an official extension of the 10-day ceasefire agreement between Israel and Hezbollah announced on April 16, 2026, defined as a publicly announced and mutually agreed extension to the halt in direct military engagement between Israel and Hezbollah, by the specified date, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nBoth extensions of the April 16 ceasefire and new agreements scheduled to take effect before or at the initial agreement's scheduled end will be considered extensions of the ceasefire agreement, provided there is no period during which no ceasefire is in effect.\n\nIf a qualifying agreement is officially reached before the resolution date, this market will resolve to “Yes,” regardless of whether the ceasefire extension ultimately takes effect.\n\nAn extension of the ceasefire agreement requires clear public confirmation from both the Israeli government and Hezbollah that they have agreed to halt military hostilities against one another for longer than the initially agreed 10-day period, or for an official extension of the ceasefire agreement in place to be otherwise confirmed by an overwhelming consensus of media reporting.\n\nAny form of informal understanding, backchannel communication, de-escalation, or unilateral pause in hostilities without a confirmed agreement on a qualifying extension will not qualify. Similarly, newly agreed-upon humanitarian pauses, limited operational pauses, or temporary tactical stand-downs will not qualify.\n\nA newly agreed-upon broader peace deal will qualify if it includes a qualifying extension of the ceasefire agreement/halt in military hostilities. Agreements that outline future negotiations or de-escalation measures, but do not explicitly commit to extending the ceasefire, will not qualify.\n\nThis market’s resolution will be based on official statements from the Israeli government and Hezbollah. However, an overwhelming consensus of credible media reporting confirming that an official ceasefire extension agreement has been reached will suffice.","keywords":["israel","gaza","hamas","middle east","hezbollah","iran","ceasefire","ukraine","russia","peace","conflict","extended","april","26","2026","resolve","yes","there","official","extension","10-day","agreement","between"],"yesPrice":0.56,"noPrice":0.44,"yesAsk":0.56,"noAsk":0.44,"volume24h":43939.75315399998,"url":"https://polymarket.com/event/israel-x-hezbollah-ceasefire-extended-by","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"2002497","oneDayPriceChange":-0.08},{"id":"polymarket-0xb01e70a56199a6d5467f47a2b94e75e7c7218c128c8d0b8beb6dafed2f0d15c2","platform":"polymarket","title":"Will the Fed increase interest rates by 50+ bps after the June 2026 meeting?","description":"The FED interest rates are defined in this market by the upper bound of the target federal funds range. The decisions on the target federal funds range are made by the Federal Open Market Committee (FOMC) meetings.\n\nThis market will resolve to the amount of basis points the upper bound of the target federal funds rate is changed by versus the level it was prior to the Federal Reserve's June 2026 meeting.\n\nIf the target federal funds rate is changed to a level not expressed in the displayed options, the change will be rounded up to the nearest 25 and will resolve to the relevant bracket. (e.g. if there's a cut/increase of 12.5 bps it will be considered to be 25 bps)\n\nThe resolution source for this market is the FOMC’s statement after its meeting scheduled for June 16-17, 2026 according to the official calendar: https://www.federalreserve.gov/monetarypolicy/fomccalendars.htm.\n\nThe level and change of the target federal funds rate is also published at the official website of the Federal Reserve at https://www.federalreserve.gov/monetarypolicy/openmarket.htm.\n\nThis market may resolve as soon as the FOMC’s statement for their June meeting with relevant data is issued. If no statement is released by the end date of the next scheduled meeting, this market will resolve to the \"No change\" bracket.","keywords":["fed","federal reserve","fomc","interest rates","increase","interest","rates","50","bps","basis points","after","june","2026","meeting","bps after","after the","defined","upper","bound","target","federal","funds","range.","decisions"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":43876.16133199999,"url":"https://polymarket.com/event/fed-decision-in-june-825","category":"economics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"906976","oneDayPriceChange":0,"endDate":"2026-06-17"},{"id":"polymarket-0xe6939069d36ad63a9f7fcafa91b627a3f373a3264ab0347c1a5e042c5f7d1f08","platform":"polymarket","title":"Iran agrees to end enrichment of uranium by April 30?","description":"This market will resolve to \"Yes\" if Iran publicly agrees to end all enrichment of uranium by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nAn official pledge by Iran to end all enrichment of Uranium will qualify for a “Yes” resolution whether as a unilateral announcement or part of an agreement with the U.S. or Israel.\n\nAny agreement or pledge made before the resolution date of this market will qualify, regardless of if/when the agreement goes into effect.\n\nAn agreement by Iran to end all enrichment of uranium for any amount of time will count.\n\nAn agreement by Iran to end all enrichment of uranium as a precondition of a more comprehensive peace process or deal will qualify, even if the agreement is not finalized or part of a formalized peace deal. \n\nAgreements to merely limit or cap the level or quality of enrichment—such as reducing enrichment to below weapons-grade thresholds—will not qualify.\n\nThe primary resolution source for this market will be a consensus of credible reporting. ","keywords":["iran","nuclear","sanctions","middle east","agrees","end","enrichment","uranium","april","30","resolve","yes","publicly","2026","11","59","et.","otherwise"],"yesPrice":0.34,"noPrice":0.66,"yesAsk":0.34,"noAsk":0.66,"volume24h":43798.19823,"url":"https://polymarket.com/event/iran-agrees-to-end-enrichment-of-uranium-by-april-30","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"1515492","oneDayPriceChange":0.0295,"endDate":"2026-04-30"},{"id":"polymarket-0x6b5277be982ad362d2d8ca71ec76d56ac61e2ab9e8b560c4696aec4d128e5e8f","platform":"polymarket","title":"Will Hezbollah disarm by April 30?","description":"This market will resolve to \"Yes\" if Hezbollah officially announces it will disarm in Lebanon by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nOnly announcements supported by the Secretary-General of Hezbollah (currently Naim Qassem), a direct successor, or, if the position of Secretary-General of Hezbollah is vacant, the widely acknowledged leadership of Hezbollah will qualify. \n\nFor the purposes of this market, \"disarm\" refers to a public commitment to relinquish or dismantle its military, whether partially or completely, in Lebanon.\n\nAnnouncements of partial disarmament (e.g., surrendering a class of weapons or agreeing to disarm in stages or a certain region) will qualify as long as it is part of an acknowledged disarmament process.\n\nOnly official announcements will qualify. Informal statements, plans contingent on future conditions, statements of intent without a formal policy directive, or any other statements that do not constitute a formal policy announcement will not be considered.\n\nPrimary resolution sources will include official statements from Hezbollah leadership; however, a wide consensus of credible reporting confirming a policy of disarmament has been instituted will also qualify.","keywords":["hezbollah","israel","middle east","iran","disarm","april","30","resolve","yes","officially","announces","lebanon","2026","11","59"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":43710.537886,"url":"https://polymarket.com/event/will-hezbollah-disarm-by-march-31","category":"other","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"1929172","oneDayPriceChange":-0.002,"endDate":"2026-03-31"},{"id":"polymarket-0x9714c7fe6abc381277370c4287f8b2d30dffddd040565266d0274e67028b5197","platform":"polymarket","title":"Will Claudia López win the 2026 Colombian presidential election?","description":"Colombia's presidential elections are scheduled for May 31, 2026, and a second round (if required) on June 21, 2026, in case no candidate secures more than 50% of the valid votes in the first round.\n\nThis market will resolve according to the listed candidate that wins this election. \n\nThis market includes any potential second round. If the result of this election isn't known by December 31, 2026, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["claudia","pez","win","2026","colombian","presidential","election","pez win","win the","presidential election","colombia's","elections","scheduled","31","second","round","required","june"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":43638.13798800001,"url":"https://polymarket.com/event/colombia-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"569358","oneDayPriceChange":0,"endDate":"2026-06-21"},{"id":"polymarket-0x0d2496544913dd1efdc093d296e366b4de344adeecc45d84cb4ab26433f335d1","platform":"polymarket","title":"Will Mauricio Cárdenas win the 1st round of the 2026 Colombian presidential election?","description":"Colombia's presidential elections are scheduled for May 31, 2026, and a second round (if required) on June 21, 2026, in case no candidate secures more than 50% of the valid votes in the first round.\n\nThis market will resolve according to the candidate who receives the greatest number of valid votes in the first round of voting.\n\nIf the results of the first round of the Colombian presidential election are not known by December 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["mauricio","rdenas","win","1st","round","2026","colombian","presidential","election","rdenas win","win the","presidential election","colombia's","elections","scheduled","31","second","required","june","21"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":43583.915,"url":"https://polymarket.com/event/colombia-presidential-election-1st-round-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"569348","oneDayPriceChange":0,"endDate":"2026-05-31"},{"id":"polymarket-0xe8f8bc52bb22ad4c03e8bfc045a5dad8081df2ed58d8e8411b29b82d1797bccf","platform":"polymarket","title":"Will Rafael López Aliaga finish in second place in the first round of the 2026 Peruvian presidential election?","description":"First-round presidential elections are scheduled to be held in Peru on April 12, 2026, with a potential second round on June 7, 2026, if no candidate receives more than 50% of the valid votes outright.\n\nThis market will resolve according to the listed candidate who receives the second-most valid votes in the first round of this election.\n\nThe named candidates will be primarily ranked by the number of valid votes received in the specified election. If two or more candidates are tied on valid votes, ties will be broken by alphabetical order of the candidates' last names. This market will resolve to the candidate that occupies the second-highest finishing position after applying this ranking.\n\nIf the results are not known definitively by October 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the results of this election, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve solely on the official results as reported by the Peruvian government, specifically the National Office of Electoral Processes (Oficina Nacional de Procesos Electorales, ONPE) (https://www.onpe.gob.pe/elecciones/) and the National Jury of Elections (Jurado Nacional de Elecciones, JNE) (https://portal.jne.gob.pe/portal/)","keywords":["rafael","pez","aliaga","finish","second","place","first","round","2026","peruvian","presidential","election","presidential election","first-round","elections","scheduled","held","peru","april","12","potential"],"yesPrice":0.15,"noPrice":0.84,"yesAsk":0.15,"noAsk":0.84,"volume24h":43057.24319800001,"url":"https://polymarket.com/event/peru-presidential-election-first-round-2nd-place","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.915Z","numericId":"1656056","oneDayPriceChange":0,"endDate":"2026-04-12"},{"id":"polymarket-0x7abedf40155a520adf7ff32f3468e603c27af9b9e4cef374dc6017888748bb1a","platform":"polymarket","title":"Will Elon Musk post 140-159 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","140-159","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":42925.496137000024,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"1976990","oneDayPriceChange":0,"endDate":"2026-04-24"},{"id":"polymarket-0xfcdb52d56f4077c214f977b6abd35e627fc6b5cf665b45c09b097a94c6c74a08","platform":"polymarket","title":"Will Elon Musk post 160-179 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","160-179","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":42699.216732999994,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"1976993","oneDayPriceChange":0.019,"endDate":"2026-04-24"},{"id":"polymarket-0xa460c6bcf298f0c8412df5807a1dbb733f83a2bae69a57854f405a6148151258","platform":"polymarket","title":"Will Nico Hülkenberg be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["nico","lkenberg","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":42658.704599,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"898421","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x21ad31a46bfaa51650766eff6dc69c866959e32d965ffb116020e37694b6317d","platform":"polymarket","title":"Will Marco Rubio win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["marco","rubio","win","2028","republican","presidential","nomination","marco rubio","senate","secretary of state","rubio win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.21,"noPrice":0.79,"yesAsk":0.21,"noAsk":0.79,"volume24h":42589.415509,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"561975","oneDayPriceChange":-0.007,"endDate":"2028-11-07"},{"id":"polymarket-0x92b0cd8f8750acb5718192327ddcb7d9caf56b519f2aecb3b24ef3dbc976253d","platform":"polymarket","title":"Will We Continue the Change – Democratic Bulgaria (PP–DB) finish second in the 2026 Bulgarian parliamentary election?","description":"Parliamentary elections are scheduled to be held in Bulgaria on April 19, 2026.\n\nThis market will resolve according to the political party or coalition that wins the second-greatest number of seats in the next Bulgarian National Assembly (Народно събрание, Narodno săbraniе) election.\n\nIf the results are not known definitively by October 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThe named parties or coalitions will be primarily ranked by the number of seats won in the specified election. If two or more parties are tied on seats, ties will be broken by the total number of valid votes received, with higher vote totals ranking higher. If parties remain tied, ties will be broken by alphabetical order of the listed party abbreviations. This market will resolve to the party that occupies the second-highest finishing position after applying this ranking.\n\nThis market's resolution will be based solely on the number of seats won by the named party or coalition in the Bulgarian Parliament. If a named coalition dissolves, this market will resolve based on the seat total of the constituent party within that coalition that held the largest number of seats before the election.\n\nThis market will resolve based on the results of this election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Bulgarian government, specifically the Central Election Commission of Bulgaria (Tsentralna Izbiratelna Komisia) (https://www.cik.bg/).","keywords":["continue","change","democratic","bulgaria","finish","second","2026","bulgarian","parliamentary","election","parliamentary election","elections","scheduled","held","april","19","2026.","resolve","according"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":42543.037503999985,"url":"https://polymarket.com/event/bulgarian-parliamentary-election-2nd-place","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"1736931","oneDayPriceChange":-0.277,"endDate":"2026-04-19"},{"id":"polymarket-0x7c795144bf0351e82c85f844de81f29f482aaefc3b544eddeb8b7932887649e4","platform":"polymarket","title":"Will Vicky Dávila win the 1st round of the 2026 Colombian presidential election?","description":"Colombia's presidential elections are scheduled for May 31, 2026, and a second round (if required) on June 21, 2026, in case no candidate secures more than 50% of the valid votes in the first round.\n\nThis market will resolve according to the candidate who receives the greatest number of valid votes in the first round of voting.\n\nIf the results of the first round of the Colombian presidential election are not known by December 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["vicky","vila","win","1st","round","2026","colombian","presidential","election","vila win","win the","presidential election","colombia's","elections","scheduled","31","second","required","june","21"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":42085.565,"url":"https://polymarket.com/event/colombia-presidential-election-1st-round-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"569332","oneDayPriceChange":0,"endDate":"2026-05-31"},{"id":"polymarket-0x8aa2f0b3b9edd1b07163286d3159c3a501d94cf0808841d5274336c68b1f7d44","platform":"polymarket","title":"Will Club Atlético de Madrid win on 2026-04-22?","description":"In the upcoming game, scheduled for April 22, 2026\nIf Club Atlético de Madrid wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["club","atl","tico","madrid","win","2026-04-22","madrid win","win on","upcoming","game","scheduled","april","22","2026","wins","resolve"],"yesPrice":0.39,"noPrice":0.61,"yesAsk":0.39,"noAsk":0.61,"volume24h":41998.116937,"url":"https://polymarket.com/event/lal-elc-mad-2026-04-22","category":"other","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"1925333","oneDayPriceChange":0.005,"endDate":"2026-04-22"},{"id":"polymarket-0xf8dbde8b6e038775a673947e59da2de15a2127272b50b9877400fdbf7cfc3026","platform":"polymarket","title":"Will Tom Brady win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["tom","brady","win","2028","republican","presidential","nomination","brady win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":41850.01556499999,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"561999","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xf85d061f231984632a0a15b79a37fae0c50e453212a68b4add344d1b73136f7a","platform":"polymarket","title":"Will Paris Saint-Germain place 2nd for the 2025-26 Ligue 1 season?","description":"This market will resolve to \"Yes\" if the listed club finishes 2nd in the final standings of the 2025-2026 Ligue 1 season. Otherwise, it will resolve to \"No\".\n\nIn the event of a tie, this market will resolve to the team officially recognized by Ligue 1 as finishing in second place. If multiple teams are officially awarded second place, the market will resolve to the team whose listed name comes first alphabetically.\n\nIf at any point it becomes impossible for the listed club to finish 2nd in the 2025-2026 Ligue 1 season (e.g. they are mathematically unable to achieve enough points), the market will resolve to \"No\".\n\nIf the 2025-2026 Ligue 1 season is cancelled, postponed after May 31, 2026, 11:59 PM ET, or there is otherwise no 2nd place team declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from Ligue 1. A consensus of credible reporting may also be used.","keywords":["paris","saint-germain","place","2nd","2025-26","ligue","1","season","resolve","yes","listed","club","finishes","final","standings","2025-2026"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":41828.389968,"url":"https://polymarket.com/event/ligue-1-2nd-place-finish","category":"technology","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"1794855","oneDayPriceChange":0.0195,"endDate":"2026-06-01"},{"id":"polymarket-0x78b9ef43d54cf340163e182140b4204b5dc76b296e99a964f93c4a7d64c1f98f","platform":"polymarket","title":"Will \"The Super Mario Galaxy Movie\" 3rd Weekend Box Office be between 37m and 40m?","description":"This market will resolve according to how much \"The Super Mario Galaxy Movie\" Weekend Box Office will gross domestically on its third weekend. The \"Daily Box Office Performance\" figures found on the “Box Office” tab on this movie's The Numbers (https://www.the-numbers.com/) page will be used to resolve this market once the values for the 3-day weekend (April 17 - April 19) are final (i.e., not studio estimates).\n\nIf the reported value falls exactly between two brackets, then this market will resolve to the higher range bracket.\n\nPlease note, this market will resolve according to the The Numbers figures provided under Weekend Box Office Performance for the 3-day weekend (which typically includes Thursday's previews), regardless of whether domestic refers to only the USA, or to USA and Canada, etc.\n\nIf there is ambiguity as to whether the resolution source's figures are final, this market will remain open until both https://www.boxofficemojo.com/ and https://www.the-numbers.com/ have confirmed their finalized figures.\n\nIf there is no final data available by April 26, 2026, 11:59 PM ET, another credible resolution source will be chosen.","keywords":["super","mario","nintendo","switch","gaming","super mario","galaxy","movie","film","cinema","box office","3rd","weekend","box","office","between","37m","40m","revenue","theater","resolve","according","much","gross","domestically","third","weekend.","daily"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":41681.00164499999,"url":"https://polymarket.com/event/the-super-mario-galaxy-movie-3rd-weekend-box-office-lower-strikes","category":"other","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"1993391","oneDayPriceChange":-0.171,"endDate":"2026-04-20"},{"id":"polymarket-0x1a1346d763389455dac46a51e20c4cc25aecef5323f1701a440cc11d4c3f129e","platform":"polymarket","title":"Putin out as President of Russia by June 30?","description":"This market will resolve to “Yes” if Vladimir Putin ceases to be President of Russia for any period of time between market creation and the specified date (ET). Otherwise, this market will resolve to “No”.\n\nAn announcement of Vladimir Putin's resignation/removal before this market's end date will immediately resolve this market to \"Yes\", regardless of when the announced resignation/removal goes into effect.\n\nIf the specified individual is detained, effectively removed from the specified position, or otherwise permanently prevented from fulfilling the duties of the specified position within this market’s timeframe, it will qualify for a “Yes” resolution.\n\nThe resolution source for this market will be official information from Vladimir Putin and the government of Russia; however, a consensus of credible reporting may also be used.","keywords":["putin","russia","ukraine","kremlin","out","president","june","30","resolve","yes","vladimir","ceases","period","time","between","creation"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":41464.034537,"url":"https://polymarket.com/event/putin-out-as-president-of-russia-by-june-30","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"958448","oneDayPriceChange":0.011,"endDate":"2026-06-30"},{"id":"polymarket-0x8ecd1d15e521b7d1020ad5596cc981c8764e9dcfbc3648f582e1a5138aee7185","platform":"polymarket","title":"Will Beto O’Rourke win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["beto","rourke","win","2028","democratic","presidential","nomination","rourke win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":41460.879250999984,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"559689","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x61600d487069f99e775307a0655c1a79f26e4fc6d8d1ba66790c64d78d0beba2","platform":"polymarket","title":"Will Jon Ossoff win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["jon","ossoff","win","2028","presidential","election","ossoff win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":41396.663486,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"561261","oneDayPriceChange":0.003,"endDate":"2028-11-07"},{"id":"polymarket-0xd75a9de8f60669a0b891d713902dcfee64dcf88471c49dd76f39fd1ac34c016b","platform":"polymarket","title":"Will Rumen Radev be the next prime minister of Bulgaria after the 2026 parliamentary election?","description":"Parliamentary elections are scheduled to be held in Bulgaria on April 19, 2026.\n\nThis market will resolve to the next individual who is officially sworn in as Prime Minister of Bulgaria following the next parliamentary election.\n\nTo count for resolution, the individual must be formally sworn in. Any interim or caretaker Prime Minister will not count toward the resolution of this market.\n\nIf no such Prime Minister is appointed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from the Government of Bulgaria; however, a consensus of credible reporting may also be used.","keywords":["rumen","radev","next","prime","minister","bulgaria","after","2026","parliamentary","election","bulgaria after","after the","parliamentary election","elections","scheduled","held","april","19","2026.","resolve","individual"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":41322.79492899999,"url":"https://polymarket.com/event/next-prime-minister-of-bulgaria","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"1572243","oneDayPriceChange":0.017,"endDate":"2026-04-19"},{"id":"polymarket-0x0fa5d80f8f8fec384b629d60a47c8c669ff7e6ea469edb9f91ccfd030b7f56d7","platform":"polymarket","title":"Will WTI Crude Oil (WTI) hit (HIGH) $130 in April?","description":"This market will resolve to \"Yes\" if, at any point during April 2026, any 1-minute candle for the Active Month of WTI Crude Oil futures has a final \"High\" price equal to or above the listed price. Otherwise, this market will resolve to \"No\".\n\nFor WTI futures, the active month refers to the nearest listed contract month. The active month changes at 6:00:00 PM ET at the start of the trading session two business days prior to that contract's last trading day, at which point the next listed contract becomes the active month.\n\nFor WTI Crude Oil (CL) futures, the last trading day is defined as three business days prior to the 25th calendar day of the month preceding the contract's delivery month (or four business days prior if the 25th calendar day is not a business day), consistent with CME contract specifications.\n\nOnly prices achieved during the applicable trading session for the underlying market will be considered. Under the standard schedule, trading is open from 6:00:00 PM ET Sunday through 5:00:00 PM ET Friday, with a daily break from 5:00:00 PM ET to 6:00:00 PM ET, except where modified by holiday or special-session hours as listed on Pyth.\n\nPrices will be used exactly as published by Pyth, without rounding.\n\nIf the Active Month contract does not trade at all during the listed time frame, this market will resolve to \"No\".\n\nIn the event of a contract specification change, feed change, or similar structural modification affecting the underlying market during the listed time frame, this market will resolve based on adjusted prices as displayed on Pyth.\n\nThe resolution source for this market is Pyth — specifically, the Active Month WTI Crude Oil futures \"High\" prices available at https://pythdata.app/explore?search=WTI, with the chart settings configured for 1-minute candles.\n\nHistorical 1-minute candles may be accessed by appending a Unix timestamp (seconds) to the Pyth chart URL using the \"t=\" parameter.\n\nIf the relevant Pyth data is unavailable due to a system outage, data failure, or other technical disruption that prevents verification of the required 1-minute candle data, the official daily high price published for the Active Month WTI Crude Oil (CL) futures contract by CME Group may be used to determine whether the listed price was reached during the applicable trading session.","keywords":["wti","oil","crude","energy","hit","high","130","april","wti hit","hit high","resolve","yes","point","during","2026","1-minute","candle","active"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":41312.688183,"url":"https://polymarket.com/event/what-price-will-wti-hit-in-april-2026","category":"climate","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"1712296","oneDayPriceChange":-0.0115,"endDate":"2026-04-30"},{"id":"polymarket-0x34ed4ad7a7825f168e1084f53e8f60a161579d783b2740e50aa52f710925a136","platform":"polymarket","title":"Will Ségolène Royal win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["gol","royal","win","2027","french","presidential","election","royal win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":41260.26891299997,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"679035","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0xe660bc726e2e1171e8af9a1362845f9e85c16550f8918f75959a5229af280c3e","platform":"polymarket","title":"Will Cho Eun-hee win the 2026 Seoul Mayoral Election","description":"The 2026 Seoul mayoral election is scheduled to take place on June 3, 2026 to elect the next mayor of Seoul.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nIf the result of this election isn't known by January 31, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the South Korean government, specifically the National Election Commission.","keywords":["cho","eun-hee","win","2026","seoul","mayoral","election","eun-hee win","win the","mayoral election","scheduled","take","place","june","3","elect","next","mayor"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":41150.157285999994,"url":"https://polymarket.com/event/2026-seoul-mayoral-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"678931","oneDayPriceChange":0,"endDate":"2026-06-03"},{"id":"polymarket-0x47d7942cce716b7252009d39eec57d7b292505e752aaac405b198e90a73a11f5","platform":"polymarket","title":"Will RC Deportivo La Coruña win on 2026-04-20?","description":"In the upcoming game, scheduled for April 20, 2026\nIf RC Deportivo La Coruña wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["deportivo","coru","win","2026-04-20","a win","win on","upcoming","game","scheduled","april","20","2026","wins","resolve"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.5,"noAsk":0.5,"volume24h":40860.525324000024,"url":"https://polymarket.com/event/es2-dep-mir-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"1903120","oneDayPriceChange":-0.14,"endDate":"2026-04-20"},{"id":"polymarket-0xa7d7ed69cfd6107e5e005556730dcf45727c1cdd1001f0378f5e471526181c47","platform":"polymarket","title":"Will Bitcoin reach $1,000,000 by December 31, 2026?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for Bitcoin (BTC/USDT) between November 24, 2025, 14:00 and December 31, 2026, 23:59 in the ET timezone has a final \"High\" price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"High\" prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","reach","1000000","december","31","2026","bitcoin reach","reach 1000000","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":40752.38282900001,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-before-2027","category":"crypto","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"1393070","oneDayPriceChange":0,"endDate":"2027-01-01"},{"id":"polymarket-0x1f113d9c62d46e40f5d1808f64c5d5892a583d22ff5d90c7a23737e221ff84ce","platform":"polymarket","title":"Will Kang Hoon-sik win the 2026 Seoul Mayoral Election","description":"The 2026 Seoul mayoral election is scheduled to take place on June 3, 2026 to elect the next mayor of Seoul.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nIf the result of this election isn't known by January 31, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the South Korean government, specifically the National Election Commission.","keywords":["kang","hoon-sik","win","2026","seoul","mayoral","election","hoon-sik win","win the","mayoral election","scheduled","take","place","june","3","elect","next","mayor"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":40702.11631599999,"url":"https://polymarket.com/event/2026-seoul-mayoral-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"678943","oneDayPriceChange":0,"endDate":"2026-06-03"},{"id":"polymarket-0x01dffa7abae7e5d9b7fb44b06d537c5ac932e2ca422ab4b53366672f5e2dc7d6","platform":"polymarket","title":"Will Greg Abbott win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["greg","abbott","win","2028","presidential","election","abbott win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":40579.77427800001,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"561249","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x036f32b7b18291ff94d09f0c11830d8b839aafd0148e644207be97a4f9bd5a8a","platform":"polymarket","title":"U.S. forces seize another oil tanker by April 30?","description":"This market will resolve to “Yes” if U.S. government forces seize an oil tanker or any other ship actively transporting oil between market creation and April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nU.S. government forces refer to any active U.S. military (including U.S. Coast Guard), law enforcement, or intelligence personnel or contractors.\n\nSeizes refers to U.S. forces taking custody of or asserting operational control of the vessel, including boarding and taking control of the vessel, detaining the vessel indefinitely, or forcefully rerouting the vessel to a U.S.-controlled port.\n\nThe resolution source for this market will be a consensus of credible reporting.","keywords":["u.s.","forces","seize","oil","tanker","april","30","resolve","yes","government","ship","actively","transporting","between","creation"],"yesPrice":0.32,"noPrice":0.68,"yesAsk":0.32,"noAsk":0.68,"volume24h":40544.80278199998,"url":"https://polymarket.com/event/us-forces-seize-another-oil-tanker-by-april-15","category":"climate","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"1849095","oneDayPriceChange":-0.007,"endDate":"2026-04-30"},{"id":"polymarket-0xff26d2bfdfa949ab4d9f91e460ea721fe5a61dad3621ea5c69dfb04b64957be8","platform":"polymarket","title":"Will Park Yong-jin win the 2026 Seoul Mayoral Election","description":"The 2026 Seoul mayoral election is scheduled to take place on June 3, 2026 to elect the next mayor of Seoul.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nIf the result of this election isn't known by January 31, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the South Korean government, specifically the National Election Commission.","keywords":["park","yong-jin","win","2026","seoul","mayoral","election","yong-jin win","win the","mayoral election","scheduled","take","place","june","3","elect","next","mayor"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":40492.19796299998,"url":"https://polymarket.com/event/2026-seoul-mayoral-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"678935","oneDayPriceChange":0,"endDate":"2026-06-03"},{"id":"polymarket-0x8d62f20324e9e7f1a3c663ab6aac9a2f6e7adb96c6a69ac2cea7e08a71a7f2ef","platform":"polymarket","title":"Will Tom Steyer win the California Governor Election in 2026?","description":"This market will resolve to according to the candidate who wins the 2026 California gubernatorial election currently scheduled for November 3, 2026.\n\nIf the results of the election are not confirmed by July 31, 2027, this market will resolve to \"Other\".\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race in this state for the same candidate, this market will resolve based on official certification.","keywords":["tom","steyer","win","california","governor","election","2026","steyer win","win the","governor election","election in","resolve","according","candidate","wins","gubernatorial","currently","scheduled","november"],"yesPrice":0.47,"noPrice":0.53,"yesAsk":0.47,"noAsk":0.53,"volume24h":40112.896892000004,"url":"https://polymarket.com/event/california-governor-election-2026","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"628955","oneDayPriceChange":-0.1195,"endDate":"2026-11-03"},{"id":"polymarket-0x36f3d99fb629ebbad8bc559f922da1b1e8333496fe6322308bff647926ac15f0","platform":"polymarket","title":"Will the Los Angeles Angels win the 2026 World Series?","description":"This market will resolve according to the team that wins the 2026 MLB World Series. \n\nIf at any point it becomes impossible for a listed team to win the 2026 MLB World Series per the rules of MLB (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2026 MLB season is cancelled, postponed after December 31, 2026 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from MLB (https://www.mlb.com/); however, a consensus of credible reporting may also be used.","keywords":["los","angeles","angels","win","2026","world","series","angels win","win the","resolve","according","team","wins","mlb","baseball","series.","point"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":40048.6265,"url":"https://polymarket.com/event/mlb-world-series-champion-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"1235559","oneDayPriceChange":0.001,"endDate":"2026-10-31"},{"id":"polymarket-0x281565cae359040475640be8bc20f4efe15245fe0251805fd338fb1a3e45ffae","platform":"polymarket","title":"Will Shai Gilgeous-Alexander win the 2025–2026 NBA MVP?","description":"This market will resolve to \"Yes\" if Shai Gilgeous-Alexander is awarded the 2025–26 regular season NBA Most Valuable Player (MVP) Award. Otherwise, this market will resolve to \"No\".\n\nIf the listed player is not announced as a finalist for the 2025–26 NBA MVP award, this market will immediately resolve to \"No\".\n\nThe primary resolution source for this market will be official information from the NBA. However, a consensus of credible reporting may also be used.","keywords":["shai","gilgeous-alexander","win","2025","2026","nba","basketball","mvp","gilgeous-alexander win","win the","resolve","yes","awarded","26","regular","season","most","valuable"],"yesPrice":0.96,"noPrice":0.04,"yesAsk":0.96,"noAsk":0.04,"volume24h":39996.44836499999,"url":"https://polymarket.com/event/nba-mvp-694","category":"technology","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"564162","oneDayPriceChange":-0.003,"endDate":"2026-06-10"},{"id":"polymarket-0x6c09db6abbe01d6d6265034c0cc20ba69b4dd627ffebcd474422b83be9bece08","platform":"polymarket","title":"Will CD Mirandés win on 2026-04-20?","description":"In the upcoming game, scheduled for April 20, 2026\nIf CD Mirandés wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["mirand","win","2026-04-20","s win","win on","upcoming","game","scheduled","april","20","2026","wins","resolve"],"yesPrice":0.41,"noPrice":0.58,"yesAsk":0.41,"noAsk":0.58,"volume24h":39966.077659999995,"url":"https://polymarket.com/event/es2-dep-mir-2026-04-20","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"1903124","oneDayPriceChange":0.285,"endDate":"2026-04-20"},{"id":"polymarket-0x4829622c7e527b827847168c6e1c84d7039959b0b6338acfe7c0097f7371452c","platform":"polymarket","title":"Will Kayserispor win on 2026-04-20?","description":"In the upcoming game, scheduled for April 20, 2026\nIf Kayserispor wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["kayserispor","win","2026-04-20","kayserispor win","win on","upcoming","game","scheduled","april","20","2026","wins","resolve"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":39609.427347,"url":"https://polymarket.com/event/tur-gfk-kay-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"1762762","oneDayPriceChange":-0.2945,"endDate":"2026-04-20"},{"id":"polymarket-0x98ff544c14009c21ab3ce4032b8e00bfd59bc9ad56a44d0de5b4ff1dacfdce17","platform":"polymarket","title":"Will Arthur Fils win the 2026 Men's US Open?","description":"The 2026 U.S. Open tennis tournament is scheduled for August 23 - September 13, 2026.\n\nThis market will resolve to the player that wins the 2026 U.S. Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 U.S. Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 U.S. Open Men’s Singles Tournament is cancelled, postponed after October 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the U.S. Open (https://www.usopen.org/index.html); however, a consensus of credible reporting may also be used.","keywords":["arthur","fils","win","2026","men's","open","fils win","win the","us open","tennis","grand slam","u.s.","tournament","scheduled","august","23","september","13","2026."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":39293.5517,"url":"https://polymarket.com/event/2026-mens-us-open-winner-tennis","category":"other","lastUpdated":"2026-04-20T19:49:45.916Z","numericId":"1088485","oneDayPriceChange":0.0005,"endDate":"2026-09-13"},{"id":"polymarket-0x98ff544c14009c21ab3ce4032b8e00bfd59bc9ad56a44d0de5b4ff1dacfdce17","platform":"polymarket","title":"Will Arthur Fils win the 2026 Men's US Open?","description":"The 2026 U.S. Open tennis tournament is scheduled for August 23 - September 13, 2026.\n\nThis market will resolve to the player that wins the 2026 U.S. Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 U.S. Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 U.S. Open Men’s Singles Tournament is cancelled, postponed after October 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the U.S. Open (https://www.usopen.org/index.html); however, a consensus of credible reporting may also be used.","keywords":["arthur","fils","win","2026","men's","open","fils win","win the","us open","tennis","grand slam","u.s.","tournament","scheduled","august","23","september","13","2026."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":39293.5517,"url":"https://polymarket.com/event/2026-mens-us-open-winner-tennis","category":"other","lastUpdated":"2026-04-20T19:49:45.967Z","numericId":"1088485","oneDayPriceChange":0.0005,"endDate":"2026-09-13"},{"id":"polymarket-0xafd3f96b7b6084509e625270538ff0699003fafc042263c1216e7f084cef753a","platform":"polymarket","title":"Will Aldo Rebelo win the 2026 Brazilian presidential election?","description":"A presidential election is scheduled to take place in Brazil on October 4, 2026.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nThis market includes any potential second round. If the result of this election isn't known by June 30, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Brazilian government, specifically the Superior Electoral Court (Tribunal Superior Eleitoral, TSE) (e.g., https://dadosabertos.tse.jus.br/).","keywords":["aldo","rebelo","win","2026","brazilian","presidential","election","rebelo win","win the","presidential election","scheduled","take","place","brazil","october","4","2026.","resolve"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":39261.134315,"url":"https://polymarket.com/event/brazil-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.967Z","numericId":"601832","oneDayPriceChange":0,"endDate":"2026-10-04"},{"id":"polymarket-0xde04b189b3f19eaccda02529a3ea67abfc46bff5c0c8fc42d8a2d0ed7b8f0d41","platform":"polymarket","title":"Will there be no change in Fed interest rates after the June 2026 meeting?","description":"The FED interest rates are defined in this market by the upper bound of the target federal funds range. The decisions on the target federal funds range are made by the Federal Open Market Committee (FOMC) meetings.\n\nThis market will resolve to the amount of basis points the upper bound of the target federal funds rate is changed by versus the level it was prior to the Federal Reserve's June 2026 meeting.\n\nIf the target federal funds rate is changed to a level not expressed in the displayed options, the change will be rounded up to the nearest 25 and will resolve to the relevant bracket. (e.g. if there's a cut/increase of 12.5 bps it will be considered to be 25 bps)\n\nThe resolution source for this market is the FOMC’s statement after its meeting scheduled for June 16-17, 2026 according to the official calendar: https://www.federalreserve.gov/monetarypolicy/fomccalendars.htm.\n\nThe level and change of the target federal funds rate is also published at the official website of the Federal Reserve at https://www.federalreserve.gov/monetarypolicy/openmarket.htm.\n\nThis market may resolve as soon as the FOMC’s statement for their June meeting with relevant data is issued. If no statement is released by the end date of the next scheduled meeting, this market will resolve to the \"No change\" bracket.","keywords":["there","no","change","fed","federal reserve","fomc","interest rates","interest","rates","after","june","2026","meeting","be no","no change","rates after","after the","defined","upper","bound","target","federal","funds","range.","decisions"],"yesPrice":0.94,"noPrice":0.06,"yesAsk":0.94,"noAsk":0.06,"volume24h":39136.378315000016,"url":"https://polymarket.com/event/fed-decision-in-june-825","category":"economics","lastUpdated":"2026-04-20T19:49:45.967Z","numericId":"906974","oneDayPriceChange":0.01,"endDate":"2026-06-17"},{"id":"polymarket-0xb8683df5ebcc52d9f3577ce65667082544b368f7e3b84120aa345b31dd89d832","platform":"polymarket","title":"Will Google have the best AI model at the end of April 2026?","description":"This market will resolve according to the company that owns the model that has the highest arena score based on the Chatbot Arena LLM Leaderboard (https://lmarena.ai/) when the table under the \"Leaderboard\" tab is checked on April 30, 2026, 12:00 PM ET.\n\nResults from the \"Score\" column under the \"Text Arena | Overall\" Leaderboard tab at https://lmarena.ai/leaderboard/text with style control off will be used to resolve this market.\n\nModels will be ranked primarily by their arena score at this market’s check time, with alphabetical order of company names as listed in this market group used as a tiebreaker (e.g., if the two models are tied by arena score, “Google” would be ranked ahead of “xAI”). This market will resolve based on the company that occupies first place under this ranking.\n\nThe resolution source for this market is the Chatbot Arena LLM Leaderboard found at https://lmarena.ai/. If this resolution source is unavailable at check time, this market will remain open until the leaderboard comes back online and will resolve based on the first check after it becomes available. If it becomes permanently unavailable, this market will resolve based on another resolution source.","keywords":["google","googl","alphabet","best","model","end","april","2026","resolve","according","company","owns","highest","arena","score","based"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":38993.06956599999,"url":"https://polymarket.com/event/which-company-has-the-best-ai-model-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:45.967Z","numericId":"1664038","oneDayPriceChange":-0.002,"endDate":"2026-04-30"},{"id":"polymarket-0xe81351003837800d495a43eab50a2739701dab05142cccb901fbf4ee339fd4fd","platform":"polymarket","title":"Will Francisco Cerundolo win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["francisco","cerundolo","win","2026","men's","french","open","cerundolo win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":38957.820779,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:45.967Z","numericId":"1087525","oneDayPriceChange":-0.001,"endDate":"2026-06-07"},{"id":"polymarket-0x592cbab04ef7c6587291a91675040bada46f3883730a9232d48749d2ce07772d","platform":"polymarket","title":"Will Aarhus GF win on 2026-04-20?","description":"In the upcoming game, scheduled for April 20, 2026\nIf Aarhus GF wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["aarhus","win","2026-04-20","gf win","win on","upcoming","game","scheduled","april","20","2026","wins","resolve"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":38854.05460699998,"url":"https://polymarket.com/event/den-mid-agf-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:45.967Z","numericId":"1694912","oneDayPriceChange":-0.2595,"endDate":"2026-04-20"},{"id":"polymarket-0xe7cc0ff193cd9d9eecff645adb8a9a1f55bdabe5c7a835f73dafc61dc143fbdf","platform":"polymarket","title":"Will the highest temperature in Cape Town be 14°C on April 21?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Cape Town International Airport Station in degrees Celsius on 21 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Cape Town International Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/za/matroosfontein/FACT.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","cape","town","14","april","21","resolve","range","contains","recorded","international","airport","station","degrees"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":38770.49852099999,"url":"https://polymarket.com/event/highest-temperature-in-cape-town-on-april-21-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.968Z","numericId":"2019640","oneDayPriceChange":0.032,"endDate":"2026-04-21"},{"id":"polymarket-0x5fd7a14573c76aff95dee08cc00dbc0e87a6c7ba374bad1300e9aff5f0b98611","platform":"polymarket","title":"Will Andrey Rublev win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["andrey","rublev","win","2026","men's","french","open","rublev win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":38614.335165,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:45.968Z","numericId":"1087532","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0x496dc2366bbdf6ff90d78507aa1d8026adfe4485eefa90d20dd3c442ebf801b8","platform":"polymarket","title":"Will the price of Bitcoin be above $76,000 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["bitcoin","btc","crypto","above","76000","april","21","be above","above 76000","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.56,"noPrice":0.44,"yesAsk":0.56,"noAsk":0.44,"volume24h":38599.122505,"url":"https://polymarket.com/event/bitcoin-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:45.968Z","numericId":"1981835","oneDayPriceChange":0.215,"endDate":"2026-04-21"},{"id":"polymarket-0x054725b2a7971376f7924a7021221b12acc50fe78d97817824fe411704d5b5a2","platform":"polymarket","title":"Will Romeu Zema win the 2026 Brazilian presidential election?","description":"A presidential election is scheduled to take place in Brazil on October 4, 2026.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nThis market includes any potential second round. If the result of this election isn't known by June 30, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Brazilian government, specifically the Superior Electoral Court (Tribunal Superior Eleitoral, TSE) (e.g., https://dadosabertos.tse.jus.br/).","keywords":["romeu","zema","win","2026","brazilian","presidential","election","zema win","win the","presidential election","scheduled","take","place","brazil","october","4","2026.","resolve"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":38546.195045999986,"url":"https://polymarket.com/event/brazil-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.968Z","numericId":"601828","oneDayPriceChange":0.0115,"endDate":"2026-10-04"},{"id":"polymarket-0x21c4a93f8aa6c2f11ae333e4326744f230c5c27011888e81eac146529c12a42c","platform":"polymarket","title":"Will the price of Ethereum be above $1,900 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for ETH/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the ETH/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/ETH_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance ETH/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["ethereum","eth","crypto","above","1900","april","21","be above","above 1900","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":38418.988953,"url":"https://polymarket.com/event/ethereum-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:45.968Z","numericId":"1981761","oneDayPriceChange":0.007,"endDate":"2026-04-21"},{"id":"polymarket-0x2226a3e40300238a813bddccb7cadef078ffce4c83e237d85a135e685f0b81b5","platform":"polymarket","title":"Will WTI Crude Oil (WTI) hit (HIGH) $140 in April?","description":"This market will resolve to \"Yes\" if, at any point during April 2026, any 1-minute candle for the Active Month of WTI Crude Oil futures has a final \"High\" price equal to or above the listed price. Otherwise, this market will resolve to \"No\".\n\nFor WTI futures, the active month refers to the nearest listed contract month. The active month changes at 6:00:00 PM ET at the start of the trading session two business days prior to that contract's last trading day, at which point the next listed contract becomes the active month.\n\nFor WTI Crude Oil (CL) futures, the last trading day is defined as three business days prior to the 25th calendar day of the month preceding the contract's delivery month (or four business days prior if the 25th calendar day is not a business day), consistent with CME contract specifications.\n\nOnly prices achieved during the applicable trading session for the underlying market will be considered. Under the standard schedule, trading is open from 6:00:00 PM ET Sunday through 5:00:00 PM ET Friday, with a daily break from 5:00:00 PM ET to 6:00:00 PM ET, except where modified by holiday or special-session hours as listed on Pyth.\n\nPrices will be used exactly as published by Pyth, without rounding.\n\nIf the Active Month contract does not trade at all during the listed time frame, this market will resolve to \"No\".\n\nIn the event of a contract specification change, feed change, or similar structural modification affecting the underlying market during the listed time frame, this market will resolve based on adjusted prices as displayed on Pyth.\n\nThe resolution source for this market is Pyth — specifically, the Active Month WTI Crude Oil futures \"High\" prices available at https://pythdata.app/explore?search=WTI, with the chart settings configured for 1-minute candles.\n\nHistorical 1-minute candles may be accessed by appending a Unix timestamp (seconds) to the Pyth chart URL using the \"t=\" parameter.\n\nIf the relevant Pyth data is unavailable due to a system outage, data failure, or other technical disruption that prevents verification of the required 1-minute candle data, the official daily high price published for the Active Month WTI Crude Oil (CL) futures contract by CME Group may be used to determine whether the listed price was reached during the applicable trading session.","keywords":["wti","oil","crude","energy","hit","high","140","april","wti hit","hit high","resolve","yes","point","during","2026","1-minute","candle","active"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":38179.495948,"url":"https://polymarket.com/event/what-price-will-wti-hit-in-april-2026","category":"climate","lastUpdated":"2026-04-20T19:49:45.968Z","numericId":"1712295","oneDayPriceChange":-0.0105,"endDate":"2026-04-30"},{"id":"polymarket-0xc84dfa2ab4a808d1b96a2cf439f8b88a1c5c37762253280deb7663a195d9b859","platform":"polymarket","title":"Trump announces end of military operations against Iran by June 30th?","description":"This market will resolve to \"Yes\" if President Trump, the US government, or the military publicly and officially announce that their military operations against Iran, initiated on February 28, 2026, have concluded by the listed date (ET). Otherwise, this market will resolve to “No”.\n\nQualifying statements must clearly indicate that the operation has ended. Informal announcements, statements from unnamed sources or leaks will not qualify. \n\nWritten public statements from Donald Trump (e.g. posts from his personal Truth Social account), will count. Videos posted on his social media accounts will also qualify for a \"Yes\" resolution.\n\nThe primary resolution source for this market will be official statements from the US government and/or its official representatives; however, a consensus of credible reporting may also be used.","keywords":["trump","president","potus","administration","gop","republican","announces","end","military","operations","against","iran","nuclear","sanctions","middle east","june","30th","resolve","yes","government","publicly","officially","announce","initiated","february"],"yesPrice":0.81,"noPrice":0.19,"yesAsk":0.81,"noAsk":0.19,"volume24h":38136.016582000004,"url":"https://polymarket.com/event/trump-announces-end-of-military-operations-against-iran-by","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.968Z","numericId":"1517836","oneDayPriceChange":0.01,"endDate":"2026-06-30"},{"id":"polymarket-0x8eef95a202ab5a054ffb70a91624751a06d8760ff21107c818fc5a0668099575","platform":"polymarket","title":"Will the highest temperature in New York City be between 48-49°F on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the LaGuardia Airport Station in degrees Fahrenheit on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the LaGuardia Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/us/ny/new-york-city/KLGA.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Fahrenheit (eg, 21°F). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","new","york","city","between","48-49","april","20","resolve","range","contains","recorded","laguardia","airport","station","degrees"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":38014.379337,"url":"https://polymarket.com/event/highest-temperature-in-nyc-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.968Z","numericId":"2011125","oneDayPriceChange":-0.2645,"endDate":"2026-04-20"},{"id":"polymarket-0x51e8c8df709aa78f64d2d9324d9d2556270f81e3966ade308099e5338bb4e4c9","platform":"polymarket","title":"Will Iraq win the 2026 FIFA World Cup?","description":"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\n\nIf at any point it becomes impossible for this team to win the FIFA World Cup based on the rules of FIFA (e.g., they are eliminated in the knockout stage), this market will resolve immediately to “No”.\n\nIf the 2026 FIFA World Cup is permanently canceled or has not been completed by October 13, 2026, 11:59 PM this market will resolve to “Other”.\n\nThe primary resolution source will be official information from FIFA, however, a consensus of credible reporting may also be used.","keywords":["iraq","win","2026","fifa","soccer","world cup","world","cup","iraq win","win the","football","resolve","according","national","team","wins","cup.","point","becomes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":37812.559,"url":"https://polymarket.com/event/2026-fifa-world-cup-winner-595","category":"sports","lastUpdated":"2026-04-20T19:49:45.968Z","numericId":"558982","oneDayPriceChange":0,"endDate":"2026-07-20"},{"id":"polymarket-0x86e11d511362bf0078f248de6929c832cf60c5de630f06c224a498f6198a30d2","platform":"polymarket","title":"Will WTI Crude Oil (WTI) hit (HIGH) $125 in April?","description":"This market will resolve to \"Yes\" if, at any point between market creation and the final trading day during April 2026, any 1-minute candle for the Active Month of WTI Crude Oil futures has a final \"High\" price equal to or above the listed price. Otherwise, this market will resolve to \"No\".\n\nFor WTI futures, the active month refers to the nearest listed contract month. The active month changes at 6:00:00 PM ET at the start of the trading session two business days prior to that contract's last trading day, at which point the next listed contract becomes the active month.\n\nFor WTI Crude Oil (CL) futures, the last trading day is defined as three business days prior to the 25th calendar day of the month preceding the contract's delivery month (or four business days prior if the 25th calendar day is not a business day), consistent with CME contract specifications.\n\nOnly prices achieved during the applicable trading session for the underlying market will be considered. Under the standard schedule, trading is open from 6:00:00 PM ET Sunday through 5:00:00 PM ET Friday, with a daily break from 5:00:00 PM ET to 6:00:00 PM ET, except where modified by holiday or special-session hours as listed on Pyth.\n\nPrices will be used exactly as published by Pyth, without rounding.\n\nIf the Active Month contract does not trade at all during the listed time frame, this market will resolve to \"No\".\n\nIn the event of a contract specification change, feed change, or similar structural modification affecting the underlying market during the listed time frame, this market will resolve based on adjusted prices as displayed on Pyth.\n\nThe resolution source for this market is Pyth — specifically, the Active Month WTI Crude Oil futures \"High\" prices available at https://pythdata.app/explore?search=WTI, with the chart settings configured for 1-minute candles.\n\nHistorical 1-minute candles may be accessed by appending a Unix timestamp (seconds) to the Pyth chart URL using the \"t=\" parameter.\n\nIf the relevant Pyth data is unavailable due to a system outage, data failure, or other technical disruption that prevents verification of the required 1-minute candle data, the official daily high price published for the Active Month WTI Crude Oil (CL) futures contract by CME Group may be used to determine whether the listed price was reached during the applicable trading session.","keywords":["wti","oil","crude","energy","hit","high","125","april","wti hit","hit high","resolve","yes","point","between","creation","final","trading","day"],"yesPrice":0.05,"noPrice":0.95,"yesAsk":0.05,"noAsk":0.95,"volume24h":37771.620631,"url":"https://polymarket.com/event/what-price-will-wti-hit-in-april-2026","category":"climate","lastUpdated":"2026-04-20T19:49:45.968Z","numericId":"1929195","oneDayPriceChange":-0.0125,"endDate":"2026-04-30"},{"id":"polymarket-0x02e13eb5ee90a41b395c7aea1081d55290a48546a2604427d4a48320e07f1878","platform":"polymarket","title":"Will Ethereum dip to $1,200 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for ETH/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final Low price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the ETH/USDT Low prices available at https://www.binance.com/en/trade/ETH_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance ETH/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["ethereum","eth","crypto","dip","1200","april","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":37667.9212,"url":"https://polymarket.com/event/what-price-will-ethereum-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.968Z","numericId":"1823803","oneDayPriceChange":-0.004,"endDate":"2026-05-01"},{"id":"polymarket-0x01d046f7514281bb1c9366702c89de78b685d05bb6708bb18da03a297332d50d","platform":"polymarket","title":"Will Bitcoin reach $110,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final High price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT High prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","reach","110000","april","bitcoin reach","reach 110000","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":37666.840094,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.968Z","numericId":"1823770","oneDayPriceChange":0,"endDate":"2026-05-01"},{"id":"polymarket-0xf63b20e72086547c789e93d744f811c20d9c0b14be0501599cd4c1c5853c9bd5","platform":"polymarket","title":"Will David Luna Sánchez win the 2026 Colombian presidential election?","description":"Colombia's presidential elections are scheduled for May 31, 2026, and a second round (if required) on June 21, 2026, in case no candidate secures more than 50% of the valid votes in the first round.\n\nThis market will resolve according to the listed candidate that wins this election. \n\nThis market includes any potential second round. If the result of this election isn't known by December 31, 2026, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["david","luna","nchez","win","2026","colombian","presidential","election","nchez win","win the","presidential election","colombia's","elections","scheduled","31","second","round","required","june"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":37517.2,"url":"https://polymarket.com/event/colombia-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.968Z","numericId":"569359","oneDayPriceChange":0,"endDate":"2026-06-21"},{"id":"polymarket-0xff081c52486b2843da251a6d97187318a578af62f2a16cb47c9531fea1e8c1ee","platform":"polymarket","title":"Will Bulgaria win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["bulgaria","win","eurovision","2026","bulgaria win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":37446.08989200002,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.968Z","numericId":"842009","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0xb412664463bbfe21be44b1963291205ab332afd4f7f6e0d027aec1ba7a9e6793","platform":"polymarket","title":"Iran leadership change by April 30?","description":"This market will resolve to \"Yes\" if the Supreme Leader of Iran, Mojtaba Khamenei, ceases to be the de facto leader of Iran at any point between market creation and the listed date (ET). Otherwise, this market will resolve to \"No\".\n\nMojtaba Khamenei will be considered to no longer be the de facto leader of Iran if he is removed from power, is detained, or otherwise loses his position or is prevented from acting as the de facto leader of Iran within this market's timeframe.\n\nAn official announcement of Mojtaba Khamenei’s resignation or removal will qualify for a \"Yes\" resolution regardless of when the announced departure goes into effect.\n\nThe primary resolution source for this market will be a consensus of credible reporting.","keywords":["iran","nuclear","sanctions","middle east","leadership","change","april","30","resolve","yes","supreme","leader","mojtaba","khamenei","ceases","facto"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":37215.487211,"url":"https://polymarket.com/event/iran-leadership-change-by","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1535972","oneDayPriceChange":-0.0005,"endDate":"2026-04-30"},{"id":"polymarket-0x202af343a370924358b0397efd5b812affec245fd60a9f7bdcadc914b6179a3d","platform":"polymarket","title":"Will Germán Vargas Lleras win the 2026 Colombian presidential election?","description":"Colombia's presidential elections are scheduled for May 31, 2026, and a second round (if required) on June 21, 2026, in case no candidate secures more than 50% of the valid votes in the first round.\n\nThis market will resolve according to the listed candidate that wins this election. \n\nThis market includes any potential second round. If the result of this election isn't known by December 31, 2026, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["germ","vargas","lleras","win","2026","colombian","presidential","election","lleras win","win the","presidential election","colombia's","elections","scheduled","31","second","round","required","june"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":37160.592,"url":"https://polymarket.com/event/colombia-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"569365","oneDayPriceChange":0,"endDate":"2026-06-21"},{"id":"polymarket-0xc8e9ba9e25f5adcf7e159e62c24ca3bda9a5245a049acb94fdd534e67ed1969e","platform":"polymarket","title":"Will the Virginia redistricting referendum pass?","description":"Pending legal challenges, Virginia is scheduled to vote in a special election on April 21, 2026 over a referendum to amend the state constitution, allowing the Virginia General Assembly to redraw its congressional districts (see: https://www.elections.virginia.gov/election-law/proposed-amendment-for-april-2026-special-election/).\n\nThis market will resolve to “Yes” if this proposed constitutional amendment is approved by a majority of valid votes cast in a statewide referendum by November 3, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nIf the referendum vote is postponed prior to November 3, 2026, 11:59 PM ET, this market will remain open until the referendum vote occurs and resolve based on the results of that vote. If this referendum vote is postponed after November 3, 2026, 11:59 PM ET, or, for any other reason the referendum vote does not take place by that time, this market will resolve to “No”.\n\nIf the referendum vote is definitively cancelled, with no opportunity to be rescheduled, this market will resolve immediately to “No”.\n\nThis market will resolve based on the results of this referendum vote according to a consensus of credible reporting. In case of ambiguity, this market will resolve solely based on the official referendum results reported by the State of Virginia, specifically the Department of Elections (https://www.elections.virginia.gov/).","keywords":["virginia","redistricting","referendum","pass","referendum pass","pending","legal","challenges","scheduled","vote","special","election","april"],"yesPrice":0.84,"noPrice":0.16,"yesAsk":0.84,"noAsk":0.16,"volume24h":36887.844885,"url":"https://polymarket.com/event/will-the-virginia-redistricting-referendum-pass","category":"other","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1450859","oneDayPriceChange":-0.01,"endDate":"2026-04-21"},{"id":"polymarket-0xc53e7b31acb5808dc9d06785c5ada0c2dbee9ca46b3eca2ca18fc2745aa716a5","platform":"polymarket","title":"Will Trump visit Pakistan by April 30?","description":"If U.S. President Donald Trump visits Pakistan by April 30 2026, 11:59 PM ET, this market will resolve to \"Yes\". Otherwise, this market will resolve to \"No\".\n\nFor the purpose of this market, a \"visit\" is defined as Trump physically entering the terrestrial or maritime territory of Pakistan. Whether or not Trump enters the country's airspace during the timeframe of this market will have no bearing on a positive resolution.\n\nThe primary resolution source for this information will be official information from government of the United States of America, official information from Trump or released by his verified social media accounts (e.g. https://twitter.com/POTUS), however, a consensus of credible reporting will also be used.","keywords":["trump","president","potus","administration","gop","republican","visit","pakistan","april","30","u.s.","donald","visits","2026","11","59","resolve","yes"],"yesPrice":0.18,"noPrice":0.82,"yesAsk":0.18,"noAsk":0.82,"volume24h":36866.835097,"url":"https://polymarket.com/event/will-trump-visit-pakistan-by-april-30","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"2008302","oneDayPriceChange":0.045,"endDate":"2026-04-30"},{"id":"polymarket-0xe0c2bd9d549184bc37a80ed0494bfb0b83dc20e4a2ca695e0698062f23d73372","platform":"polymarket","title":"Will xAI have the best AI model at the end of April 2026?","description":"This market will resolve according to the company that owns the model that has the highest arena score based on the Chatbot Arena LLM Leaderboard (https://lmarena.ai/) when the table under the \"Leaderboard\" tab is checked on April 30, 2026, 12:00 PM ET.\n\nResults from the \"Score\" column under the \"Text Arena | Overall\" Leaderboard tab at https://lmarena.ai/leaderboard/text with style control off will be used to resolve this market.\n\nModels will be ranked primarily by their arena score at this market’s check time, with alphabetical order of company names as listed in this market group used as a tiebreaker (e.g., if the two models are tied by arena score, “Google” would be ranked ahead of “xAI”). This market will resolve based on the company that occupies first place under this ranking.\n\nThe resolution source for this market is the Chatbot Arena LLM Leaderboard found at https://lmarena.ai/. If this resolution source is unavailable at check time, this market will remain open until the leaderboard comes back online and will resolve based on the first check after it becomes available. If it becomes permanently unavailable, this market will resolve based on another resolution source.","keywords":["xai","grok","elon musk","ai","best","model","end","april","2026","resolve","according","company","owns","highest","arena","score","based"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":36824.005,"url":"https://polymarket.com/event/which-company-has-the-best-ai-model-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1664041","oneDayPriceChange":0,"endDate":"2026-04-30"},{"id":"polymarket-0xe3e8574f967e628750dff67c641944a84da281ced40ffe7c76e42649e89a6887","platform":"polymarket","title":"Will the San Antonio Spurs win the NBA Western Conference Finals?","description":"This market will resolve to “Yes” if the San Antonio Spurs win the 2025–2026 NBA Western Conference Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2025–26 NBA Western Conference Finals based on the rules of the NBA.\n\nIf the 2025-26 NBA Western Conference Finals winner is not announced by June 30, 2026, this market will resolve to “Other”.\n\nThe resolution source for this market will be information from the NBA.","keywords":["san","antonio","spurs","win","nba","basketball","western","conference","finals","spurs win","win the","resolve","yes","2025","2026","finals.","otherwise","no","becomes"],"yesPrice":0.21,"noPrice":0.79,"yesAsk":0.21,"noAsk":0.79,"volume24h":36680.78554600001,"url":"https://polymarket.com/event/nba-western-conference-champion-933","category":"sports","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"564218","oneDayPriceChange":0.007,"endDate":"2026-06-16"},{"id":"polymarket-0x9eaadf490bf58eb7e2d00fb257711ff462ae99197dc339b2a5cd93a577c7a2e2","platform":"polymarket","title":"Will Flavio Cobolli win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["flavio","cobolli","win","2026","men's","french","open","cobolli win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":36645.85366200001,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1087538","oneDayPriceChange":0.001,"endDate":"2026-06-07"},{"id":"polymarket-0xa6c3848b7861841cc9d93a5c2c1d26b3f44e0298a49889968a627214a2b177ae","platform":"polymarket","title":"Will Manuel Bompard win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["manuel","bompard","win","2027","french","presidential","election","bompard win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":36629.60258100001,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"679048","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0x29283b56d3eec6d1d89fff51793d9d2e01579d2379b1d3e9ebda175d3561e809","platform":"polymarket","title":"Will Phil Murphy win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["phil","murphy","win","2028","democratic","presidential","nomination","murphy win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":36622.10167500001,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"559680","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xbdb17bc42314c7879e6bde4a15136a9a0f16605f6e530462b9dad774d1e63d86","platform":"polymarket","title":"Will Donald Trump attend the next US x Iran diplomatic meeting?","description":"This market will resolve to \"Yes\" if the listed individual attends the next diplomatic meeting between representatives of the United States and Iran by June 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nA diplomatic meeting refers to a deliberate meeting between representatives of the listed countries who are acting in an official capacity and are authorized to engage in negotiation or diplomacy regarding US-Iranian relations on behalf of their governments. Meetings conducted indirectly, for example, through designated mediators, facilitators, or interlocutors acting with the knowledge and authorization of the relevant governments, will qualify.\n\nBrief greetings, chance encounters, or talks otherwise not deliberately aimed at diplomacy or negotiation will not qualify as diplomatic meetings.\n\nThe meeting must be in-person (including indirect in-person meetings) and must be publicly acknowledged by either government or reported by a consensus of credible media. Remote meetings, phone calls, or other meetings where the relevant parties are not present will not count.\n\nAttendance refers to the listed individual being physically present and actively participating in negotiations at the meeting.\n\nIf the next diplomatic meeting between representatives of the United States and Iran takes place over multiple days, attendance at any part of the meeting will qualify.\n\nThe primary resolution source for this market will be official information from the listed individual and the governments of the United States and Iran; however, a consensus of credible reporting will also be used.","keywords":["donald","trump","president","potus","administration","gop","republican","attend","next","iran","nuclear","sanctions","middle east","diplomatic","meeting","donald trump","resolve","yes","listed","individual","attends","between","representatives","united"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":36312.922329000015,"url":"https://polymarket.com/event/who-will-attend-the-next-us-x-iran-diplomatic-meeting","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1986504","oneDayPriceChange":-0.012,"endDate":"2026-06-30"},{"id":"polymarket-0xfbe85201ab2b4acff01cd5a3639039fc813d3448c64db081f70926bd9b9e74e9","platform":"polymarket","title":"Will Abelardo de la Espriella win the 2026 Colombian presidential election?","description":"Colombia's presidential elections are scheduled for May 31, 2026, and a second round (if required) on June 21, 2026, in case no candidate secures more than 50% of the valid votes in the first round.\n\nThis market will resolve according to the listed candidate that wins this election. \n\nThis market includes any potential second round. If the result of this election isn't known by December 31, 2026, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["abelardo","espriella","win","2026","colombian","presidential","election","espriella win","win the","presidential election","colombia's","elections","scheduled","31","second","round","required","june"],"yesPrice":0.26,"noPrice":0.74,"yesAsk":0.26,"noAsk":0.74,"volume24h":36160.43677,"url":"https://polymarket.com/event/colombia-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"569366","oneDayPriceChange":0.06,"endDate":"2026-06-21"},{"id":"polymarket-0xbee2cd40473495f713c69b9dfbce9fc2837fa4011568222c83c83bb773e35053","platform":"polymarket","title":"Starmer out by June 30, 2026?","description":"This market will resolve to “Yes” if Keir Starmer ceases to be the Prime Minister of the United Kingdom for any period of time between September 14, 2025, and June 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nAn announcement of Keir Starmer's resignation/removal before this market's end date will immediately resolve this market to \"Yes\", regardless of when the announced resignation/removal goes into effect.\n\nThe resolution source for this market will be the government of the UK, however a consensus of credible reporting will also suffice.","keywords":["starmer","out","june","30","2026","resolve","yes","keir","ceases","prime","minister","united","kingdom"],"yesPrice":0.35,"noPrice":0.65,"yesAsk":0.35,"noAsk":0.65,"volume24h":36042.18278699999,"url":"https://polymarket.com/event/starmer-out-in-2025","category":"other","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"597967","oneDayPriceChange":-0.01,"endDate":"2026-06-30"},{"id":"polymarket-0xa7cb4135c6d9c36da0e343874dd5b455de739c6d1b9f9f5583dd9320aacf5db2","platform":"polymarket","title":"Will the Fed increase interest rates by 25 bps after the June 2026 meeting?","description":"The FED interest rates are defined in this market by the upper bound of the target federal funds range. The decisions on the target federal funds range are made by the Federal Open Market Committee (FOMC) meetings.\n\nThis market will resolve to the amount of basis points the upper bound of the target federal funds rate is changed by versus the level it was prior to the Federal Reserve's June 2026 meeting.\n\nIf the target federal funds rate is changed to a level not expressed in the displayed options, the change will be rounded up to the nearest 25 and will resolve to the relevant bracket. (e.g. if there's a cut/increase of 12.5 bps it will be considered to be 25 bps)\n\nThe resolution source for this market is the FOMC’s statement after its meeting scheduled for June 16-17, 2026 according to the official calendar: https://www.federalreserve.gov/monetarypolicy/fomccalendars.htm.\n\nThe level and change of the target federal funds rate is also published at the official website of the Federal Reserve at https://www.federalreserve.gov/monetarypolicy/openmarket.htm.\n\nThis market may resolve as soon as the FOMC’s statement for their June meeting with relevant data is issued. If no statement is released by the end date of the next scheduled meeting, this market will resolve to the \"No change\" bracket.","keywords":["fed","federal reserve","fomc","interest rates","increase","interest","rates","25","bps","basis points","after","june","2026","meeting","bps after","after the","defined","upper","bound","target","federal","funds","range.","decisions"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":35871.73885,"url":"https://polymarket.com/event/fed-decision-in-june-825","category":"economics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"906975","oneDayPriceChange":-0.0045,"endDate":"2026-06-17"},{"id":"polymarket-0x31a9899cddf48688f00cb0e651650310443fa3607510553cb5ab58dc915128bd","platform":"polymarket","title":"Will Donald Trump publicly insult someone on April 20, 2026?","description":"This market will resolve to \"Yes\" if Donald Trump makes any public statement in which he insults, mocks, or attacks any non-fictional individual personally or professionally in a clearly negative manner on the specified date (ET). Otherwise, this market will resolve to \"No\". \n\nThis includes calling the individual weak, stupid, disloyal, a failure, using an insulting nickname, using other derogatory language, or using the negative form of a positive trait in a derogatory personal way (e.g., “He/She isn’t smart”). Negative forms used in reference to the individual's professional actions, policies, or decisions (e.g., “He/She isn’t being smart about this policy”) will not count. Policy disagreements stated without disparaging language will not count.\n\nA direct reference will qualify even if the individual is not named, so long as it is reasonably clear from context that they are the subject.\n\nAny written, verbal, or recorded public statement by Trump qualifies.\n\nThe resolution source will be a consensus of credible reporting.","keywords":["donald","trump","president","potus","administration","gop","republican","publicly","insult","someone","april","20","2026","donald trump","resolve","yes","makes","public","statement","which","insults","mocks"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":35724.269056000005,"url":"https://polymarket.com/event/will-trump-publicly-insult-someone-on","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1939288","oneDayPriceChange":0.1075,"endDate":"2026-04-20"},{"id":"polymarket-0xc3602476532b7c05969580330519f2004fd4397402516af91d1023b7d56ea7ca","platform":"polymarket","title":"Will GERB-UDF (GERB-SDS) finish third in the 2026 Bulgarian parliamentary election?","description":"Parliamentary elections are scheduled to be held in Bulgaria on April 19, 2026.\n\nThis market will resolve according to the political party or coalition that wins the third-greatest number of seats in the next Bulgarian National Assembly (Народно събрание, Narodno săbraniе) election.\n\nIf the results are not known definitively by October 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThe named parties or coalitions will be primarily ranked by the number of seats won in the specified election. If two or more parties are tied on seats, ties will be broken by the total number of valid votes received, with higher vote totals ranking higher. If parties remain tied, ties will be broken by alphabetical order of the listed party abbreviations. This market will resolve to the party that occupies the third-highest finishing position after applying this ranking.\n\nThis market's resolution will be based solely on the number of seats won by the named party or coalition in the Bulgarian Parliament. If a named coalition dissolves, this market will resolve based on the seat total of the constituent party within that coalition that held the largest number of seats before the election.\n\nThis market will resolve based on the results of this election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Bulgarian government, specifically the Central Election Commission of Bulgaria (Tsentralna Izbiratelna Komisia) (https://www.cik.bg/).","keywords":["gerb-udf","gerb-sds","finish","third","2026","bulgarian","parliamentary","election","parliamentary election","elections","scheduled","held","bulgaria","april","19","2026.","resolve"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":35458.11462100001,"url":"https://polymarket.com/event/bulgarian-parliamentary-election-3rd-place","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1737000","oneDayPriceChange":-0.293,"endDate":"2026-04-19"},{"id":"polymarket-0x189c38e8bf3733572f401f8d578099f7233baef3d5fcb438b4eeb0b73bacc787","platform":"polymarket","title":"Will no qualifying diplomatic US-Iran meeting occur by June 30, 2026?","description":"This market will resolve according to the country in which the next diplomatic meeting between government representatives of the United States and Iran takes place by June 30, 2026, 11:59 PM ET.\n\nA diplomatic meeting refers to a deliberate meeting between representatives of the listed countries who are acting in an official capacity and are authorized to engage in negotiation or diplomacy regarding US-Iranian relations on behalf of their governments. Meetings conducted indirectly, for example, through designated mediators, facilitators, or interlocutors acting with the knowledge and authorization of the relevant governments, will qualify. \n\nBrief greetings, chance encounters, or talks otherwise not deliberately aimed at diplomacy or negotiation will not count.\n\nThe meeting must be in-person (including indirect meetings) and must be publicly acknowledged by either government or reported by a consensus of credible media. Remote meetings, phone calls, or other meetings where the relevant parties are not present will not count.\n\nIf the next diplomatic meeting between government representatives of the United States and Iran takes place in any country in the Middle East or North Africa other than the listed options, this market will resolve to “Other - Middle East/North Africa”. \n\nIf the next diplomatic meeting between government representatives of the United States and Iran takes place in any country in Europe other than the listed options, this market will resolve to “Other - Europe”.\n\nFor the purposes of this market, additional countries’ regions will be determined based on the US State Department’s regional classifications in the “Countries and Areas List” (https://www.state.gov/countries-and-areas-list). Any country classified as part of “Europe and Eurasia” will be considered to be in Europe. Any country classified as part of “Near East (Middle East and North Africa)” will be considered to be in the Middle East.\n\nIf the next diplomatic meeting between government representatives of the United States and Iran takes place in any unlisted country which is not classified in either of the specified regions, this market will resolve to “Other”.\n\nIf no qualifying meeting takes place by June 30, 2026, 11:59 PM ET, this market will resolve to “No Meeting by June 30”.\n\nIf a qualifying meeting occurs in more than one country, resolution will be based on where the first qualifying diplomatic session takes place.\n\nThe resolution sources for this market will be official information from the governments of the United States and Iran, and a consensus of credible reporting.","keywords":["no","qualifying","diplomatic","us-iran","meeting","occur","june","30","2026","will no","no qualifying","resolve","according","country","which","next","between","government","representatives"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":35365.661875,"url":"https://polymarket.com/event/where-will-the-next-us-iran-diplomatic-meeting-happen-455","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1961522","oneDayPriceChange":0.0015,"endDate":"2026-06-30"},{"id":"polymarket-0x0387d90b06ff7255b904299348e4a819fd9094b6cf8ae0f1135ac561e82fe34a","platform":"polymarket","title":"Will the price of Bitcoin be above $74,000 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["bitcoin","btc","crypto","above","74000","april","21","be above","above 74000","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.93,"noPrice":0.07,"yesAsk":0.93,"noAsk":0.07,"volume24h":35270.314076999995,"url":"https://polymarket.com/event/bitcoin-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1981831","oneDayPriceChange":0.26,"endDate":"2026-04-21"},{"id":"polymarket-0x062918e2e53609c5eecbc396b65d714fe72dfff5e4829f5de83a71391e89c358","platform":"polymarket","title":"Will Real Madrid CF win on 2026-04-21?","description":"In the upcoming game, scheduled for April 21, 2026\nIf Real Madrid CF wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["real","madrid","win","2026-04-21","real madrid","soccer","la liga","champions league","cf win","win on","upcoming","game","scheduled","april","21","2026","wins","resolve"],"yesPrice":0.78,"noPrice":0.22,"yesAsk":0.78,"noAsk":0.22,"volume24h":35183.15204199998,"url":"https://polymarket.com/event/lal-rea-ala-2026-04-21","category":"other","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1915703","oneDayPriceChange":0.02,"endDate":"2026-04-21"},{"id":"polymarket-0x1adf074e048fa613f4ddbc0766088748a48d120a3a713b0183e219032a411ae3","platform":"polymarket","title":"Will 11 Fed rate cuts happen in 2026?","description":"This market will resolve according to the exact amount of cuts of 25 basis points in 2026 by the Fed (including any cuts made during the December meeting).\n\nEmergency rate cuts outside of scheduled FOMC meetings will also count toward the total number of cuts in 2026. This market will remain open until December 31, 2026, 11:59 PM ET, to account for any such emergency actions.\n\nFor example, if the Fed cuts rates by 50 bps after a meeting, it would be considered 2 cuts (of 25 bps each).\n\nThis market will resolve early to \"No\" if the specified number of cuts becomes impossible — i.e., if more cuts have already occurred than the strike in question.\n\nNote that cuts between 1–24 bps (inclusive) will also be considered 1 rate cut.\n\nThe resolution source for this market will be FOMC statements after meetings scheduled in 2026 according to the official calendar: https://www.federalreserve.gov/monetarypolicy/fomccalendars.htm. The level and change of the target federal funds rate is also published at the official website of the Federal Reserve at https://www.federalreserve.gov/monetarypolicy/openmarket.htm.","keywords":["11","fed","federal reserve","fomc","interest rates","rate","cuts","happen","2026","resolve","according","exact","amount","25","basis","points","including"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":35066.20561299996,"url":"https://polymarket.com/event/how-many-fed-rate-cuts-in-2026","category":"economics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"616913","oneDayPriceChange":0,"endDate":"2026-12-31"},{"id":"polymarket-0x3acb42d4a4da859a82ec3c78e6be641489985672ea7f28ae73da7c253af32fa8","platform":"polymarket","title":"Will Claude 5 be released by April 30, 2026?","description":"This market will resolve to \"Yes\" if Anthropic's Claude 5 model is made available to the general public by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No.\"\n\nFor this market to resolve to \"Yes,\" Claude 5 must be launched and publicly accessible, including via open beta or open rolling waitlist signups. A closed beta or any form of private access will not suffice. The release must be clearly defined and publicly announced by Anthropic as being accessible to the general public.\n\nClaude 5 refers to a product explicitly named Claude 5 (e.g. Claude 5.0 would count), or one that is recognized as a successor to Claude 4, similar to the progression from Claude 2 to Claude 3. Products labeled as Claude 4.5 or similar will not count for this market's resolution.\n\nThe primary resolution source for this market will be official information from Anthropic, with additional verification from a consensus of credible reporting.","keywords":["claude","anthropic","ai","llm","5","released","april","30","2026","resolve","yes","anthropic's","model","made","available","general","public"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":34981.417333,"url":"https://polymarket.com/event/claude-5-released-by","category":"other","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1363116","oneDayPriceChange":-0.003,"endDate":"2026-04-30"},{"id":"polymarket-0x38f823a27e34c90c44dcae3701b089d98b7d25f4b6b8e4585dc123cb7f82a68d","platform":"polymarket","title":"Will Ethereum dip to $200 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for ETH/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final Low price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the ETH/USDT Low prices available at https://www.binance.com/en/trade/ETH_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance ETH/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["ethereum","eth","crypto","dip","200","april","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":34730.68700000001,"url":"https://polymarket.com/event/what-price-will-ethereum-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1823808","oneDayPriceChange":0,"endDate":"2026-05-01"},{"id":"polymarket-0x86c474caaaf4e7780346ecd3ac872d8ff1cbcd17c86eff1ec7f8d291e02ebedb","platform":"polymarket","title":"Crystal Palace FC vs. West Ham United FC: Both Teams to Score","description":"In the upcoming Premier League game between Crystal Palace FC and West Ham United FC, scheduled for April 20 at 3:00 PM ET:\n\nThis market will resolve to \"Yes\" if both Crystal Palace FC and West Ham United FC each score at least one goal during the game.\n\nThis market will resolve to \"No\" if either team fails to score (i.e., if one or both teams finish with zero goals).\n\nIf the game is postponed, this market will remain open until the game has been completed. If the game is canceled entirely, with no make-up game, this market will resolve 50–50.\n\nIf the game is started but not completed, this market will resolve according to the official final score published on premierleague.com. This market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["crystal","palace","vs.","west","ham","united","both","teams","score","upcoming","premier","league","game","between","scheduled","april","20"],"yesPrice":0.32,"noPrice":0.69,"yesAsk":0.32,"noAsk":0.69,"volume24h":34689.433443999995,"url":"https://polymarket.com/event/epl-cry-wes-2026-04-20-more-markets","category":"other","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1902625","oneDayPriceChange":-0.26,"endDate":"2026-04-20"},{"id":"polymarket-0x9eb7ac1524fdacb46ceb8758454f0004c7b117eae76e6295852643644bb862c1","platform":"polymarket","title":"Will James Talarico win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["james","talarico","win","2028","presidential","election","talarico win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":34688.67954500001,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"561262","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x7ae064ed7f3c9f4d201ce007b05b3a23f8e824170981c4d301f07301d554f451","platform":"polymarket","title":"Will Crude Oil (CL) hit (HIGH) $175 by end of June?","description":"This market will resolve to \"Yes\" if, on any trading day, the official CME settlement price for the Active Month (front month) of Crude Oil (CL) futures is equal to or above the listed price between market creation and the final trading day of June 2026. Otherwise, the market will resolve to \"No\".\n\nFor CME Crude Oil (CL) futures contracts, the active month is the nearest of the contract months listed. The active month becomes a non-active month effective two business days prior to the spot month expiration. For example; if the spot month expires on a Friday the next listed contract will be considered the Active Month on the Wednesday prior to the spot month expiration.\n\nOnly the Active Month's official settlement price published by CME Group will be considered. Intraday trades, highs, lows, bids, offers, midpoint values, or indicative prices do not count.\n\nNote that the settlement price may differ from the last traded price. CME's methodology to determine the settlement price can vary by commodity and contract.\n\nOnly days on which CME publishes an official settlement price for the Active Month will be included. Days without settlement prices (weekends, holidays, or market closures) are ignored.\n\nThis market will resolve based on the settlement price as it appears on the CME settlement page at the time it is first published for that trading day, regardless of any later corrections or updates.\n\nThe resolution source for this market is the CME Group website — specifically, the daily \"Settlement\" price for the Active Month of Crude Oil (CL) futures.","keywords":["crude","oil","wti","energy","hit","high","175","end","june","cl hit","hit high","resolve","yes","trading","day","official","cme","settlement","active"],"yesPrice":0.07,"noPrice":0.94,"yesAsk":0.07,"noAsk":0.94,"volume24h":34501.048277,"url":"https://polymarket.com/event/cl-hit-jun-2026","category":"climate","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1652691","oneDayPriceChange":-0.01,"endDate":"2026-06-30"},{"id":"polymarket-0x98933c78b5e277b62d91a6c174b412218de000b54c4c67ec8673bf561cec6e81","platform":"polymarket","title":"Will Ruben Gallego win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["ruben","gallego","win","2028","democratic","presidential","nomination","gallego win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":34406.034511000005,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"559693","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xb239fc1e9c6824ff066a409ff3c414581477e398494acb7a95270c7f800033f7","platform":"polymarket","title":"Will WTI Crude Oil (WTI) hit (HIGH) $160 in April?","description":"This market will resolve to \"Yes\" if, at any point during April 2026, any 1-minute candle for the Active Month of WTI Crude Oil futures has a final \"High\" price equal to or above the listed price. Otherwise, this market will resolve to \"No\".\n\nFor WTI futures, the active month refers to the nearest listed contract month. The active month changes at 6:00:00 PM ET at the start of the trading session two business days prior to that contract's last trading day, at which point the next listed contract becomes the active month.\n\nFor WTI Crude Oil (CL) futures, the last trading day is defined as three business days prior to the 25th calendar day of the month preceding the contract's delivery month (or four business days prior if the 25th calendar day is not a business day), consistent with CME contract specifications.\n\nOnly prices achieved during the applicable trading session for the underlying market will be considered. Under the standard schedule, trading is open from 6:00:00 PM ET Sunday through 5:00:00 PM ET Friday, with a daily break from 5:00:00 PM ET to 6:00:00 PM ET, except where modified by holiday or special-session hours as listed on Pyth.\n\nPrices will be used exactly as published by Pyth, without rounding.\n\nIf the Active Month contract does not trade at all during the listed time frame, this market will resolve to \"No\".\n\nIn the event of a contract specification change, feed change, or similar structural modification affecting the underlying market during the listed time frame, this market will resolve based on adjusted prices as displayed on Pyth.\n\nThe resolution source for this market is Pyth — specifically, the Active Month WTI Crude Oil futures \"High\" prices available at https://pythdata.app/explore?search=WTI, with the chart settings configured for 1-minute candles.\n\nHistorical 1-minute candles may be accessed by appending a Unix timestamp (seconds) to the Pyth chart URL using the \"t=\" parameter.\n\nIf the relevant Pyth data is unavailable due to a system outage, data failure, or other technical disruption that prevents verification of the required 1-minute candle data, the official daily high price published for the Active Month WTI Crude Oil (CL) futures contract by CME Group may be used to determine whether the listed price was reached during the applicable trading session.","keywords":["wti","oil","crude","energy","hit","high","160","april","wti hit","hit high","resolve","yes","point","during","2026","1-minute","candle","active"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":34387.16715499999,"url":"https://polymarket.com/event/what-price-will-wti-hit-in-april-2026","category":"climate","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1807965","oneDayPriceChange":-0.0075,"endDate":"2026-04-30"},{"id":"polymarket-0x0f3062f421a43ab9af2f3dc9c3eef48e2aab38a4c9858aca7651947642c4c964","platform":"polymarket","title":"Will the next diplomatic US-Iran meeting be in Pakistan?","description":"This market will resolve according to the country in which the next diplomatic meeting between government representatives of the United States and Iran takes place by June 30, 2026, 11:59 PM ET.\n\nA diplomatic meeting refers to a deliberate meeting between representatives of the listed countries who are acting in an official capacity and are authorized to engage in negotiation or diplomacy regarding US-Iranian relations on behalf of their governments. Meetings conducted indirectly, for example, through designated mediators, facilitators, or interlocutors acting with the knowledge and authorization of the relevant governments, will qualify. \n\nBrief greetings, chance encounters, or talks otherwise not deliberately aimed at diplomacy or negotiation will not count.\n\nThe meeting must be in-person (including indirect meetings) and must be publicly acknowledged by either government or reported by a consensus of credible media. Remote meetings, phone calls, or other meetings where the relevant parties are not present will not count.\n\nIf the next diplomatic meeting between government representatives of the United States and Iran takes place in any country in the Middle East or North Africa other than the listed options, this market will resolve to “Other - Middle East/North Africa”. \n\nIf the next diplomatic meeting between government representatives of the United States and Iran takes place in any country in Europe other than the listed options, this market will resolve to “Other - Europe”.\n\nFor the purposes of this market, additional countries’ regions will be determined based on the US State Department’s regional classifications in the “Countries and Areas List” (https://www.state.gov/countries-and-areas-list). Any country classified as part of “Europe and Eurasia” will be considered to be in Europe. Any country classified as part of “Near East (Middle East and North Africa)” will be considered to be in the Middle East.\n\nIf the next diplomatic meeting between government representatives of the United States and Iran takes place in any unlisted country which is not classified in either of the specified regions, this market will resolve to “Other”.\n\nIf no qualifying meeting takes place by June 30, 2026, 11:59 PM ET, this market will resolve to “No Meeting by June 30”.\n\nIf a qualifying meeting occurs in more than one country, resolution will be based on where the first qualifying diplomatic session takes place.\n\nThe resolution sources for this market will be official information from the governments of the United States and Iran, and a consensus of credible reporting.","keywords":["next","diplomatic","us-iran","meeting","pakistan","resolve","according","country","which","between","government","representatives","united"],"yesPrice":0.96,"noPrice":0.04,"yesAsk":0.96,"noAsk":0.04,"volume24h":34343.72989100001,"url":"https://polymarket.com/event/where-will-the-next-us-iran-diplomatic-meeting-happen-455","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1961536","oneDayPriceChange":0.012,"endDate":"2026-06-30"},{"id":"polymarket-0x13a162838bdbeec57c497201471b93c092b473d782d1ab71f5da413acc057014","platform":"polymarket","title":"Will Elon Musk post 180-199 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","180-199","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.08,"noPrice":0.92,"yesAsk":0.08,"noAsk":0.92,"volume24h":34338.004203000004,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1976995","oneDayPriceChange":0.0275,"endDate":"2026-04-24"},{"id":"polymarket-0x04238573543c97eef6924e541656baf479f4844d6c0b843d721cf43ac4a5f03f","platform":"polymarket","title":"Will Alexander Bublik win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["alexander","bublik","win","2026","men's","french","open","bublik win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":34264.434066,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1087539","oneDayPriceChange":0.001,"endDate":"2026-06-07"},{"id":"polymarket-0x852fcfca1dfa1372b768aa6df2269d20564378bb6fe9c64bba3bc040370c1efd","platform":"polymarket","title":"Will Bayern Munich win the 2025–26 Champions League?","description":"This is a polymarket on whether the listed team will win the 2025–26 UEFA Champions League.\n\nThis market will resolve to \"Yes\" if the listed team is officially crowned the winner of the 2025–26 UEFA Champions League. Otherwise, it will resolve to \"No\".\n\nIf at any point it becomes impossible for the listed team to win the tournament (e.g. they are mathematically eliminated), the market will resolve to \"No\".\n\nIf the 2025–26 UEFA Champions League is canceled or not completed by October 1, 2026, this market will resolve to \"Other\".\n\nThe primary resolution source will be official information from UEFA Champions League (https://www.uefa.com/uefachampionsleague/). A consensus of credible reporting may also be used.","keywords":["bayern","munich","win","2025","26","champions","league","munich win","win the","champions league","soccer","football","europe","uefa","ucl","polymarket","listed","team","league.","resolve","yes","officially","crowned"],"yesPrice":0.34,"noPrice":0.66,"yesAsk":0.34,"noAsk":0.66,"volume24h":34228.554382000024,"url":"https://polymarket.com/event/uefa-champions-league-winner","category":"sports","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"566142","oneDayPriceChange":0,"endDate":"2026-05-31"},{"id":"polymarket-0x3e218c99a1335641b3a5ee6c887521d19b0c28fddd6b99c254a07968e35c0b1b","platform":"polymarket","title":"Will Michelle Obama win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["michelle","obama","win","2028","democratic","presidential","nomination","obama win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":34224.04663200001,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"559667","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xe3e8b373d68c1c839f0075df953135e8c84937d6e0f661db72f9b6b33ac057b7","platform":"polymarket","title":"Will Arthur Fils win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["arthur","fils","win","2026","men's","french","open","fils win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":34171.68442500001,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"1087517","oneDayPriceChange":0.0085,"endDate":"2026-06-07"},{"id":"polymarket-0xd10bc768ede58b53ed400594240b0a0603134a32dab89ec823a18759cbc180ca","platform":"polymarket","title":"Will Rand Paul win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["rand","paul","win","2028","republican","presidential","nomination","paul win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":34133.89331000002,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.969Z","numericId":"562000","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xb1bdbb044eb10d751a7245adb9a9265b60d193cb79107ea3a746f4bd1b2adfba","platform":"polymarket","title":"Will Trump agree to Iranian transit fees in the Strait of Hormuz in April?","description":"This market will resolve to “Yes” if the United States agrees to Iran charging fees on ships transiting the Strait of Hormuz by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nIran charging fees on ships transiting the Strait of Hormuz refers to U.S. acceptance of Iran imposing tolls, transit fees, passage charges, or other mandatory payments on commercial vessels in exchange for transit through the Strait of Hormuz.\n\nThe United States will be considered to have agreed to Iran charging such fees if:\n- Donald Trump or another authorized representative of the Government of the United States publicly announces that the United States has definitively agreed to accept Iran charging such fees on ships transiting the Strait of Hormuz.\n- Iran charging such fees is included as part of a treaty or deal formally established between the United States and Iran, including through signing or other formal means.\n\nAgreement refers to an explicit acceptance, authorization, or consent to the specified action. Only announcements of definitive agreement will qualify. Suggestions, negotiations, expressions of openness, or other non-definitive statements will not qualify.\n\nAny definitive agreement or commitment made before the resolution date will qualify, regardless of when or whether the specified action is implemented.\n\nThe primary resolution source for this market will be official statements from Donald Trump, the U.S. government, and their official representatives; however, a consensus of credible reporting may also be used to verify the details of an announcement or formal agreement.","keywords":["trump","president","potus","administration","gop","republican","agree","iranian","transit","fees","strait","hormuz","april","resolve","yes","united","states","agrees","iran","nuclear","sanctions"],"yesPrice":0.19,"noPrice":0.81,"yesAsk":0.19,"noAsk":0.81,"volume24h":34130.914636999994,"url":"https://polymarket.com/event/what-will-the-us-agree-to","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1929773","oneDayPriceChange":0.04,"endDate":"2026-04-30"},{"id":"polymarket-0xa08bf5e2acca8cf3f85209795cf278128a30869c5a8bfb97851e19fd21d0d21e","platform":"polymarket","title":"Epstein client list released by June 30?","description":"This market will resolve to “Yes” if files which were not previously public and which pertain to the illegal activities of Jeffrey Epstein are made public by June 30, 2026, 11:59 PM ET, and those files contain a list of individuals associated with Epstein in connection with his illegal activities, including but not limited to sex trafficking or related crimes. Otherwise, this market will resolve to “No.”\n\nTo qualify, the files must contain names in a context equivalent to what is commonly referred to as Epstein’s “client list”—that is, a document that explicitly identifies a list or set of individuals as being directly connected to, participating in, facilitating, funding, soliciting, or otherwise being implicated in Jeffrey Epstein’s illegal activities.\n\nA document may qualify even if it does not contain explicit incriminating language on its face, so long as credible reporting or accompanying official context confirms that the released document is an incriminating client list or functionally equivalent roster of individuals tied to Epstein’s illegal activity.\n\nThe following will not qualify:\n\n- Flight logs, passenger manifests, visitor logs, or transportation records which merely show individuals traveling with, meeting with, or visiting Epstein without any explicit or contextual tie to criminal activity.\n\n- Contact books, address lists, social calendars, guest lists, schedules, correspondence logs, or similar documents that include names solely due to social contact, proximity, acquaintance, or logistical interaction with Epstein.\n\n- Any document listing individuals without accompanying language, context, or credible reporting that connects those individuals to Epstein’s illegal activity.\n\nThe primary resolution sources for this market will be the released files themselves and a consensus of credible reporting.","keywords":["epstein","client","list","released","june","30","resolve","yes","files","which","not","previously","public","pertain"],"yesPrice":0.09,"noPrice":0.91,"yesAsk":0.09,"noAsk":0.91,"volume24h":34046.674000000006,"url":"https://polymarket.com/event/epstein-client-list-released-in-2025-372","category":"other","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"996893","oneDayPriceChange":0.0335,"endDate":"2026-06-30"},{"id":"polymarket-0x17e61aa0386ea3155108c8b377e53163022953834d5b1183520eaceda882c2f9","platform":"polymarket","title":"Will the price of Bitcoin be less than $66,000 on April 21?","description":"This market will resolve according to the final \"Close\" price of the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nIf the reported value falls exactly between two brackets, then this market will resolve to the higher range bracket.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.","keywords":["bitcoin","btc","crypto","less","than","66000","april","21","resolve","according","final","close","binance","crypto","exchange","1"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":34009.637054,"url":"https://polymarket.com/event/bitcoin-price-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1981760","oneDayPriceChange":-0.004,"endDate":"2026-04-21"},{"id":"polymarket-0x4d4bceee5f59f75230c6438f69fc913a6da7afa4098ce0734655045c02a730fc","platform":"polymarket","title":"Will Josh Hawley win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["josh","hawley","win","2028","republican","presidential","nomination","hawley win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":33103.02908299999,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"561988","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xe54223c75f0b8675afaccc099f9cf21fb8877a4f3b72c1064f6d284ef8723fbc","platform":"polymarket","title":"Will GERB-UDF (GERB-SDS) finish second in the 2026 Bulgarian parliamentary election?","description":"Parliamentary elections are scheduled to be held in Bulgaria on April 19, 2026.\n\nThis market will resolve according to the political party or coalition that wins the second-greatest number of seats in the next Bulgarian National Assembly (Народно събрание, Narodno săbraniе) election.\n\nIf the results are not known definitively by October 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThe named parties or coalitions will be primarily ranked by the number of seats won in the specified election. If two or more parties are tied on seats, ties will be broken by the total number of valid votes received, with higher vote totals ranking higher. If parties remain tied, ties will be broken by alphabetical order of the listed party abbreviations. This market will resolve to the party that occupies the second-highest finishing position after applying this ranking.\n\nThis market's resolution will be based solely on the number of seats won by the named party or coalition in the Bulgarian Parliament. If a named coalition dissolves, this market will resolve based on the seat total of the constituent party within that coalition that held the largest number of seats before the election.\n\nThis market will resolve based on the results of this election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Bulgarian government, specifically the Central Election Commission of Bulgaria (Tsentralna Izbiratelna Komisia) (https://www.cik.bg/).","keywords":["gerb-udf","gerb-sds","finish","second","2026","bulgarian","parliamentary","election","parliamentary election","elections","scheduled","held","bulgaria","april","19","2026.","resolve"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":33095.31055500001,"url":"https://polymarket.com/event/bulgarian-parliamentary-election-2nd-place","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1736930","oneDayPriceChange":0.324,"endDate":"2026-04-19"},{"id":"polymarket-0x2bde6486e7067f48ee21344d8b5c1af458732536eb4d080932c88c3a7c2d2126","platform":"polymarket","title":"Starmer out by December 31, 2026?","description":"This market will resolve to “Yes” if Keir Starmer ceases to be the Prime Minister of the United Kingdom for any period of time between November 5, 2025, and December 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nAn announcement of Keir Starmer's resignation/removal before this market's end date will immediately resolve this market to \"Yes\", regardless of when the announced resignation/removal goes into effect.\n\nThe resolution source for this market will be the government of the UK, however a consensus of credible reporting will also suffice.","keywords":["starmer","out","december","31","2026","resolve","yes","keir","ceases","prime","minister","united","kingdom"],"yesPrice":0.65,"noPrice":0.35,"yesAsk":0.65,"noAsk":0.35,"volume24h":33033.035438,"url":"https://polymarket.com/event/starmer-out-in-2025","category":"other","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"666655","oneDayPriceChange":0.03,"endDate":"2026-12-31"},{"id":"polymarket-0xcffb94c02ef7a6ffaab9ce5ae8c68c34aa3a470d87d8185d2b68ed6a0b9eec24","platform":"polymarket","title":"Will March be the best month for Bitcoin in 2026?","description":"This market will resolve to the calendar month in 2026 during which Bitcoin has the highest percentage change.\n\nThe “Change” value shown for each monthly candle will be used. A monthly candle is considered finalized once the following month’s candle is published.\n\nThe resolution source is Binance, using the BTC/USDT trading pair:\nhttps://www.binance.com/en/trade/BTC_USDTThis market will resolve to the calendar month in 2026 during which Bitcoin has the highest percentage change.\n\nThe “Change” value shown for each monthly candle will be used. A monthly candle is considered finalized once the following month’s candle is published.\n\nThe resolution source is Binance, using the BTC/USDT trading pair:\nhttps://www.binance.com/en/trade/BTC_USDT\n\nIf two or more months are tied for the highest percentage change, this market will resolve to the earliest month chronologically.\n\nOnly Binance BTC/USDT data will be used. Prices from other exchanges, trading pairs, or data sources will not be considered.\n\nIf it becomes impossible for a given month to have the highest percentage change in 2026, that outcome may resolve to “No” immediately.\n\nIf two or more months are tied for the highest percentage change, this market will resolve to the earliest month chronologically.\n\nOnly Binance BTC/USDT data will be used. Prices from other exchanges, trading pairs, or data sources will not be considered.","keywords":["march","best","month","bitcoin","btc","crypto","2026","resolve","calendar","during","which","highest","percentage","change.","change"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":32812.989089,"url":"https://polymarket.com/event/bitcoin-best-month-in-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1295996","oneDayPriceChange":-0.0005,"endDate":"2027-01-01"},{"id":"polymarket-0xf2fb4784ceb4d41ce23703da426700f710320ec5b711b6e3784bdaac24d94c23","platform":"polymarket","title":"Will Nikola Jokic win the 2025–2026 NBA MVP?","description":"This market will resolve to \"Yes\" if Nikola Jokic is awarded the 2025–26 regular season NBA Most Valuable Player (MVP) Award. Otherwise, this market will resolve to \"No\".\n\nIf the listed player is not announced as a finalist for the 2025–26 NBA MVP award, this market will immediately resolve to \"No\".\n\nThe primary resolution source for this market will be official information from the NBA. However, a consensus of credible reporting may also be used.","keywords":["nikola","jokic","win","2025","2026","nba","basketball","mvp","jokic win","win the","resolve","yes","awarded","26","regular","season","most","valuable"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":32587.929700000004,"url":"https://polymarket.com/event/nba-mvp-694","category":"sports","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"564161","oneDayPriceChange":0.0005,"endDate":"2026-06-10"},{"id":"polymarket-0x0443a503a38b90446c8a3826db5ee1323144197ef2b4ed09bcdf545ac104dfcb","platform":"polymarket","title":"Will Crude Oil (CL) hit (HIGH) $140 by end of June?","description":"This market will resolve to \"Yes\" if, on any trading day, the official CME settlement price for the Active Month (front month) of Crude Oil (CL) futures is equal to or above the listed price between market creation and the final trading day of June 2026. Otherwise, the market will resolve to \"No\".\n\nFor CME Crude Oil (CL) futures contracts, the active month is the nearest of the contract months listed. The active month becomes a non-active month effective two business days prior to the spot month expiration. For example; if the spot month expires on a Friday the next listed contract will be considered the Active Month on the Wednesday prior to the spot month expiration.\n\nOnly the Active Month's official settlement price published by CME Group will be considered. Intraday trades, highs, lows, bids, offers, midpoint values, or indicative prices do not count.\n\nNote that the settlement price may differ from the last traded price. CME's methodology to determine the settlement price can vary by commodity and contract.\n\nOnly days on which CME publishes an official settlement price for the Active Month will be included. Days without settlement prices (weekends, holidays, or market closures) are ignored.\n\nThis market will resolve based on the settlement price as it appears on the CME settlement page at the time it is first published for that trading day, regardless of any later corrections or updates.\n\nThe resolution source for this market is the CME Group website — specifically, the daily \"Settlement\" price for the Active Month of Crude Oil (CL) futures.","keywords":["crude","oil","wti","energy","hit","high","140","end","june","cl hit","hit high","resolve","yes","trading","day","official","cme","settlement","active"],"yesPrice":0.16,"noPrice":0.84,"yesAsk":0.16,"noAsk":0.84,"volume24h":32226.688520000003,"url":"https://polymarket.com/event/cl-hit-jun-2026","category":"climate","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1652690","oneDayPriceChange":-0.035,"endDate":"2026-06-30"},{"id":"polymarket-0x0ed2e5e985631ab71750ad21a40503508a5f7d928032b2d1f8c901013f4e002f","platform":"polymarket","title":"Will South America win the 2026 FIFA World Cup?","description":"This market will resolve to the continent of the country that wins the 2026 FIFA World Cup, currently scheduled for June 11-July 19, 2026.\n\nFor example, if France wins the tournament, the market will resolve to Europe.\n\nIf the 2026 FIFA World Cup is cancelled, postponed after December 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe definitive source of the continent for each country will be World Population Review (https://worldpopulationreview.com/country-rankings/list-of-countries-by-continent).\n\nThe primary resolution sources for this market will be official information from FIFA (https://www.fifa.com/) and the World Population Review; however, a consensus of credible reporting may also be used.","keywords":["south","america","win","2026","fifa","soccer","world cup","world","cup","america win","win the","football","resolve","continent","country","wins","currently","scheduled","june","11-july"],"yesPrice":0.2,"noPrice":0.8,"yesAsk":0.2,"noAsk":0.8,"volume24h":32018.003805999997,"url":"https://polymarket.com/event/which-continent-will-win-the-2026-fifa-world-cup","category":"sports","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"840931","oneDayPriceChange":-0.005},{"id":"polymarket-0x5f8e3b1182b374df1bf77b13af59e9e25182b3a1b936994a1f0176d9db6663f3","platform":"polymarket","title":"Predict.fun FDV above $300M one day after launch?","description":"This market will resolve to \"Yes\" if the Fully Diluted Valuation of Predict.fun's governance token is greater than the value specified in the title 1 day after launch. Otherwise, the market will resolve to \"No.\"\n\nThe token must be actively, publicly transferable and tradable to be considered a launch.\n\nThe FDV will be determined using the total token supply multiplied by the token price.\n\n\"1 day after launch\" is defined as 4:00 PM ET on the calendar day following launch. The resolution source for this market is the most liquid price source available. If Predict.fun (https://predict.fun/) doesn't launch a token by December 31, 2027, 11:59 PM ET, this market will resolve to \"No\".","keywords":["predict.fun","fdv","above","300m","one","day","after","launch","fdv above","above 300m","day after","after launch","resolve","yes","fully","diluted","valuation","predict.fun's","governance","token"],"yesPrice":0.56,"noPrice":0.44,"yesAsk":0.56,"noAsk":0.44,"volume24h":31773.82675,"url":"https://polymarket.com/event/predictfun-fdv-above-one-day-after-launch","category":"other","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1393319","oneDayPriceChange":-0.015,"endDate":"2028-01-01"},{"id":"polymarket-0x43272c02b8407ed3f8d5b04fb4cb132d7a59c5df6ecc423afcf66f1c778d1887","platform":"polymarket","title":"Will Reza Pahlavi enter Iran by June 30?","description":"If Reza Pahlavi visits Iran between market creation and June 30, 2026 11:59 PM ET, this market will resolve to \"Yes\". Otherwise, this market will resolve to \"No\".\n\nFor the purpose of this market, a \"visit\" is defined as Reza Pahlavi physically entering the terrestrial territory of Iran. Whether or not Reza Pahlavi enters Iranian airspace or maritime territory during the timeframe of this market will have no bearing on a positive resolution.\n\nThe primary resolution source for this market will be a consensus of credible reporting.","keywords":["reza","pahlavi","enter","iran","nuclear","sanctions","middle east","june","30","visits","between","creation","2026","11","59","resolve","yes"],"yesPrice":0.06,"noPrice":0.94,"yesAsk":0.06,"noAsk":0.94,"volume24h":31626.786169000003,"url":"https://polymarket.com/event/will-reza-pahlavi-enter-iran-by-june-30","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1090199","oneDayPriceChange":-0.01,"endDate":"2026-06-30"},{"id":"polymarket-0xe9b3689f18821f4417a33d6252f32c143f5f80b1bde8f04a12996189a90eaecd","platform":"polymarket","title":"Will Ethereum reach $2,800 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for ETH/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final High price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the ETH/USDT High prices available at https://www.binance.com/en/trade/ETH_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance ETH/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["ethereum","eth","crypto","reach","2800","april","ethereum reach","reach 2800","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.06,"noPrice":0.94,"yesAsk":0.06,"noAsk":0.94,"volume24h":31545.878366,"url":"https://polymarket.com/event/what-price-will-ethereum-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1823795","oneDayPriceChange":-0.016,"endDate":"2026-05-01"},{"id":"polymarket-0x58b0474e74a03480c439d50e13dd0b75146c3596e5a475f95e70035c90cee4ca","platform":"polymarket","title":"Will Matt Mahan win the California Governor Election in 2026?","description":"This market will resolve to according to the candidate who wins the 2026 California gubernatorial election currently scheduled for November 3, 2026.\n\nIf the results of the election are not confirmed by July 31, 2027, this market will resolve to \"Other\".\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race in this state for the same candidate, this market will resolve based on official certification.","keywords":["matt","mahan","win","california","governor","election","2026","mahan win","win the","governor election","election in","resolve","according","candidate","wins","gubernatorial","currently","scheduled","november"],"yesPrice":0.07,"noPrice":0.93,"yesAsk":0.07,"noAsk":0.93,"volume24h":31543.526318,"url":"https://polymarket.com/event/california-governor-election-2026","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"628957","oneDayPriceChange":-0.01,"endDate":"2026-11-03"},{"id":"polymarket-0x342d748126c6fea4d514a7926f507fb257dad6374ef71ee59ea70508aeb70728","platform":"polymarket","title":"Will the Silicon Data H100 Index (SDH100RT) hit $1.75 (LOW) by April 30, 2026?","description":"This market will resolve to \"Yes\" if, for any day between February 2 and April 30, 2026, the Silicon Data H100 Index (SDH100RT) has a price equal to or below the listed price. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Silicon Data — specifically, the H100 Index chart data available at https://www.silicondata.com/products/silicon-index, which tracks Neocloud rental prices. The daily values shown on the chart will be used for resolution. Daily data will be considered finalized once the following day's data point is published.\n\nThis market will resolve as soon as the price shown on the Silicon Data H100 chart is equal to or below the listed price, or once the value for April 30, 2026 is finalized. If no data for April 30, 2026 has been finalized by May 14, 2026, this market will resolve based on the data available at that time.\n\nRevisions made to previously published data points on the H100 Index chart, before the April 30, 2026 data point has been finalized, will be considered; however, they will not disqualify a previously published data point from resolving this market. Revisions made after the April 30, 2026, data point has been finalized will not be considered.","keywords":["silicon","data","h100","nvidia","nvda","gpu","ai chips","index","sdh100rt","hit","1.75","low","april","30","2026","sdh100rt hit","hit 1.75","resolve","yes","day","between","february","2","equal","below"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":31499.939999999995,"url":"https://polymarket.com/event/what-will-gpu-rental-prices-h100-hit-by-april-30-967","category":"other","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1322978","oneDayPriceChange":0,"endDate":"2026-04-30"},{"id":"polymarket-0xd595eb9b81885ff018738300c79047e3ec89e87294424f57a29a7fa9162bf116","platform":"polymarket","title":"Will Trump acquire Greenland before 2027?","description":"This market will resolve to \"Yes\" if the United States officially announces that Greenland will come under US sovereignty by December 31, 2026, 11:59 PM ET. Otherwise this market will resolve to \"No\".\n\nSovereignty is defined as the transfer of the majority of the territory of Greenland from its current status as an autonomous territory within the Kingdom of Denmark to being under the formal governance or jurisdiction of the United States, either as a state, territory, or other classification within the US system.\n\nAn official announcement made by the United States and Denmark that Greenland will come under US sovereignty will qualify, even if the actual transfer of sovereignty is yet to occur. Only announcements of official agreements or actions (e.g. executive order, signed legislation, etc.) will count - mere posts on Social Media will not.\n\nThe resolution source for this market will be official information from the governments of the US, Greenland, and Denmark, however a consensus of credible reporting confirming that Greenland has come under U.S. sovereignty will also qualify.","keywords":["trump","president","potus","administration","gop","republican","acquire","greenland","before","2027","greenland before","before 2027","resolve","yes","united","states","officially","announces","come","under"],"yesPrice":0.08,"noPrice":0.92,"yesAsk":0.08,"noAsk":0.92,"volume24h":31454.662781000003,"url":"https://polymarket.com/event/will-trump-acquire-greenland-before-2027","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"997488","oneDayPriceChange":0.005,"endDate":"2026-12-31"},{"id":"polymarket-0x214093035e429b91df322bd20c55d9f611f741f67472a63f7623a9afc0cffa57","platform":"polymarket","title":"Will Greg Abbott win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["greg","abbott","win","2028","republican","presidential","nomination","abbott win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":31391.09495700001,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"561983","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xcffcaa1a9c09b26fbc0e1ea1fb5883b2e4d5824022b3b13e14e1202e3f133350","platform":"polymarket","title":"Will 20 ships transit the Strait of Hormuz on any day by April 30?","description":"This market will resolve to “Yes” if IMF Portwatch publishes a daily number of transit calls (“Arrivals of Ships”) for the Strait of Hormuz equal to or above the listed value for any date between market creation and April 30, 2026. Otherwise, this market will resolve to “No”.\n\nThe number of daily transit calls/arrivals includes container, dry bulk, roll-on/roll-off, general cargo, and tanker ships. Ships not reported by IMF Portwatch will not be considered.\n\nThis market will resolve as soon as IMF Portwatch publishes a daily number of transit calls equal to or above the specified level, or once data has been published for the final date in the specified period and no such value has been published. If no data has been published for the final date of the specified period within 14 calendar days (ET) after the end of that period, this market will resolve based on data published up to that point.\n\nRevisions to previously published data points, made within this market’s timeframe, will be considered. However, they will not disqualify a previously published data point from qualifying. Revisions to previously published data points after data is published for April 30, 2026, however, will not be considered.\n\nThe resolution source for this market will be IMF Portwatch, specifically the transit calls data published for the Strait of Hormuz at https://portwatch.imf.org/pages/cb5856222a5b4105adc6ee7e880a1730, both in the chart and through downloadable files.","keywords":["20","ships","transit","strait","hormuz","day","april","30","resolve","yes","imf","portwatch","publishes","daily","number","calls"],"yesPrice":0.75,"noPrice":0.25,"yesAsk":0.75,"noAsk":0.25,"volume24h":31373.884083000004,"url":"https://polymarket.com/event/will-ships-transit-the-strait-of-hormuz-on-any-day-by-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1705151","oneDayPriceChange":0.0905,"endDate":"2026-04-30"},{"id":"polymarket-0x2bf80d93be42dac6c1b03298b5ec329a4b9f87b689c7892d544d1029f3a0caf0","platform":"polymarket","title":"Will Clémentine Autain win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["mentine","autain","win","2027","french","presidential","election","autain win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":31355.345635999995,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"679037","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0x05437866a19243e0ccf94321e21910c7e873bc69e0d4a21e6c3f9e41cd680432","platform":"polymarket","title":"Will Elon Musk post 580+ tweets from April 21 to April 28, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 21 12:00 PM ET to April 28, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","580","tweets","april","21","28","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":31214.14062,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-21-april-28","category":"other","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"2010997","oneDayPriceChange":0.001,"endDate":"2026-04-28"},{"id":"polymarket-0xdde06286a7b9464d344f410ab0b3d2ebc6469904e72c27fd982f65fdbf78768d","platform":"polymarket","title":"Will the Fed decrease interest rates by 25 bps after the June 2026 meeting?","description":"The FED interest rates are defined in this market by the upper bound of the target federal funds range. The decisions on the target federal funds range are made by the Federal Open Market Committee (FOMC) meetings.\n\nThis market will resolve to the amount of basis points the upper bound of the target federal funds rate is changed by versus the level it was prior to the Federal Reserve's June 2026 meeting.\n\nIf the target federal funds rate is changed to a level not expressed in the displayed options, the change will be rounded up to the nearest 25 and will resolve to the relevant bracket. (e.g. if there's a cut/increase of 12.5 bps it will be considered to be 25 bps)\n\nThe resolution source for this market is the FOMC’s statement after its meeting scheduled for June 16-17, 2026 according to the official calendar: https://www.federalreserve.gov/monetarypolicy/fomccalendars.htm.\n\nThe level and change of the target federal funds rate is also published at the official website of the Federal Reserve at https://www.federalreserve.gov/monetarypolicy/openmarket.htm.\n\nThis market may resolve as soon as the FOMC’s statement for their June meeting with relevant data is issued. If no statement is released by the end date of the next scheduled meeting, this market will resolve to the \"No change\" bracket.","keywords":["fed","federal reserve","fomc","interest rates","decrease","interest","rates","25","bps","basis points","after","june","2026","meeting","bps after","after the","defined","upper","bound","target","federal","funds","range.","decisions"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":31189.746064999996,"url":"https://polymarket.com/event/fed-decision-in-june-825","category":"economics","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"906973","oneDayPriceChange":-0.0075,"endDate":"2026-06-17"},{"id":"polymarket-0x23e817f30871533d3bd7da01e68b802c5fccb8f44f053ef4ea5789c8a28563fe","platform":"polymarket","title":"Will Jannik Sinner win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["jannik","sinner","win","2026","men's","french","open","sinner win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.57,"noPrice":0.43,"yesAsk":0.57,"noAsk":0.43,"volume24h":31183.362147000003,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1087513","oneDayPriceChange":0.155,"endDate":"2026-06-07"},{"id":"polymarket-0xd0282264ee769e9a77dc5e168cfe7966841955a4b3555485cfbddc6961198ae0","platform":"polymarket","title":"Will Roy Barreras win the 2026 Colombian presidential election?","description":"Colombia's presidential elections are scheduled for May 31, 2026, and a second round (if required) on June 21, 2026, in case no candidate secures more than 50% of the valid votes in the first round.\n\nThis market will resolve according to the listed candidate that wins this election. \n\nThis market includes any potential second round. If the result of this election isn't known by December 31, 2026, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["roy","barreras","win","2026","colombian","presidential","election","barreras win","win the","presidential election","colombia's","elections","scheduled","31","second","round","required","june"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":31087.782,"url":"https://polymarket.com/event/colombia-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"569370","oneDayPriceChange":0,"endDate":"2026-06-21"},{"id":"polymarket-0x115401967f653200b41852811453cb5aac5052f339af0a63920fb84e6485f316","platform":"polymarket","title":"Will Haas be the 2026 F1 Constructors' Champion?","description":"This market will resolve according to the winner of the Constructors’ Championship for the 2026 F1 season. \n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIn the case of a tie between multiple teams, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Constructors’ champion.\n\nIf at any point it becomes impossible for a listed team to win the 2026 F1 Constructors’ Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No.”\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe resolution source for this market will be information from F1.","keywords":["haas","2026","constructors'","champion","resolve","according","winner","constructors","championship","season.","soon","official"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":31038.21180000001,"url":"https://polymarket.com/event/f1-constructors-champion","category":"other","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"898666","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x226e885e5380a6fd143cf8aec4d4d7ce7feece4625cc2301f450655f377f8847","platform":"polymarket","title":"Will Novak Djokovic win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["novak","djokovic","win","2026","men's","french","open","djokovic win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":30964.79700600001,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1087515","oneDayPriceChange":0.0125,"endDate":"2026-06-07"},{"id":"polymarket-0x4025f79326722dc11741d0fc491fed0a68231492216933a8b4957dcea4eac3d4","platform":"polymarket","title":"Will Manchester City FC win on 2026-04-22?","description":"In the upcoming game, scheduled for April 22, 2026\nIf Manchester City FC wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["manchester","city","win","2026-04-22","manchester city","man city","soccer","premier league","champions league","fc win","win on","upcoming","game","scheduled","april","22","2026","wins","resolve"],"yesPrice":0.85,"noPrice":0.15,"yesAsk":0.85,"noAsk":0.15,"volume24h":30740.285981000008,"url":"https://polymarket.com/event/epl-bur-mac-2026-04-22","category":"other","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1924258","oneDayPriceChange":0.01,"endDate":"2026-04-22"},{"id":"polymarket-0xfd6176f8c9a59105f80e060a77c4099881c5f2d9e0ceab88e55cf978462fab7f","platform":"polymarket","title":"Will Gretchen Whitmer win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["gretchen","whitmer","win","2028","presidential","election","whitmer win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":30628.61223900001,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"561236","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x728ed3e64f1f6b67d9b3dcd545ae574aaf0dfd3b0fb6df433d0c07c253981ec0","platform":"polymarket","title":"Will the St. Louis Cardinals win the 2026 World Series?","description":"This market will resolve according to the team that wins the 2026 MLB World Series. \n\nIf at any point it becomes impossible for a listed team to win the 2026 MLB World Series per the rules of MLB (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2026 MLB season is cancelled, postponed after December 31, 2026 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from MLB (https://www.mlb.com/); however, a consensus of credible reporting may also be used.","keywords":["st.","louis","cardinals","win","2026","world","series","cardinals win","win the","resolve","according","team","wins","mlb","baseball","series.","point"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":30476.038200000003,"url":"https://polymarket.com/event/mlb-world-series-champion-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1235567","oneDayPriceChange":0,"endDate":"2026-10-31"},{"id":"polymarket-0x7279005cdc5f4533b0cf53ce94a6c4fd43039c721ba39a3ad02dddacabd47d93","platform":"polymarket","title":"Will the Chicago White Sox win the 2026 World Series?","description":"This market will resolve according to the team that wins the 2026 MLB World Series. \n\nIf at any point it becomes impossible for a listed team to win the 2026 MLB World Series per the rules of MLB (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2026 MLB season is cancelled, postponed after December 31, 2026 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from MLB (https://www.mlb.com/); however, a consensus of credible reporting may also be used.","keywords":["chicago","white","sox","win","2026","world","series","sox win","win the","resolve","according","team","wins","mlb","baseball","series.","point"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":30458.367131,"url":"https://polymarket.com/event/mlb-world-series-champion-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1235553","oneDayPriceChange":0,"endDate":"2026-10-31"},{"id":"polymarket-0x7382a5e41b0fec7ba5fd4d62191fc1cf4504d3768970c46d4c9185615c416872","platform":"polymarket","title":"Will Greece win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["greece","win","eurovision","2026","greece win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.07,"noPrice":0.93,"yesAsk":0.07,"noAsk":0.93,"volume24h":30456.358418,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"842019","oneDayPriceChange":0.0025,"endDate":"2026-05-16"},{"id":"polymarket-0xa203cc908da0d417590e01f89fb651a335650d6b797da76ac28726d5f8c7610b","platform":"polymarket","title":"Will François Hollande win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["fran","ois","hollande","win","2027","french","presidential","election","hollande win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":30177.675810000008,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"679028","oneDayPriceChange":0.007,"endDate":"2027-04-30"},{"id":"polymarket-0x018b3300ac367451ac9282425942e775f1015bb3c72b8a483153593bdb550b6e","platform":"polymarket","title":"Will Casper Ruud win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["casper","ruud","win","2026","men's","french","open","ruud win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":30166.449215000015,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1087520","oneDayPriceChange":-0.0005,"endDate":"2026-06-07"},{"id":"polymarket-0x1945a8b23e313ed7423b6b6fd556f9ab5578900376b565a61dc480a5f4f35d21","platform":"polymarket","title":"Will Hunter Biden win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["hunter","biden","president","potus","democrat","administration","win","2028","democratic","presidential","nomination","biden win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":30154.629491999993,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"559682","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xa70fc3695a65833b91b45df6db6015096f3e1471b70352ca411b4209010e7633","platform":"polymarket","title":"US-Iran nuclear deal by June 30?","description":"This market will resolve to \"Yes\" if an official agreement over Iranian nuclear research and/or nuclear weapon development, defined as a publicly announced mutual agreement, is reached between the United States and Iran by June 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nIf such an agreement is officially reached before the resolution date, this market will resolve to \"Yes\", regardless of if/when the agreement goes into effect.\n\nAgreements that include the United States and Iran as parties, even if they also involve other countries (e.g., a multilateral deal like the JCPOA), will qualify for resolution.\n\nThe primary resolution source for this market will be an official announcement by the United States and/or the Islamic Republic of Iran, however an overwhelming consensus of credible reporting confirming an agreement has been reached will also qualify.","keywords":["us-iran","nuclear","deal","june","30","resolve","yes","official","agreement","over","iranian","research","weapon"],"yesPrice":0.69,"noPrice":0.31,"yesAsk":0.69,"noAsk":0.31,"volume24h":30064.322884,"url":"https://polymarket.com/event/us-iran-nuclear-deal-by-june-30","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"957019","oneDayPriceChange":0.05,"endDate":"2026-06-30"},{"id":"polymarket-0x09bd898af149ff142f72abd30709dadf4fedafcce3b00ef37fd62a733063d7c9","platform":"polymarket","title":"Will US withdraw from NATO before 2027?","description":"This market will resolve to \"Yes\" if the United States formally initiates a withdrawal from NATO or provides an official notice of denunciation to NATO by December 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nA notice of denunciation refers to the submission of a notice of withdrawal as per Article 13 of the North Atlantic Treaty.\n\nAny action meeting these criteria will qualify for a “Yes” resolution regardless of if its implementation is immediately halted or delayed by judicial or other actions.\n\nThe U.S.'s exit from NATO’s integrated military command structure will not be sufficient to resolve this market to \"Yes\". \n\nThe resolution source will be official information from the US government and NATO, however a consensus of credible reporting may also be used.","keywords":["withdraw","nato","alliance","military","europe","ukraine","before","2027","nato before","before 2027","resolve","yes","united","states","formally","initiates","withdrawal","provides"],"yesPrice":0.13,"noPrice":0.87,"yesAsk":0.13,"noAsk":0.87,"volume24h":30035.50398199999,"url":"https://polymarket.com/event/will-us-withdraw-from-nato-before-2027","category":"geopolitics","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"665480","oneDayPriceChange":0.0125,"endDate":"2026-12-31"},{"id":"polymarket-0xf07ad44ed657dc77dc7b59624a81aeee622cfbc08944eb7923b8ac5aafb64350","platform":"polymarket","title":"Will Elon Musk post 480-499 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","480-499","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":30000,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:45.970Z","numericId":"1977017","oneDayPriceChange":0,"endDate":"2026-04-24"},{"id":"polymarket-0xc031351cea755544a76be09c2e884554c04eeea7fc172fb9de2caac4b92fc854","platform":"polymarket","title":"Will Racing Bulls be the 2026 F1 Constructors' Champion?","description":"This market will resolve according to the winner of the Constructors’ Championship for the 2026 F1 season. \n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIn the case of a tie between multiple teams, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Constructors’ champion.\n\nIf at any point it becomes impossible for a listed team to win the 2026 F1 Constructors’ Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No.”\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe resolution source for this market will be information from F1.","keywords":["racing","bulls","2026","constructors'","champion","resolve","according","winner","constructors","championship","season.","soon","official"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":29802.99419999999,"url":"https://polymarket.com/event/f1-constructors-champion","category":"other","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"898664","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x0b298ab2b2cad3308d486c804985c1ede7ea949bde363f44784a3b2a460be788","platform":"polymarket","title":"Will Élisabeth Borne win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["lisabeth","borne","win","2027","french","presidential","election","borne win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":29384.987129,"url":"https://polymarket.com/event/next-french-presidential-election","category":"crypto","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"679042","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0x97ce964f2fbebaa5724e79cc42cfcd0d69e2ab12a6f97359110c9800423d6e96","platform":"polymarket","title":"Will Elon Musk post 190-214 tweets from April 20 to April 22, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 20 12:00 PM ET to April 22, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","190-214","tweets","april","20","22","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":29341.065058999997,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-20-april-22","category":"other","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"2015058","oneDayPriceChange":0,"endDate":"2026-04-22"},{"id":"polymarket-0xcd050c1af02067e33e03861ff6f67c1c85def8bf4bd196256e6d2b178509533b","platform":"polymarket","title":"Will Carole Delga win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["carole","delga","win","2027","french","presidential","election","delga win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":29067.87322899999,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"679046","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0x890fc3ba40458db0b67560691aa1597344c2a0560d18e80f586a4b35f510b4ce","platform":"polymarket","title":"Will the US acquire part of Greenland in 2026?","description":"This market will resolve to “Yes” if the United States acquires control of any land territory that is part of Greenland by December 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nOnly the transfer of sovereignty, or the acquisition of primary or exclusive jurisdiction or control qualifies.\n\n1. Transfer of Sovereignty: This will qualify if a binding agreement or legal instrument results in a defined area of Greenland coming under the formal sovereignty of the U.S. (e.g., incorporated as a U.S. state, territory, possession, or other U.S. political classification), even if the effective date occurs after the market deadline.\n\n2. Acquisition of Primary or Exclusive Jurisdiction or Control: This will qualify if a binding agreement or legal instrument establishes a defined area in Greenland in which the U.S. has primary or exclusive jurisdiction or control over the territory, such that the ordinary legal authority of Denmark and Greenland do not apply,except by U.S. permission. Such agreements or instruments will qualify even if the effective date occurs after the market deadline. \n\n3. Use of Force: If the U.S. acquires primary or exclusive jurisdiction or control over a defined area of Greenland through force, this will also qualify. \n\nAn announcement will qualify only if it is accompanied by or consists of a binding agreement or legal instrument (e.g., enacted legislation, a signed treaty, the signed text of an agreement, or an executive action implementing such an agreement) that unambiguously creates a transfer of sovereignty, or primary or exclusive jurisdiction or control, even if this transfer or acquisition takes effect after the market deadline. \n\nNon-binding statements, negotiations, proposals, frameworks, or MOUs will not alone qualify. Basing rights, access agreements, SOFA-type arrangements, COFA-type arrangements, commercial concessions, or other permissions to use land (including leases) will not alone qualify. Any qualifying U.S. jurisdiction or control in Greenland that existed at market creation will not count as new qualifying control.\n\nExamples of qualifying events include but are not limited to treaty or piece of legislation that makes any portion of Greenland a U.S. territory or possession, even if the handover date for such territory or possession is later); or, a Guantánamo-style arrangement establishing a defined zone in Greenland under exclusive or primary U.S. jurisdiction and control, where Denmark and Greenland’s ordinary legal authority does not apply except by U.S. permission.\n\nThe primary resolution source for this market will be official information from the governments of the United States, Denmark, and Greenland; however, a consensus of credible reporting may also be used.\n","keywords":["acquire","part","greenland","2026","resolve","yes","united","states","acquires","control","land","territory"],"yesPrice":0.15,"noPrice":0.84,"yesAsk":0.15,"noAsk":0.84,"volume24h":29028.863925999995,"url":"https://polymarket.com/event/will-the-us-acquire-any-part-of-greenland-in-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"1126504","oneDayPriceChange":-0.01,"endDate":"2026-12-31"},{"id":"polymarket-0xdcc0bc262a4a6ecd97adc085215e6bdeb3f06beb7d1c362fac5595aebf2bbe73","platform":"polymarket","title":"Will XRP reach $3.00 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for XRP/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final High price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the XRP/USDT High prices available at https://www.binance.com/en/trade/XRP_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance XRP/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["xrp","ripple","reach","3.00","april","xrp reach","reach 3.00","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":28818.332687000002,"url":"https://polymarket.com/event/what-price-will-xrp-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"1823897","oneDayPriceChange":0,"endDate":"2026-05-01"},{"id":"polymarket-0x0a10ea4f5d42ac33a29d73b8562f4414f5ea2219afd9da74ba950f7aefe7c630","platform":"polymarket","title":"Will Ricardo Belmont win the 2026 Peruvian presidential election?","description":"General elections are scheduled to be held in Peru on April 12, 2026.\n\nThis market will resolve according to the listed candidate who wins the next Peruvian Presidential election. \n\nThis market includes any potential second round. \n\nIf the results are not known definitively by October 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the results of this election, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve solely on the official results as reported by the Peruvian government, specifically the National Office of Electoral Processes (Oficina Nacional de Procesos Electorales, ONPE) (https://www.onpe.gob.pe/elecciones/) and the National Jury of Elections (Jurado Nacional de Elecciones, JNE) (https://portal.jne.gob.pe/portal/) ","keywords":["ricardo","belmont","win","2026","peruvian","presidential","election","belmont win","win the","presidential election","general","elections","scheduled","held","peru","april","12","2026."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":28785.173000000003,"url":"https://polymarket.com/event/peru-presidential-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"947281","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0xaba4bb720c6c1b2e48087f5af4a57fd1e9f05814a936e9f6b1c37f10436a34fc","platform":"polymarket","title":"Will François Asselineau win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["fran","ois","asselineau","win","2027","french","presidential","election","asselineau win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":28763.673465000025,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"679036","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0xf2cb33c6634ee4676b642e728715c68441fb8d8c90f730ba0b5c3cd1f436a4be","platform":"polymarket","title":"Will Joe Kent win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["joe","kent","win","2028","republican","presidential","nomination","kent win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":28657.67747,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"562007","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x61d9486c0f7e14ed98f3b177b6adcb3cd45646c92e8bbfbf209789b86472d4b6","platform":"polymarket","title":"Will Wes Moore win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["wes","moore","win","2028","democratic","presidential","nomination","moore win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":28610.210465999993,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"559656","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xbca3d70ec52a5a441ccc365a3b1b48b9cd0f08dfff4bc5871e2cd92d0d92caa1","platform":"polymarket","title":"Will Ronaldo Caiado win the 2026 Brazilian presidential election?","description":"A presidential election is scheduled to take place in Brazil on October 4, 2026.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nThis market includes any potential second round. If the result of this election isn't known by June 30, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Brazilian government, specifically the Superior Electoral Court (Tribunal Superior Eleitoral, TSE) (e.g., https://dadosabertos.tse.jus.br/).","keywords":["ronaldo","soccer","football","cr7","caiado","win","2026","brazilian","presidential","election","caiado win","win the","presidential election","scheduled","take","place","brazil","october","4","2026.","resolve"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":28550.324850999998,"url":"https://polymarket.com/event/brazil-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"601827","oneDayPriceChange":-0.0005,"endDate":"2026-10-04"},{"id":"polymarket-0xbdd688664b4f3cf7ec4ec011607934fe8ae720c08353fc14a6e9dfbf6bbcf11a","platform":"polymarket","title":"Will the Tampa Bay Lightning win the 2026 NHL Stanley Cup?","description":"This market will resolve to “Yes” if the Tampa Bay Lightning win the 2026 NHL Stanley Cup. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NHL Stanley Cup based off the rules of the NHL.\n\nThe resolution source for this market will be information from the NHL.\n","keywords":["tampa","bay","lightning","bitcoin","btc","lightning network","win","2026","nhl","hockey","stanley","cup","lightning win","win the","resolve","yes","cup.","otherwise","no","becomes","impossible","team"],"yesPrice":0.08,"noPrice":0.92,"yesAsk":0.08,"noAsk":0.92,"volume24h":28501.411687999982,"url":"https://polymarket.com/event/2026-nhl-stanley-cup-champion","category":"sports","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"553830","oneDayPriceChange":-0.0395,"endDate":"2026-06-30"},{"id":"polymarket-0x78ab7490f7151ef44386bea858393993d75d1fa7e41cc5010e2371a9f2697c13","platform":"polymarket","title":"Will AS Monaco FC win on 2026-04-25?","description":"In the upcoming game, scheduled for April 25, 2026\nIf AS Monaco FC wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["monaco","win","2026-04-25","fc win","win on","upcoming","game","scheduled","april","25","2026","wins","resolve"],"yesPrice":0.47,"noPrice":0.53,"yesAsk":0.47,"noAsk":0.53,"volume24h":28441.918546999997,"url":"https://polymarket.com/event/fl1-tou-asm-2026-04-25","category":"other","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"1953323","oneDayPriceChange":0,"endDate":"2026-04-25"},{"id":"polymarket-0x62b71e5e61067bc382f67779e8135ee4512acbab9ddb4a44917dc7d9f93e607a","platform":"polymarket","title":"No change in Bank of Japan’s interest rates after the April 2026 meeting?","description":"The Statement on Monetary Policy for the Bank of Japan's Monetary Policy meeting for April is scheduled to be released on April 28, 2026 (https://www.boj.or.jp/en/mopo/mpmsche_minu/index.htm).\n\nThis market will resolve to the amount of basis points the upper bound of the short-term policy interest rate is changed by versus the level it was prior to the Bank of Japan's April 2026 meeting.\n\nIf the short-term policy interest rate is changed to a level not expressed in the displayed options, the change will be rounded up to the nearest 25 and will resolve to the relevant bracket. (e.g. if there's a cut/increase of 12.5 bps it will be considered to be 25 bps)\n\nThe primary resolution source for this market will be the official website of the Bank of Japan (https://www.boj.or.jp/en/mopo/mpmsche_minu/index.htm), however a consensus of credible reporting may also be used.\n\nThis market may resolve as soon as the Bank of Japan's statement for the specified meeting with relevant data is issued. If no statement is released by the end date of the next scheduled meeting, this market will resolve to the \"No change\" bracket.","keywords":["no","change","bank","japan","japanese","yen","nikkei","jpy","interest","rates","after","april","2026","meeting","no change","bank of japan","boj","rates after","after the","statement","monetary","policy","japan's","scheduled","released","28","https"],"yesPrice":0.96,"noPrice":0.04,"yesAsk":0.96,"noAsk":0.04,"volume24h":28383.252123000002,"url":"https://polymarket.com/event/bank-of-japan-decision-in-april","category":"economics","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"1249980","oneDayPriceChange":0.0535,"endDate":"2026-04-28"},{"id":"polymarket-0x8df5a4256840dee05851250c0490da7593597faff3a7f9a156ccbbda7fec76f8","platform":"polymarket","title":"Will Arsenal win the 2025–26 Champions League?","description":"This is a polymarket on whether the listed team will win the 2025–26 UEFA Champions League.\n\nThis market will resolve to \"Yes\" if the listed team is officially crowned the winner of the 2025–26 UEFA Champions League. Otherwise, it will resolve to \"No\".\n\nIf at any point it becomes impossible for the listed team to win the tournament (e.g. they are mathematically eliminated), the market will resolve to \"No\".\n\nIf the 2025–26 UEFA Champions League is canceled or not completed by October 1, 2026, this market will resolve to \"Other\".\n\nThe primary resolution source will be official information from UEFA Champions League (https://www.uefa.com/uefachampionsleague/). A consensus of credible reporting may also be used.","keywords":["arsenal","soccer","premier league","england","win","2025","26","champions","league","arsenal win","win the","champions league","football","europe","uefa","ucl","polymarket","listed","team","league.","resolve","yes","officially","crowned"],"yesPrice":0.28,"noPrice":0.72,"yesAsk":0.28,"noAsk":0.72,"volume24h":28363.633490999993,"url":"https://polymarket.com/event/uefa-champions-league-winner","category":"sports","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"566140","oneDayPriceChange":0,"endDate":"2026-05-31"},{"id":"polymarket-0x82d8c535c037a779ffbd2eb94704b093a5341350b49ca68128fc1c16a0901e4a","platform":"polymarket","title":"Will the Boston Bruins win the 2026 NHL Stanley Cup?","description":"This market will resolve to “Yes” if the Boston Bruins win the 2026 NHL Stanley Cup. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NHL Stanley Cup based off the rules of the NHL.\n\nThe resolution source for this market will be information from the NHL.\n","keywords":["boston","bruins","win","2026","nhl","hockey","stanley","cup","bruins win","win the","resolve","yes","cup.","otherwise","no","becomes","impossible","team"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":28263.896225,"url":"https://polymarket.com/event/2026-nhl-stanley-cup-champion","category":"sports","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"553850","oneDayPriceChange":-0.0055,"endDate":"2026-06-30"},{"id":"polymarket-0x2c03c41e5032364cb7166e842bdd22913f28aa2c837d8432704aa89c338875c8","platform":"polymarket","title":"Will Pete Buttigieg win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["pete","buttigieg","win","2028","presidential","election","buttigieg win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":28184.606412,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.016Z","numericId":"561232","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x930c1ae0fdb23f71821c92e5dea1e6bd2b30b4d28ff5112a659c9f8b3871a1a5","platform":"polymarket","title":"Will Carlos Alcaraz win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["carlos","alcaraz","win","2026","men's","french","open","alcaraz win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.21,"noPrice":0.79,"yesAsk":0.21,"noAsk":0.79,"volume24h":28150.368794000016,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"1087512","oneDayPriceChange":-0.155,"endDate":"2026-06-07"},{"id":"polymarket-0xd997dc2a212a7d6673375a3b016db1fb214247142f8cde0cbf07f8e6d789877c","platform":"polymarket","title":"Will Vivek Ramaswamy win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["vivek","doge","republican","government efficiency","ramaswamy","win","2028","presidential","nomination","ramaswamy win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":28115.237070999985,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"561981","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x4c608ba88f4b6981f2760e553926d893c558be6064e05b04a94efa00cd880d9d","platform":"polymarket","title":"Will Ethereum reach $3,200 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for ETH/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final High price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the ETH/USDT High prices available at https://www.binance.com/en/trade/ETH_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance ETH/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["ethereum","eth","crypto","reach","3200","april","ethereum reach","reach 3200","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":28049.520075,"url":"https://polymarket.com/event/what-price-will-ethereum-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"1823793","oneDayPriceChange":0,"endDate":"2026-05-01"},{"id":"polymarket-0xd7a0d72b19ca48b06b0029684677f581e32f133c367d7a19c2f1e4ad07066af7","platform":"polymarket","title":"Will Nikki Haley win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["nikki","haley","win","2028","republican","presidential","nomination","haley win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":27941.046955,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"561980","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x6ad63235931f80951a48f2338956dea7bb70c97f99a7bd03f5f501d6e4673842","platform":"polymarket","title":"Will Fabien Roussel win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["fabien","roussel","win","2027","french","presidential","election","roussel win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":27928.89596300001,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"679032","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0x06ea9c02b4c6a2f7f07f78e21411bd367636564edb27c72cd038b556aada1a64","platform":"polymarket","title":"Will Mathilde Panot win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["mathilde","panot","win","2027","french","presidential","election","panot win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":27880.93403999999,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"679049","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0x637a2423461f5b531fef314e1e14982b80819de217e32f4f96653caa8af2c47a","platform":"polymarket","title":"Will Nicolas Dupont-Aignan win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["nicolas","dupont-aignan","win","2027","french","presidential","election","dupont-aignan win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":27878.592323,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"679038","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0x377e7fe65cf198a7fc4fdae3f2136b74729279267858daaf96718b23bc2a5607","platform":"polymarket","title":"Iran leadership change by December 31?","description":"This market will resolve to \"Yes\" if the Supreme Leader of Iran, Mojtaba Khamenei, ceases to be the de facto leader of Iran at any point between market creation and the listed date (ET). Otherwise, this market will resolve to \"No\".\n\nMojtaba Khamenei will be considered to no longer be the de facto leader of Iran if he is removed from power, is detained, or otherwise loses his position or is prevented from acting as the de facto leader of Iran within this market's timeframe.\n\nAn official announcement of Mojtaba Khamenei’s resignation or removal will qualify for a \"Yes\" resolution regardless of when the announced departure goes into effect.\n\nThe primary resolution source for this market will be a consensus of credible reporting.","keywords":["iran","nuclear","sanctions","middle east","leadership","change","december","31","resolve","yes","supreme","leader","mojtaba","khamenei","ceases","facto"],"yesPrice":0.33,"noPrice":0.68,"yesAsk":0.33,"noAsk":0.68,"volume24h":27822.02002699999,"url":"https://polymarket.com/event/iran-leadership-change-by","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"1535973","oneDayPriceChange":0.01,"endDate":"2026-12-31"},{"id":"polymarket-0x752fa61c93f16c4b15e85b0bd438d9c684176b0ea7b319a84c8aca34616e8a8c","platform":"polymarket","title":"Will Bitcoin dip to $55,000 by December 31, 2026?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for Bitcoin (BTC/USDT) between November 24, 2025, 14:00 and December 31, 2026, 23:59 in the ET timezone has a final \"Low\" price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Low\" prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.\n","keywords":["bitcoin","btc","crypto","dip","55000","december","31","2026","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.58,"noPrice":0.42,"yesAsk":0.58,"noAsk":0.42,"volume24h":27774.170376000002,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-before-2027","category":"crypto","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"701501","oneDayPriceChange":-0.015,"endDate":"2027-01-01"},{"id":"polymarket-0x3e7d16b9c3e85bbadea1ed2c108c5ee04a7d1dd9d001293f4cc93381a51e0a53","platform":"polymarket","title":"Will Bitcoin reach $76,000 on April 20?","description":"This market will immediately resolve to \"Yes\" if any Binance 1-minute candle for Bitcoin (BTC/USDT) on the date specified in the title, between 12:00 AM ET and 11:59 PM ET has a final \"High\" price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"High\" prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","reach","76000","april","20","bitcoin reach","reach 76000","immediately","resolve","yes","binance","crypto","exchange","1-minute","candle"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":27588.013200999998,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-on-april-20","category":"crypto","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"2029338","oneDayPriceChange":0,"endDate":"2026-04-21"},{"id":"polymarket-0x336ee35845099e7d11fa2edbe417ef7791507130689f0f71a35ecc7480807404","platform":"polymarket","title":"Will Williams be the 2026 F1 Constructors' Champion?","description":"This market will resolve according to the winner of the Constructors’ Championship for the 2026 F1 season. \n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIn the case of a tie between multiple teams, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Constructors’ champion.\n\nIf at any point it becomes impossible for a listed team to win the 2026 F1 Constructors’ Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No.”\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe resolution source for this market will be information from F1.","keywords":["williams","2026","constructors'","champion","resolve","according","winner","constructors","championship","season.","soon","official"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":27421.122600000002,"url":"https://polymarket.com/event/f1-constructors-champion","category":"other","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"898663","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x3a8209fbd45fef3be23fb3480eb1c961c85f7bdd07d4a3391f5949252156c594","platform":"polymarket","title":"Will François Bayrou win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["fran","ois","bayrou","win","2027","french","presidential","election","bayrou win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":27395.13930200001,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"679041","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0x3e1363efbf76899943f61797d0ffc2de5c47a716e2ec66189f45ab65b28078f9","platform":"polymarket","title":"Iran agrees to unrestricted shipping through Hormuz in April?","description":"This market will resolve to \"Yes\" if Iran publicly agrees to allow unrestricted commercial navigation of the Strait of Hormuz by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nIran allowing unrestricted commercial navigation of the Strait of Hormuz refers to a public agreement by Iran that commercial vessels may transit the Strait of Hormuz without Iranian authorization/permission, payment of fees to Iran, or other Iran-imposed restrictions. A public agreement that all restrictions imposed on commercial vessels transiting the Strait of Hormuz by Iran as part of the US-Iran conflict which began on February 28, 2026, will be definitively lifted, without replacement by new restrictions, will qualify.\n\nA qualifying agreement must clearly indicate that Iran will not impose restrictions on commercial transit through the Strait of Hormuz. General statements about the strait being “open”, de-escalation, security, increased transit in the Strait, or stability in the region, which do not clearly indicate that Iran will allow unrestricted commercial transit through the Strait of Hormuz, will not qualify.\n\nAn official pledge by Iran to allow unrestricted commercial navigation of the Strait of Hormuz will qualify for a “Yes” resolution whether as a unilateral announcement or part of an agreement with the U.S. or Israel.\n\nAny agreement or pledge made before the resolution date of this market will qualify, regardless of if/when the agreement goes into effect.\n\nAn agreement by Iran to allow unrestricted commercial navigation of the Strait of Hormuz as a precondition of a more comprehensive peace process or deal will qualify, even if the agreement is not finalized or part of a formalized peace deal.\n\nThe primary resolution sources for this market will be official information from the government of Iran and a consensus of credible reporting.","keywords":["iran","nuclear","sanctions","middle east","agrees","unrestricted","shipping","through","hormuz","april","resolve","yes","publicly","allow","commercial","navigation","strait","30"],"yesPrice":0.32,"noPrice":0.69,"yesAsk":0.32,"noAsk":0.69,"volume24h":27361.695859999996,"url":"https://polymarket.com/event/iran-agrees-to-unrestricted-shipping-through-hormuz-in-april","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"1983797","oneDayPriceChange":0.045,"endDate":"2026-04-30"},{"id":"polymarket-0x87eb09af421e0c27f7d0dedc48ba07f211b83460f1e375fa4535b59fe9bdd6da","platform":"polymarket","title":"Will Elon Musk post 140-164 tweets from April 18 to April 20, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 18 12:00 PM ET to April 20, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","140-164","tweets","april","18","20","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":27292.545484000002,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-18-april-20","category":"other","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"1999923","oneDayPriceChange":-0.001,"endDate":"2026-04-20"},{"id":"polymarket-0x80e8eac7d3e4af30f94a0b3add97a4076fb54b637d944d4f423434be711c0287","platform":"polymarket","title":"Will the highest temperature in London be 13°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the London City Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the London City Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/gb/london/EGLC.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","london","13","april","20","resolve","range","contains","recorded","city","airport","station","degrees"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":27237.472378999995,"url":"https://polymarket.com/event/highest-temperature-in-london-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"2011051","oneDayPriceChange":0.4795,"endDate":"2026-04-20"},{"id":"polymarket-0x0fb006e0c06caa4db12f7e30ec8c2483d658f83eb57b2ee8eb478e39beca3dfd","platform":"polymarket","title":"Will Ivan Cepeda Castro win the 2026 Colombian presidential election?","description":"Colombia's presidential elections are scheduled for May 31, 2026, and a second round (if required) on June 21, 2026, in case no candidate secures more than 50% of the valid votes in the first round.\n\nThis market will resolve according to the listed candidate that wins this election. \n\nThis market includes any potential second round. If the result of this election isn't known by December 31, 2026, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["ivan","cepeda","castro","win","2026","colombian","presidential","election","castro win","win the","presidential election","colombia's","elections","scheduled","31","second","round","required","june"],"yesPrice":0.34,"noPrice":0.67,"yesAsk":0.34,"noAsk":0.67,"volume24h":27233.454766999996,"url":"https://polymarket.com/event/colombia-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"569368","oneDayPriceChange":0.01,"endDate":"2026-06-21"},{"id":"polymarket-0x79374d6a42bc73c84efa2d7097607b544792b4e9dcc3e06de32f1d4677c4a474","platform":"polymarket","title":"Will Jack Draper win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["jack","draper","win","2026","men's","french","open","draper win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":27073.666560000016,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"1087518","oneDayPriceChange":-0.0025,"endDate":"2026-06-07"},{"id":"polymarket-0x5969cbb46aca5319b19e19a3c6f63de098950b675bf268f30f4d035508da1957","platform":"polymarket","title":"Will Josh Shapiro win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["josh","shapiro","win","2028","presidential","election","shapiro win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":27066.927489,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"561233","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x06a27c2810eaca94b53e7a17f15ad47761399ba445a6b02039b2679da203262d","platform":"polymarket","title":"Will Xavier Bertrand win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["xavier","bertrand","win","2027","french","presidential","election","bertrand win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":27028.812631000004,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"679023","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0x78547b8ae17c8a584116cc36c30ebbdab2591de259d35868958d806f4c3c211d","platform":"polymarket","title":"Will Australia win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["australia","win","eurovision","2026","australia win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.07,"noPrice":0.93,"yesAsk":0.07,"noAsk":0.93,"volume24h":26837.684172999998,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"842005","oneDayPriceChange":0.0055,"endDate":"2026-05-16"},{"id":"polymarket-0xa6c8d7d0d25f27f1b6ecadd74be78256bf7c248d9d7c6fb9bc42d2059cfdca4f","platform":"polymarket","title":"Will Alpine be the 2026 F1 Constructors' Champion?","description":"This market will resolve according to the winner of the Constructors’ Championship for the 2026 F1 season. \n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIn the case of a tie between multiple teams, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Constructors’ champion.\n\nIf at any point it becomes impossible for a listed team to win the 2026 F1 Constructors’ Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No.”\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe resolution source for this market will be information from F1.","keywords":["alpine","2026","constructors'","champion","resolve","according","winner","constructors","championship","season.","soon","official"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":26703.202199999992,"url":"https://polymarket.com/event/f1-constructors-champion","category":"other","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"898668","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x4f02b9cf70e514964fcb9aa2f7873d2b0d1aa0986da096cce7e6687e78da00f3","platform":"polymarket","title":"Will Ivanka Trump win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["ivanka","trump","president","potus","administration","gop","republican","win","2028","presidential","nomination","trump win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":26589.192806000017,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"561998","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x2859bb44f6c8feac18494db286c2a8b55d9e7394a8366bc8c58cfde353e41c90","platform":"polymarket","title":"Will Valérie Pécresse win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["val","rie","cresse","win","2027","french","presidential","election","cresse win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":26497.707386000005,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"679040","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0x57c1e8de9d359a76055fe1be95e46a1e72d0537811dcc2ccf070cdfa73d8ba33","platform":"polymarket","title":"Trump announces end of military operations against Iran by May 31st?","description":"This market will resolve to \"Yes\" if President Trump, the US government, or the military publicly and officially announce that their military operations against Iran, initiated on February 28, 2026, have concluded by the listed date (ET). Otherwise, this market will resolve to “No”.\n\nQualifying statements must clearly indicate that the operation has ended. Informal announcements, statements from unnamed sources or leaks will not qualify. \n\nWritten public statements from Donald Trump (e.g. posts from his personal Truth Social account), will count. Videos posted on his social media accounts will also qualify for a \"Yes\" resolution.\n\nThe primary resolution source for this market will be official statements from the US government and/or its official representatives; however, a consensus of credible reporting may also be used.","keywords":["trump","president","potus","administration","gop","republican","announces","end","military","operations","against","iran","nuclear","sanctions","middle east","31st","resolve","yes","government","publicly","officially","announce","initiated","february"],"yesPrice":0.71,"noPrice":0.29,"yesAsk":0.71,"noAsk":0.29,"volume24h":26217.46230699998,"url":"https://polymarket.com/event/trump-announces-end-of-military-operations-against-iran-by","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"1895140","oneDayPriceChange":-0.005,"endDate":"2026-05-31"},{"id":"polymarket-0xfd431e070263b5f24e43a8fc44532bf41aa008d99cab2330d979913b1c580bd2","platform":"polymarket","title":"Will Yaël Braun-Pivet win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["braun-pivet","win","2027","french","presidential","election","braun-pivet win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":26142.908471999996,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"679043","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0xc12b1659e928a5b6f620df220fba12621c87bba9a226dbed0d6cbe04510a0848","platform":"polymarket","title":"Will Meta have the best AI model at the end of April 2026?","description":"This market will resolve according to the company that owns the model that has the highest arena score based on the Chatbot Arena LLM Leaderboard (https://lmarena.ai/) when the table under the \"Leaderboard\" tab is checked on April 30, 2026, 12:00 PM ET.\n\nResults from the \"Score\" column under the \"Text Arena | Overall\" Leaderboard tab at https://lmarena.ai/leaderboard/text with style control off will be used to resolve this market.\n\nModels will be ranked primarily by their arena score at this market’s check time, with alphabetical order of company names as listed in this market group used as a tiebreaker (e.g., if the two models are tied by arena score, “Google” would be ranked ahead of “xAI”). This market will resolve based on the company that occupies first place under this ranking.\n\nThe resolution source for this market is the Chatbot Arena LLM Leaderboard found at https://lmarena.ai/. If this resolution source is unavailable at check time, this market will remain open until the leaderboard comes back online and will resolve based on the first check after it becomes available. If it becomes permanently unavailable, this market will resolve based on another resolution source.","keywords":["meta","facebook","instagram","best","model","end","april","2026","resolve","according","company","owns","highest","arena","score","based"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":26095.908,"url":"https://polymarket.com/event/which-company-has-the-best-ai-model-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"1664051","oneDayPriceChange":-0.001,"endDate":"2026-04-30"},{"id":"polymarket-0x523f29f4370b912f8434eba7726b7dd2e463f252cd14c2b97a2c7f256f0921a6","platform":"polymarket","title":"Will Audi be the 2026 F1 Constructors' Champion?","description":"This market will resolve according to the winner of the Constructors’ Championship for the 2026 F1 season. \n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIn the case of a tie between multiple teams, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Constructors’ champion.\n\nIf at any point it becomes impossible for a listed team to win the 2026 F1 Constructors’ Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No.”\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe resolution source for this market will be information from F1.","keywords":["audi","2026","constructors'","champion","resolve","according","winner","constructors","championship","season.","soon","official"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":26016.895297000003,"url":"https://polymarket.com/event/f1-constructors-champion","category":"other","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"898667","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0x890a6ef0a6a2a34f682e1d5e2487d8d2f49e3a64cef34f6adca2c4e358b83810","platform":"polymarket","title":"Will Elon Musk post 200-219 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","200-219","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.16,"noPrice":0.84,"yesAsk":0.16,"noAsk":0.84,"volume24h":25967.012624000006,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"1976997","oneDayPriceChange":0.055,"endDate":"2026-04-24"},{"id":"polymarket-0x4d7eeb6b14f64cc6b847a5fea348e78f54a7ebbbf3a8e0df2141c916cc4ee3d3","platform":"polymarket","title":"Will Aston Martin be the 2026 F1 Constructors' Champion?","description":"This market will resolve according to the winner of the Constructors’ Championship for the 2026 F1 season. \n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIn the case of a tie between multiple teams, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Constructors’ champion.\n\nIf at any point it becomes impossible for a listed team to win the 2026 F1 Constructors’ Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No.”\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe resolution source for this market will be information from F1.","keywords":["aston","martin","2026","constructors'","champion","resolve","according","winner","constructors","championship","season.","soon","official"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":25849.8968,"url":"https://polymarket.com/event/f1-constructors-champion","category":"other","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"898665","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0xb295f8b30d32c810f2850f52eeca0a700dfed402f099a9f50e39fcf98e09ab7b","platform":"polymarket","title":"Will Elon Musk post <40 tweets from April 20 to April 22, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 20 12:00 PM ET to April 22, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","40","tweets","april","20","22","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.07,"noPrice":0.93,"yesAsk":0.07,"noAsk":0.93,"volume24h":25687.857941,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-20-april-22","category":"other","lastUpdated":"2026-04-20T19:49:46.017Z","numericId":"2015043","oneDayPriceChange":0.038,"endDate":"2026-04-22"},{"id":"polymarket-0xbac8d3ca6cc7297022850562d9d66669d5e0a112767337f8a5955417f1984b54","platform":"polymarket","title":"Will Olivier Faure win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["olivier","faure","win","2027","french","presidential","election","faure win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":25522.17079499999,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"679033","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0xba08eb1058c8d76931edc7667ae916facd1493fe0e8231aa181e566385c4392b","platform":"polymarket","title":"Will Ana Paula Renault win Big Brother Brasil 26?","description":"This market will resolve to the contestant who wins Big Brother Brasil 26.\n\nIf Big Brother Brasil 26 concludes without a winner being declared, or if Big Brother Brasil 26 has otherwise not concluded by April 30, 2026, 11:59PM ET this market will resolve to \"Other\". In the case of a tie, this market will resolve in favor of the listed contestant whose name comes first in alphabetical order. \n\nThis market will remain open until the conclusion of the season.\n\nThe resolution source for this market will be the official broadcast of the final episode of Big Brother Brasil 26.","keywords":["ana","paula","renault","win","big","brother","brasil","26","renault win","win big","resolve","contestant","wins","26.","concludes","without","winner","declared"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":25468.94132200001,"url":"https://polymarket.com/event/who-will-win-big-brother-brasil-26","category":"other","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"1229035","oneDayPriceChange":0.0445,"endDate":"2026-04-30"},{"id":"polymarket-0x9e564dbdf5c9ebdf0860d1970592a269a0ede28570d66a9ea2c50b6f191298d3","platform":"polymarket","title":"Israel x Iran permanent peace deal by April 22, 2026?","description":"This market will resolve to “Yes” if Israel and Iran agree to a permanent peace deal by the specified date, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nA permanent peace deal refers to any agreement which explicitly indicates that military hostilities between Israel and Iran have ended or will permanently cease, or uses equivalent language clearly signaling a lasting end to military hostilities between Israel and Iran. Agreements that are explicitly temporary or which do not include a definitive agreement to end military hostilities between Israel and Iran on a lasting basis (e.g. a temporary extension of a previously announced ceasefire agreement), will not qualify.\n\nA qualifying agreement will be considered to have been established if either of the following conditions are met:\n\n- Israel and Iran each sign or formally adopt a written agreement (e.g. a treaty or multi-point agreement) which meets the above criteria.\n\n- Both Israel and Iran provide clear public confirmation that a qualifying agreement has been definitively established. Negotiations, statements of progress, or other statements which do not constitute a definitive announcement that a qualifying agreement has been reached will not count.\n\nThe inclusion of Israel and Iran in a qualifying peace deal between multiple parties will qualify.\n\nThe primary resolution source for this market will be official information from the governments of Israel and Iran; however, a consensus of credible reporting may also be used.","keywords":["israel","gaza","hamas","middle east","iran","nuclear","sanctions","permanent","peace","deal","april","22","2026","peace deal","ukraine","russia","peace agreement","ceasefire","resolve","yes","agree","specified","date","11","59","et."],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":25314.523598,"url":"https://polymarket.com/event/israel-x-iran-permanent-peace-deal-by","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"2002562","oneDayPriceChange":0.02,"endDate":"2026-05-31"},{"id":"polymarket-0xbc08327dd1ef7486e5f8bb3e662b5d484518ae891a39b6893cbb02f3119ad018","platform":"polymarket","title":"Will Carlos Roberto Massa Júnior finish in second place in the first round of the 2026 Brazilian presidential election?","description":"A presidential election is scheduled to take place in Brazil on October 4, 2026.\n\nThis market will resolve according to the listed candidate who receives the second-most valid votes in the first round of this election.\n\nThe named candidates will be primarily ranked by the number of valid votes received in the specified election. If two or more candidates are tied on valid votes, ties will be broken by alphabetical order of the candidates' last names. This market will resolve to the candidate that occupies the second-highest finishing position after applying this ranking.\n\nIf the result of this election isn't known definitively by June 30, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Brazilian government, specifically the Superior Electoral Court (Tribunal Superior Eleitoral, TSE) (e.g., https://dadosabertos.tse.jus.br/).","keywords":["carlos","roberto","massa","nior","finish","second","place","first","round","2026","brazilian","presidential","election","presidential election","scheduled","take","brazil","october","4","2026.","resolve","according"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":25271.131857,"url":"https://polymarket.com/event/brazil-presidential-election-first-round-2nd-place","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"1365859","oneDayPriceChange":0.0045,"endDate":"2026-10-04"},{"id":"polymarket-0x4273517fc8141d57ad1528ede46efdceebdb6a4da746d5de5bad216564209a1e","platform":"polymarket","title":"Will Tucker Carlson win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["tucker","carlson","win","2028","republican","presidential","nomination","carlson win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":24958.828341,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"561996","oneDayPriceChange":-0.002,"endDate":"2028-11-07"},{"id":"polymarket-0x0dbe074d55e160df51580167b3e45a1363006358bef77c938c59ab59972bd98a","platform":"polymarket","title":"Will FC Midtjylland vs. Aarhus GF end in a draw?","description":"In the upcoming game, scheduled for April 20, 2026\nIf the game ends in a draw, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve to \"Yes\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["midtjylland","vs.","aarhus","end","draw","upcoming","game","scheduled","april","20","2026","ends","resolve"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":24869.419222,"url":"https://polymarket.com/event/den-mid-agf-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"1694911","oneDayPriceChange":-0.2795,"endDate":"2026-04-20"},{"id":"polymarket-0x2dba5d6bcf0ad364a444985f07286ebf2dc5bc0ee7989ef1227d14c245e301fb","platform":"polymarket","title":"Will Ben Shelton win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["ben","shelton","win","2026","men's","french","open","shelton win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":24851.426895,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"1087524","oneDayPriceChange":-0.0005,"endDate":"2026-06-07"},{"id":"polymarket-0x739e756119534672538d8df821a5b3321e2c802d80afff0c5790126be9b41281","platform":"polymarket","title":"Will Alexander Zverev win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["alexander","zverev","win","2026","men's","french","open","zverev win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.05,"noPrice":0.95,"yesAsk":0.05,"noAsk":0.95,"volume24h":24820.9659,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"1087514","oneDayPriceChange":0.0085,"endDate":"2026-06-07"},{"id":"polymarket-0x32903694997a5c09afee30904970f9fab2a5fb4ec45f572f194341185574f1a4","platform":"polymarket","title":"Will Thomas Massie win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["thomas","massie","win","2028","presidential","election","massie win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":24777.946864,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"561260","oneDayPriceChange":0.001,"endDate":"2028-11-07"},{"id":"polymarket-0x101d084cd035070abde58d8a3113b78e11ba68028b0d9e7e38ea7d780797aecc","platform":"polymarket","title":"Will Camilo Santana win the 2026 Brazilian presidential election?","description":"A presidential election is scheduled to take place in Brazil on October 4, 2026.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nThis market includes any potential second round. If the result of this election isn't known by June 30, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Brazilian government, specifically the Superior Electoral Court (Tribunal Superior Eleitoral, TSE) (e.g., https://dadosabertos.tse.jus.br/).","keywords":["camilo","santana","win","2026","brazilian","presidential","election","santana win","win the","presidential election","scheduled","take","place","brazil","october","4","2026.","resolve"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":24772.631425999996,"url":"https://polymarket.com/event/brazil-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"601829","oneDayPriceChange":-0.002,"endDate":"2026-10-04"},{"id":"polymarket-0x8b369e10358094a99ffe7f85a81a8e8ca68c611eee0fe63a2efa790ad045bcd6","platform":"polymarket","title":"Will Donald Trump announce that the United States blockade of the Strait of Hormuz has been lifted by May 31, 2026?","description":"On April 12, 2026, President Donald Trump announced that the United States will blockade the Strait of Hormuz. You can read more about that here: https://www.nbcnews.com/world/iran/live-blog/live-updates-us-iran-fail-reach-deal-peace-talks-day-negotiations-rcna315918.\n\nThis market will resolve to \"Yes\" if President Trump, the US government, or the US military publicly and officially announces the end of the United States blockade of the Strait of Hormuz by the specified date, 11:59 PM ET. Otherwise, this market will resolve to \"No.\"\n\nQualifying statements must clearly and explicitly indicate that the United States has lifted, ended, or will lift or end its blockade of the Strait of Hormuz on a specified date or use equivalently definitive language unambiguously signaling that such blockade has ceased or is set to cease on a specified date (e.g., statements unambiguously indicating that US naval activity in the relevant area has ceased will qualify). \n\nStatements that merely describe actions inconsistent with the blockade (e.g., \"Iran resumed shipping through the Strait of Hormuz\") without explicitly indicating the blockade as lifted will not alone suffice.\n\nInformal announcements, statements from unnamed sources, or leaks do not qualify.\n\nWritten public statements from Donald Trump (e.g., posts from his personal Truth Social account) will qualify. Videos posted on his social media accounts will also qualify for a \"Yes\" resolution.\n\nThe primary resolution source for this market will be official statements from the US government and/or its official representatives; however, a consensus of credible reporting may also be used.\n\nNote: this market will resolve solely based on whether a qualifying announcement is made within the specified timeframe. Whether the blockade is effectively enforced or whether maritime traffic resumes absent a qualifying announcement will not be considered.","keywords":["donald","trump","president","potus","administration","gop","republican","announce","united","states","blockade","strait","hormuz","lifted","31","2026","donald trump","april","12","announced","hormuz.","you","read","more","about"],"yesPrice":0.82,"noPrice":0.18,"yesAsk":0.82,"noAsk":0.18,"volume24h":24772.168764999995,"url":"https://polymarket.com/event/trump-announces-us-blockade-of-hormuz-lifted-by","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"1972137","oneDayPriceChange":0.02,"endDate":"2026-05-31"},{"id":"polymarket-0x1779552bade1ad85d35b2e5128136ea04602f26e2b67b7e1b6f9ec46ea8811d3","platform":"polymarket","title":"Will Clémence Guetté win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["mence","guett","win","2027","french","presidential","election","guett win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":24737.552135999995,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"679053","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0x65433eb79931f043859bec0235bf53ab04ae80d42302b92a4714877ae9776324","platform":"polymarket","title":"Will the price of Ethereum be above $1,900 on April 22?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for ETH/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the ETH/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/ETH_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance ETH/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["ethereum","eth","crypto","above","1900","april","22","be above","above 1900","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":24729.809,"url":"https://polymarket.com/event/ethereum-above-on-april-22","category":"crypto","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"1992414","oneDayPriceChange":0.007,"endDate":"2026-04-22"},{"id":"polymarket-0x1e2f7fc724af0b4c3a074a131749910a5352fca693e3ab6d693ae8e16ed7856e","platform":"polymarket","title":"Will Christopher Waller be confirmed as Fed Chair?","description":"This market will resolve according to the next individual formally confirmed as Chair of the Federal Reserve.\n\nFormal confirmation as Chair of the Federal Reserve requires the Senate to confirm a nominee as Chair of the Federal Reserve. Recess appointments without Senate confirmation will not count. Senate confirmation of a listed individual as a member of the Federal Reserve Board of Governors will not alone qualify.\n\nIf no Senate confirmation for the position of Chair of the Federal Reserve has occurred by December 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThe primary resolution source for this market is official information from the U.S. Senate; however, a consensus of credible reporting may also be used.","keywords":["christopher","waller","confirmed","fed","federal reserve","fomc","interest rates","chair","resolve","according","next","individual","formally","federal","reserve.","formal"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":24714.395166,"url":"https://polymarket.com/event/who-will-be-confirmed-as-fed-chair","category":"economics","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"1500757","oneDayPriceChange":-0.0005,"endDate":"2026-10-31"},{"id":"polymarket-0x26eb9949eebf6ba37e8c3c97fd2b2dd4a88be9312bc02c82a765c29596a5a180","platform":"polymarket","title":"Will We Continue the Change – Democratic Bulgaria (PP–DB) finish third in the 2026 Bulgarian parliamentary election?","description":"Parliamentary elections are scheduled to be held in Bulgaria on April 19, 2026.\n\nThis market will resolve according to the political party or coalition that wins the third-greatest number of seats in the next Bulgarian National Assembly (Народно събрание, Narodno săbraniе) election.\n\nIf the results are not known definitively by October 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThe named parties or coalitions will be primarily ranked by the number of seats won in the specified election. If two or more parties are tied on seats, ties will be broken by the total number of valid votes received, with higher vote totals ranking higher. If parties remain tied, ties will be broken by alphabetical order of the listed party abbreviations. This market will resolve to the party that occupies the third-highest finishing position after applying this ranking.\n\nThis market's resolution will be based solely on the number of seats won by the named party or coalition in the Bulgarian Parliament. If a named coalition dissolves, this market will resolve based on the seat total of the constituent party within that coalition that held the largest number of seats before the election.\n\nThis market will resolve based on the results of this election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Bulgarian government, specifically the Central Election Commission of Bulgaria (Tsentralna Izbiratelna Komisia) (https://www.cik.bg/).","keywords":["continue","change","democratic","bulgaria","finish","third","2026","bulgarian","parliamentary","election","parliamentary election","elections","scheduled","held","april","19","2026.","resolve","according"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":24540.075500999996,"url":"https://polymarket.com/event/bulgarian-parliamentary-election-3rd-place","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"1737001","oneDayPriceChange":0.2685,"endDate":"2026-04-19"},{"id":"polymarket-0x0b4fdc620f5aeafbfa8603a7fe9f3dd2dbae70e73aa157c8c94275676043ce06","platform":"polymarket","title":"Will Laurent Wauquiez win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["laurent","wauquiez","win","2027","french","presidential","election","wauquiez win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":24529.561302999988,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"679024","oneDayPriceChange":0,"endDate":"2027-04-30"},{"id":"polymarket-0xb3d00f908d0bb0320cfb28cfb64904d9d10fb4d3d174baf8a2c9583b6eb66cfb","platform":"polymarket","title":"Will Jerome Powell be confirmed as Fed Chair?","description":"This market will resolve according to the next individual formally confirmed as Chair of the Federal Reserve.\n\nFormal confirmation as Chair of the Federal Reserve requires the Senate to confirm a nominee as Chair of the Federal Reserve. Recess appointments without Senate confirmation will not count. Senate confirmation of a listed individual as a member of the Federal Reserve Board of Governors will not alone qualify.\n\nIf no Senate confirmation for the position of Chair of the Federal Reserve has occurred by December 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThe primary resolution source for this market is official information from the U.S. Senate; however, a consensus of credible reporting may also be used.","keywords":["jerome","powell","fed","federal reserve","fomc","confirmed","interest rates","chair","jerome powell","resolve","according","next","individual","formally","federal","reserve.","formal"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":24495.794816,"url":"https://polymarket.com/event/who-will-be-confirmed-as-fed-chair","category":"economics","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"1500766","oneDayPriceChange":-0.0025,"endDate":"2026-10-31"},{"id":"polymarket-0x993f02a41b7271adc5a54d078766c10a52254c6753f868095e2ee7f158e111ec","platform":"polymarket","title":"Will Bitcoin dip to $73,000 on April 20?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for Bitcoin (BTC/USDT) on the date specified in the title, between 12:00 AM ET and 11:59 PM ET has a final \"Low\" price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Low\" prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","dip","73000","april","20","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":24290.62473,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-on-april-20","category":"crypto","lastUpdated":"2026-04-20T19:49:46.018Z","numericId":"2029351","oneDayPriceChange":0,"endDate":"2026-04-21"},{"id":"polymarket-0xe12f3636e12dd4d423a4dcaafec802726a6d853980ec23f61798b0c656fb46fb","platform":"polymarket","title":"Israel x Iran permanent peace deal by April 30, 2026?","description":"This market will resolve to “Yes” if Israel and Iran agree to a permanent peace deal by the specified date, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nA permanent peace deal refers to any agreement which explicitly indicates that military hostilities between Israel and Iran have ended or will permanently cease, or uses equivalent language clearly signaling a lasting end to military hostilities between Israel and Iran. Agreements that are explicitly temporary or which do not include a definitive agreement to end military hostilities between Israel and Iran on a lasting basis (e.g. a temporary extension of a previously announced ceasefire agreement), will not qualify.\n\nA qualifying agreement will be considered to have been established if either of the following conditions are met:\n\n- Israel and Iran each sign or formally adopt a written agreement (e.g. a treaty or multi-point agreement) which meets the above criteria.\n\n- Both Israel and Iran provide clear public confirmation that a qualifying agreement has been definitively established. Negotiations, statements of progress, or other statements which do not constitute a definitive announcement that a qualifying agreement has been reached will not count.\n\nThe inclusion of Israel and Iran in a qualifying peace deal between multiple parties will qualify.\n\nThe primary resolution source for this market will be official information from the governments of Israel and Iran; however, a consensus of credible reporting may also be used.","keywords":["israel","gaza","hamas","middle east","iran","nuclear","sanctions","permanent","peace","deal","april","30","2026","peace deal","ukraine","russia","peace agreement","ceasefire","resolve","yes","agree","specified","date","11","59","et."],"yesPrice":0.05,"noPrice":0.95,"yesAsk":0.05,"noAsk":0.95,"volume24h":24204.806796,"url":"https://polymarket.com/event/israel-x-iran-permanent-peace-deal-by","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"2002563","oneDayPriceChange":0.015,"endDate":"2026-05-31"},{"id":"polymarket-0xcd215b8330a35098a1a3f6c46b6492347edb5e74c1e0a95ac4d3d54aece6c262","platform":"polymarket","title":"Will Trump visit China by May 31?","description":"If U.S. President Donald Trump visits China by May 31, 2026, 11:59 PM ET, this market will resolve to \"Yes\". Otherwise, this market will resolve to \"No\".\n\nFor the purpose of this market, a \"visit\" is defined as Trump physically entering the terrestrial or maritime territory of the listed country. Whether or not Trump enters the country's airspace during the timeframe of this market will have no bearing on a positive resolution.\n\nThe primary resolution source for this information will be official information from government of the United States of America, official information from Trump or released by his verified social media accounts (e.g. https://twitter.com/POTUS), however, a consensus of credible reporting will also be used.","keywords":["trump","president","potus","administration","gop","republican","visit","china","chinese","prc","beijing","xi","31","u.s.","donald","visits","2026","11","59","resolve","yes"],"yesPrice":0.83,"noPrice":0.17,"yesAsk":0.83,"noAsk":0.17,"volume24h":24163.883084000005,"url":"https://polymarket.com/event/will-trump-visit-china-by","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"1611527","oneDayPriceChange":-0.01,"endDate":"2026-03-31"},{"id":"polymarket-0x0d082a85f48a5226b1205acdb6e95ead2fe373acabcf6c471f5895f86f42a276","platform":"polymarket","title":"Will the Minnesota Wild win the 2026 NHL Stanley Cup?","description":"This market will resolve to “Yes” if the Minnesota Wild win the 2026 NHL Stanley Cup. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NHL Stanley Cup based off the rules of the NHL.\n\nThe resolution source for this market will be information from the NHL.\n","keywords":["minnesota","wild","win","2026","nhl","hockey","stanley","cup","wild win","win the","resolve","yes","cup.","otherwise","no","becomes","impossible","team"],"yesPrice":0.06,"noPrice":0.94,"yesAsk":0.06,"noAsk":0.94,"volume24h":24129.864776999995,"url":"https://polymarket.com/event/2026-nhl-stanley-cup-champion","category":"sports","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"553838","oneDayPriceChange":0.0045,"endDate":"2026-06-30"},{"id":"polymarket-0x24bff5f42b508fb6ac2df89195d9835b89b828bd4e3513f7f07ef30814233547","platform":"polymarket","title":"USD.AI FDV above $300M one day after launch?","description":"This market will resolve to \"Yes\" if the Fully Diluted Valuation of USD.AI's token is greater than the value specified in the title 1 day after launch. Otherwise, the market will resolve to \"No.\"\n\nThe token must be actively, publicly transferable and tradable to be considered a launch.\n\nThe FDV will be determined using the total token supply multiplied by the token price.\n\n\"1 day after launch\" is defined as 4:00 PM ET on the calendar day following launch. The resolution source for this market is the most liquid price source available. If USD.AI (https://usd.ai/) doesn't launch a token by December 31, 2026, 11:59 PM ET, this market will resolve to \"No\".","keywords":["usd.ai","fdv","above","300m","one","day","after","launch","fdv above","above 300m","day after","after launch","resolve","yes","fully","diluted","valuation","usd.ai's","token","greater"],"yesPrice":0.59,"noPrice":0.41,"yesAsk":0.59,"noAsk":0.41,"volume24h":23905.80027,"url":"https://polymarket.com/event/usdai-fdv-above-one-day-after-launch","category":"technology","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"690622","oneDayPriceChange":0.0205,"endDate":"2027-01-01"},{"id":"polymarket-0x44887f53abbfe7531b1384420b185a5f10ee42a4e6c9441d5883abd4f3c1e5ef","platform":"polymarket","title":"Will the Dallas Stars win the 2026 NHL Stanley Cup?","description":"This market will resolve to “Yes” if the Dallas Stars win the 2026 NHL Stanley Cup. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NHL Stanley Cup based off the rules of the NHL.\n\nThe resolution source for this market will be information from the NHL.\n","keywords":["dallas","stars","win","2026","nhl","hockey","stanley","cup","stars win","win the","resolve","yes","cup.","otherwise","no","becomes","impossible","team"],"yesPrice":0.05,"noPrice":0.95,"yesAsk":0.05,"noAsk":0.95,"volume24h":23864.499023999997,"url":"https://polymarket.com/event/2026-nhl-stanley-cup-champion","category":"sports","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"553827","oneDayPriceChange":0.0135,"endDate":"2026-06-30"},{"id":"polymarket-0x22702683aa55f01311f24118f64616c1ba6224208f45acbb8942f867143ebf02","platform":"polymarket","title":"Will Ethereum dip to $2,000 on April 20?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for Ethereum (ETH/USDT) on the date specified in the title, between 12:00 AM ET and 11:59 PM ET has a final \"Low\" price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the ETH/USDT \"Low\" prices available at https://www.binance.com/en/trade/ETH_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance ETH/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["ethereum","eth","crypto","dip","2000","april","20","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":23826.543157,"url":"https://polymarket.com/event/what-price-will-ethereum-hit-on-april-20","category":"crypto","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"2029429","oneDayPriceChange":0,"endDate":"2026-04-21"},{"id":"polymarket-0x2721fcd54f669a3a30aa6dd587122070e5c1221f7fb8131dfbf4b4f34864fd1a","platform":"polymarket","title":"Will Elon Musk post 400-419 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","400-419","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":23796.302294,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"1977012","oneDayPriceChange":-0.004,"endDate":"2026-04-24"},{"id":"polymarket-0x5a55081b398385449bcb7f21d90e78faa84628f4b66137089c32082926fcbff6","platform":"polymarket","title":"Will the price of Ethereum be less than $1,900 on April 21?","description":"This market will resolve according to the final \"Close\" price of the Binance 1 minute candle for ETH/USDT 12:00 in the ET timezone (noon) on the date specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the ETH/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/ETH_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nIf the reported value falls exactly between two brackets, then this market will resolve to the higher range bracket.\n\nPlease note that this market is about the price according to Binance ETH/USDT, not according to other exchanges or trading pairs.","keywords":["ethereum","eth","crypto","less","than","1900","april","21","resolve","according","final","close","binance","crypto","exchange","1"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":23758.476331999995,"url":"https://polymarket.com/event/ethereum-price-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"1981808","oneDayPriceChange":-0.009,"endDate":"2026-04-21"},{"id":"polymarket-0xa0d2521a751e1c1323af9e7c054ee2adda96adb0979bdffd7a324bb39bb64e3d","platform":"polymarket","title":"Will ByteDance have the best AI model at the end of April 2026?","description":"This market will resolve according to the company that owns the model that has the highest arena score based on the Chatbot Arena LLM Leaderboard (https://lmarena.ai/) when the table under the \"Leaderboard\" tab is checked on April 30, 2026, 12:00 PM ET.\n\nResults from the \"Score\" column under the \"Text Arena | Overall\" Leaderboard tab at https://lmarena.ai/leaderboard/text with style control off will be used to resolve this market.\n\nModels will be ranked primarily by their arena score at this market’s check time, with alphabetical order of company names as listed in this market group used as a tiebreaker (e.g., if the two models are tied by arena score, “Google” would be ranked ahead of “xAI”). This market will resolve based on the company that occupies first place under this ranking.\n\nThe resolution source for this market is the Chatbot Arena LLM Leaderboard found at https://lmarena.ai/. If this resolution source is unavailable at check time, this market will remain open until the leaderboard comes back online and will resolve based on the first check after it becomes available. If it becomes permanently unavailable, this market will resolve based on another resolution source.","keywords":["bytedance","best","model","end","april","2026","resolve","according","company","owns","highest","arena","score","based"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":23571.724881000006,"url":"https://polymarket.com/event/which-company-has-the-best-ai-model-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"1664042","oneDayPriceChange":-0.001,"endDate":"2026-04-30"},{"id":"polymarket-0xb6cce28b07b752946a3f9ce95bc15e43166a088cbeb84e77719e5983d3bf6ac4","platform":"polymarket","title":"Will Czechia win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["czechia","win","eurovision","2026","czechia win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":23555.288259000015,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"842012","oneDayPriceChange":-0.001,"endDate":"2026-05-16"},{"id":"polymarket-0x9c50945d1c32e7e8db53675b9703a5d7759e37708a21af39a1deff1a1df73d5e","platform":"polymarket","title":"Predict.fun FDV above $200M one day after launch?","description":"This market will resolve to \"Yes\" if the Fully Diluted Valuation of Predict.fun's governance token is greater than the value specified in the title 1 day after launch. Otherwise, the market will resolve to \"No.\"\n\nThe token must be actively, publicly transferable and tradable to be considered a launch.\n\nThe FDV will be determined using the total token supply multiplied by the token price.\n\n\"1 day after launch\" is defined as 4:00 PM ET on the calendar day following launch. The resolution source for this market is the most liquid price source available. If Predict.fun (https://predict.fun/) doesn't launch a token by December 31, 2027, 11:59 PM ET, this market will resolve to \"No\".","keywords":["predict.fun","fdv","above","200m","one","day","after","launch","fdv above","above 200m","day after","after launch","resolve","yes","fully","diluted","valuation","predict.fun's","governance","token"],"yesPrice":0.69,"noPrice":0.31,"yesAsk":0.69,"noAsk":0.31,"volume24h":23409.457184,"url":"https://polymarket.com/event/predictfun-fdv-above-one-day-after-launch","category":"other","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"1393318","oneDayPriceChange":-0.03,"endDate":"2028-01-01"},{"id":"polymarket-0xdb8a7861e2ae8e6b5d6b55ef433c646508738aae18c94d845bfed6c4ea70820a","platform":"polymarket","title":"Will the highest temperature in Paris be 15°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Paris-Le Bourget Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Paris-Le Bourget Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/fr/bonneuil-en-france/LFPB.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","paris","15","april","20","resolve","range","contains","recorded","paris-le","bourget","airport","station"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":23194.39650500001,"url":"https://polymarket.com/event/highest-temperature-in-paris-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"2011062","oneDayPriceChange":0.596,"endDate":"2026-04-20"},{"id":"polymarket-0xceb5e0c99a9195da148d79693f3c6819d44d4d3d7e5be77931e174a3eebe4a85","platform":"polymarket","title":"Will the Anaheim Ducks win the 2026 NHL Stanley Cup?","description":"This market will resolve to “Yes” if the Anaheim Ducks win the 2026 NHL Stanley Cup. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NHL Stanley Cup based off the rules of the NHL.\n\nThe resolution source for this market will be information from the NHL.\n","keywords":["anaheim","ducks","win","2026","nhl","hockey","stanley","cup","ducks win","win the","resolve","yes","cup.","otherwise","no","becomes","impossible","team"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":23119.515337,"url":"https://polymarket.com/event/2026-nhl-stanley-cup-champion","category":"sports","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"553848","oneDayPriceChange":0.0045,"endDate":"2026-06-30"},{"id":"polymarket-0x026750b9545df1861e77a85eb5461e621955344738355a6c7fe69bc78510d5d6","platform":"polymarket","title":"Will the next diplomatic US-Iran meeting be in Oman?","description":"This market will resolve according to the country in which the next diplomatic meeting between government representatives of the United States and Iran takes place by June 30, 2026, 11:59 PM ET.\n\nA diplomatic meeting refers to a deliberate meeting between representatives of the listed countries who are acting in an official capacity and are authorized to engage in negotiation or diplomacy regarding US-Iranian relations on behalf of their governments. Meetings conducted indirectly, for example, through designated mediators, facilitators, or interlocutors acting with the knowledge and authorization of the relevant governments, will qualify. \n\nBrief greetings, chance encounters, or talks otherwise not deliberately aimed at diplomacy or negotiation will not count.\n\nThe meeting must be in-person (including indirect meetings) and must be publicly acknowledged by either government or reported by a consensus of credible media. Remote meetings, phone calls, or other meetings where the relevant parties are not present will not count.\n\nIf the next diplomatic meeting between government representatives of the United States and Iran takes place in any country in the Middle East or North Africa other than the listed options, this market will resolve to “Other - Middle East/North Africa”. \n\nIf the next diplomatic meeting between government representatives of the United States and Iran takes place in any country in Europe other than the listed options, this market will resolve to “Other - Europe”.\n\nFor the purposes of this market, additional countries’ regions will be determined based on the US State Department’s regional classifications in the “Countries and Areas List” (https://www.state.gov/countries-and-areas-list). Any country classified as part of “Europe and Eurasia” will be considered to be in Europe. Any country classified as part of “Near East (Middle East and North Africa)” will be considered to be in the Middle East.\n\nIf the next diplomatic meeting between government representatives of the United States and Iran takes place in any unlisted country which is not classified in either of the specified regions, this market will resolve to “Other”.\n\nIf no qualifying meeting takes place by June 30, 2026, 11:59 PM ET, this market will resolve to “No Meeting by June 30”.\n\nIf a qualifying meeting occurs in more than one country, resolution will be based on where the first qualifying diplomatic session takes place.\n\nThe resolution sources for this market will be official information from the governments of the United States and Iran, and a consensus of credible reporting.","keywords":["next","diplomatic","us-iran","meeting","oman","resolve","according","country","which","between","government","representatives","united"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":22972.98525,"url":"https://polymarket.com/event/where-will-the-next-us-iran-diplomatic-meeting-happen-455","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"1961523","oneDayPriceChange":-0.0005,"endDate":"2026-06-30"},{"id":"polymarket-0x858071dbcd97be6e31f8467cba92fcb09d1d767d46da407e4434438a188b04a2","platform":"polymarket","title":"Will UAE strike Iran by April 30?","description":"This market will resolve to \"Yes\" if the listed country initiates a drone, missile, or air strike on Iranian soil or any official Iranian embassy or consulate between market creation and April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nFor the purposes of this market, a qualifying \"strike\" is defined as the use of aerial bombs, drones, or missiles (including cruise or ballistic missiles) launched by the listed country's military forces that impact Iranian ground territory or any official Iranian embassy or consulate (e.g., if a weapons depot on Iranian soil is hit by a missile launched by the listed country, this market will resolve to \"Yes\").\n\nMissiles or drones that are intercepted and surface-to-air missile strikes will not be sufficient for a \"Yes\" resolution, regardless of whether they land on Iranian territory or cause damage.\n\nActions such as artillery fire, small arms fire, FPV or ATGM strikes directly, ground incursions, naval shelling, cyberattacks, or other operations conducted by ground operatives of the listed country will not qualify.\n\nThe resolution source will be a consensus of credible reporting.","keywords":["uae","strike","iran","nuclear","sanctions","middle east","april","30","resolve","yes","listed","country","initiates","drone","missile","air"],"yesPrice":0.07,"noPrice":0.93,"yesAsk":0.07,"noAsk":0.93,"volume24h":22835.868281,"url":"https://polymarket.com/event/which-countries-will-conduct-military-action-against-iran-by-april-30","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"1693042","oneDayPriceChange":0,"endDate":"2026-04-30"},{"id":"polymarket-0xd0c4c60c8e68ee15974df3aa7d217225e98020fab9fcdb32d10f8e3d285e1619","platform":"polymarket","title":"Will Glenn Youngkin win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["glenn","youngkin","win","2028","republican","presidential","nomination","youngkin win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":22787.85633,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"561977","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xc5eae79d1ffe716572353962eb926b1e3964c500a4880a7a94f58408218ee76b","platform":"polymarket","title":"2026 Balance of Power: R Senate, R House","description":"This market will resolve according to the result of the 2026 United States midterm elections.\n\nA party will be considered to have 'control' of the House of Representatives, if they win a majority of voting seats.\n\nA party will be considered to have 'control' of the Senate if they have more than half of the voting Senate members, or half of the voting Senate members and the Vice President.\n\nA candidate's party is determined by their ballot-listed or otherwise identifiable affiliation with that party at the time the 2026 United States midterm elections are conclusively called by this market's resolution sources. A candidate without a ballot-listed affiliation to either the Democrat or Republican Parties will be considered a member of one of these parties based on the party that they most recently expressed their intent to caucus with at the time the 2026 United States midterm elections are conclusively called by this market's resolution sources.\n\nIf control of the House is ambiguous given the above rules, this market will resolve according to the party affiliation of the first Speaker of the US House who is selected following the 2026 United States midterm elections. \n\nIf control of the Senate is ambiguous given the above rules, this market will resolve according to the party affiliation of the first Majority Leader of the US Senate who is selected following the 2026 United States midterm elections.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources have conclusively called winners of the House and Senate in the 2026 United States midterm elections. If all three sources do not achieve consensus in calling the relevant races for this market, it will resolve based on the official certification.","keywords":["2026","balance","power","senate","congress","legislation","house","house of representatives","resolve","according","result","united","states","midterm","elections.","party"],"yesPrice":0.13,"noPrice":0.88,"yesAsk":0.13,"noAsk":0.88,"volume24h":22739.835092,"url":"https://polymarket.com/event/balance-of-power-2026-midterms","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.019Z","numericId":"562831","oneDayPriceChange":0,"endDate":"2026-11-03"},{"id":"polymarket-0xbcf8a1105392d88cdd573deaa65df33e1f89fc87d250fd6f5513b60ee51f548a","platform":"polymarket","title":"Will Jared Kushner have a diplomatic meeting with Iran by April 30?","description":"This market will resolve to \"Yes\" if there is a diplomatic meeting between the listed individual, acting as a representative of the United States, and representatives of Iran by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nTo qualify, the listed individual must be physically present at the meeting and actively participate as a negotiator representing the United States.\n\nA diplomatic meeting refers to a deliberate meeting between representatives of the listed countries who are acting in an official capacity and are authorized to engage in negotiation or diplomacy regarding US-Iranian relations on behalf of their governments. Meetings conducted indirectly, for example, through designated mediators, facilitators, or interlocutors acting with the knowledge and authorization of the relevant governments, will qualify.\n\nBrief greetings, chance encounters, or talks otherwise not deliberately aimed at diplomacy or negotiation will not count.\n\nThe meeting must be in-person and must be publicly acknowledged by either government or reported by a consensus of credible media. Remote meetings, phone calls, or other meetings where the relevant parties are not present will not count.\n\nThe primary resolution source for this market will be official information from the listed individual and the governments of the United States and Iran; however, a consensus of credible reporting will also be used.","keywords":["jared","kushner","diplomatic","meeting","iran","nuclear","sanctions","middle east","april","30","resolve","yes","there","between","listed","individual","acting","representative"],"yesPrice":0.84,"noPrice":0.16,"yesAsk":0.84,"noAsk":0.16,"volume24h":22731.20877,"url":"https://polymarket.com/event/who-will-meet-with-iran-by-april-30","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.065Z","numericId":"1986540","oneDayPriceChange":0.075,"endDate":"2026-04-30"},{"id":"polymarket-0x74d91fa19bbdae4b7afba167f3d297d7c135d87053b1433d1d71d966da64550b","platform":"polymarket","title":"Will US withdraw from NATO by April 30?","description":"This market will resolve to \"Yes\" if the United States formally initiates a withdrawal from NATO or provides an official notice of denunciation to NATO by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nA notice of denunciation refers to the submission of a notice of withdrawal as per Article 13 of the North Atlantic Treaty.\n\nAny action meeting these criteria will qualify for a “Yes” resolution regardless of if its implementation is immediately halted or delayed by judicial or other actions.\n\nThe U.S.'s exit from NATO’s integrated military command structure will not be sufficient to resolve this market to \"Yes\". \n\nThe resolution source will be official information from the US government and NATO, however a consensus of credible reporting may also be used.","keywords":["withdraw","nato","alliance","military","europe","ukraine","april","30","resolve","yes","united","states","formally","initiates","withdrawal","provides"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":22626.891258999996,"url":"https://polymarket.com/event/will-us-withdraw-from-nato-before-2027","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.065Z","numericId":"1820098","oneDayPriceChange":-0.0015,"endDate":"2026-04-30"},{"id":"polymarket-0x2c123716ee91e1c1eca3ad078bde2d87beae99d05c2f0a84b91b9f8998316f5d","platform":"polymarket","title":"Will the price of Bitcoin be greater than $84,000 on April 21?","description":"This market will resolve according to the final \"Close\" price of the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nIf the reported value falls exactly between two brackets, then this market will resolve to the higher range bracket.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.","keywords":["bitcoin","btc","crypto","greater","than","84000","april","21","resolve","according","final","close","binance","crypto","exchange","1"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":22604.611974,"url":"https://polymarket.com/event/bitcoin-price-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:46.065Z","numericId":"1981782","oneDayPriceChange":-0.006,"endDate":"2026-04-21"},{"id":"polymarket-0x65a2dd0af5f4155915a701e8fdbcdb2f547fb5925d0bcef0b373a8c39a16613e","platform":"polymarket","title":"Will Liverpool win the 2025–26 English Premier League?","description":"This is a polymarket on whether the listed club will win the 2025–26 English Premier League.\n\nThis market will resolve to \"Yes\" if the listed club is officially crowned the winner of the 2025–26 English Premier League. Otherwise, it will resolve to \"No\".\n\nIf at any point it becomes impossible for the listed club to win the league (e.g. they are mathematically eliminated), the market will resolve to \"No\".\n\nIf the 2025–26 English Premier League season is canceled or not completed by October 1, 2026, this market will resolve to \"Other\".\n\nThe primary resolution source will be official information from the English Premier League. A consensus of credible reporting may also be used.","keywords":["liverpool","soccer","premier league","england","win","2025","26","english","premier","league","liverpool win","win the","football","epl","polymarket","listed","club","league.","resolve","yes","officially","crowned"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":22570.52,"url":"https://polymarket.com/event/english-premier-league-winner","category":"sports","lastUpdated":"2026-04-20T19:49:46.065Z","numericId":"566186","oneDayPriceChange":0,"endDate":"2026-05-27"},{"id":"polymarket-0xadd9c640e09182b9d051b99faff8dacdb4a12150e2bb112dd7b8b9b33e111079","platform":"polymarket","title":"Will Mitch Johnson win the 2025–2026 NBA Coach of the Year?","description":"This market will resolve according to the player who is awarded the 2025–26 NBA Coach of the Year.\n\nIf the listed player is not announced as a finalist for the 2025–26 Coach of the Year, this market will resolve to \"No\".\n\nThe primary resolution source for this market will be official information from the NBA. However, a consensus of credible reporting may also be used.","keywords":["mitch","johnson","win","2025","2026","nba","basketball","coach","year","johnson win","win the","resolve","according","player","awarded","26","year.","listed","not"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":22503.0986,"url":"https://polymarket.com/event/nba-2025-26-coach-of-the-year","category":"sports","lastUpdated":"2026-04-20T19:49:46.065Z","numericId":"643797","oneDayPriceChange":0.0015,"endDate":"2026-06-30"},{"id":"polymarket-0x6680cae9b37261f6c1ec3313f9ad175708bb9722e94285b5b0a5b50a9972d312","platform":"polymarket","title":"Will Israel win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["israel","gaza","hamas","middle east","win","eurovision","2026","israel win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.06,"noPrice":0.94,"yesAsk":0.06,"noAsk":0.94,"volume24h":22467.003882,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.065Z","numericId":"842020","oneDayPriceChange":0.003,"endDate":"2026-05-16"},{"id":"polymarket-0xd0c6d2c194bdf7d9773c952da1d26203fceaebe0320396dbc55ad4af911ea474","platform":"polymarket","title":"Will Amazon be the largest company in the world by market cap on April 30?","description":"This market will resolve to the largest company in the world by market cap on April 30, 2026, as of market close.\n\nThe resolution source for this market will be a consensus of credible reporting.","keywords":["amazon","amzn","aws","cloud","bezos","largest","company","world","cap","april","30","resolve","2026","close.","resolution","source","consensus","credible","reporting."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":22326.27,"url":"https://polymarket.com/event/largest-company-end-of-april-738","category":"technology","lastUpdated":"2026-04-20T19:49:46.065Z","numericId":"1487063","oneDayPriceChange":0,"endDate":"2026-04-30"},{"id":"polymarket-0xc5675bc58c8117391cc243780c1b709ce1ef744aa27779c78ee82f3dc974ca1b","platform":"polymarket","title":"Will the Kharg Island oil terminal be hit by April 30?","description":"This market will resolve to \"Yes\" if the Kharg Island oil terminal is the subject of a kinetic strike by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nQualifying strikes occurring on or after February 28 ET will count even if they occurred before market creation.\n\nMissiles or drones that are intercepted and surface-to-air missile strikes will not be sufficient for a \"Yes\" resolution.\n\nThe primary resolution source for this market will be a consensus of credible reporting.","keywords":["kharg","island","oil","terminal","hit","april","30","be hit","hit by","resolve","yes","subject","kinetic","strike","2026","11","59"],"yesPrice":0.09,"noPrice":0.92,"yesAsk":0.09,"noAsk":0.92,"volume24h":22299.266306,"url":"https://polymarket.com/event/will-the-kharg-island-oil-terminal-be-hit-by-march-31","category":"climate","lastUpdated":"2026-04-20T19:49:46.065Z","numericId":"1708576","oneDayPriceChange":-0.025,"endDate":"2026-04-30"},{"id":"polymarket-0xce3c54c3e773e8b3bf73e4c12af93205b21195d03b9c386e22f274b9acfc2c56","platform":"polymarket","title":"Will Bitcoin dip to $50,000 by December 31, 2026?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for Bitcoin (BTC/USDT) between November 24, 2025, 14:00 and December 31, 2026, 23:59 in the ET timezone has a final \"Low\" price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Low\" prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.\n","keywords":["bitcoin","btc","crypto","dip","50000","december","31","2026","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.47,"noPrice":0.53,"yesAsk":0.47,"noAsk":0.53,"volume24h":22081.899144999992,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-before-2027","category":"crypto","lastUpdated":"2026-04-20T19:49:46.065Z","numericId":"1339767","oneDayPriceChange":-0.015,"endDate":"2027-01-01"},{"id":"polymarket-0x83a32662bfa3883f4a14c7a4f004b0f21b0443d1668364df71044542e735b521","platform":"polymarket","title":"Will Chelsea FC win on 2026-04-21?","description":"In the upcoming game, scheduled for April 21, 2026\nIf Chelsea FC wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["chelsea","soccer","premier league","england","win","2026-04-21","fc win","win on","upcoming","game","scheduled","april","21","2026","wins","resolve"],"yesPrice":0.35,"noPrice":0.65,"yesAsk":0.35,"noAsk":0.65,"volume24h":22065.378946999994,"url":"https://polymarket.com/event/epl-bri-che-2026-04-21","category":"other","lastUpdated":"2026-04-20T19:49:46.065Z","numericId":"1914648","oneDayPriceChange":0,"endDate":"2026-04-21"},{"id":"polymarket-0xf8f63bb47b2a7c2e0c1be3cedf4075079b11c07476d76a9469065b0c4791961a","platform":"polymarket","title":"Will the Colorado Avalanche win the 2026 NHL Stanley Cup?","description":"This market will resolve to “Yes” if the Colorado Avalanche win the 2026 NHL Stanley Cup. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NHL Stanley Cup based off the rules of the NHL.\n\nThe resolution source for this market will be information from the NHL.\n","keywords":["colorado","avalanche","avax","crypto","win","2026","nhl","hockey","stanley","cup","avalanche win","win the","resolve","yes","cup.","otherwise","no","becomes","impossible","team"],"yesPrice":0.26,"noPrice":0.74,"yesAsk":0.26,"noAsk":0.74,"volume24h":22032.085132000004,"url":"https://polymarket.com/event/2026-nhl-stanley-cup-champion","category":"sports","lastUpdated":"2026-04-20T19:49:46.065Z","numericId":"553828","oneDayPriceChange":-0.0015,"endDate":"2026-06-30"},{"id":"polymarket-0x061d30d493488624cb80cce362179251bd837ea6a0664ed4d7fd6a126ab8caa7","platform":"polymarket","title":"Will the next diplomatic US-Iran meeting be in Austria?","description":"This market will resolve according to the country in which the next diplomatic meeting between government representatives of the United States and Iran takes place by June 30, 2026, 11:59 PM ET.\n\nA diplomatic meeting refers to a deliberate meeting between representatives of the listed countries who are acting in an official capacity and are authorized to engage in negotiation or diplomacy regarding US-Iranian relations on behalf of their governments. Meetings conducted indirectly, for example, through designated mediators, facilitators, or interlocutors acting with the knowledge and authorization of the relevant governments, will qualify. \n\nBrief greetings, chance encounters, or talks otherwise not deliberately aimed at diplomacy or negotiation will not count.\n\nThe meeting must be in-person (including indirect meetings) and must be publicly acknowledged by either government or reported by a consensus of credible media. Remote meetings, phone calls, or other meetings where the relevant parties are not present will not count.\n\nIf the next diplomatic meeting between government representatives of the United States and Iran takes place in any country in the Middle East or North Africa other than the listed options, this market will resolve to “Other - Middle East/North Africa”. \n\nIf the next diplomatic meeting between government representatives of the United States and Iran takes place in any country in Europe other than the listed options, this market will resolve to “Other - Europe”.\n\nFor the purposes of this market, additional countries’ regions will be determined based on the US State Department’s regional classifications in the “Countries and Areas List” (https://www.state.gov/countries-and-areas-list). Any country classified as part of “Europe and Eurasia” will be considered to be in Europe. Any country classified as part of “Near East (Middle East and North Africa)” will be considered to be in the Middle East.\n\nIf the next diplomatic meeting between government representatives of the United States and Iran takes place in any unlisted country which is not classified in either of the specified regions, this market will resolve to “Other”.\n\nIf no qualifying meeting takes place by June 30, 2026, 11:59 PM ET, this market will resolve to “No Meeting by June 30”.\n\nIf a qualifying meeting occurs in more than one country, resolution will be based on where the first qualifying diplomatic session takes place.\n\nThe resolution sources for this market will be official information from the governments of the United States and Iran, and a consensus of credible reporting.","keywords":["next","diplomatic","us-iran","meeting","austria","resolve","according","country","which","between","government","representatives","united"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":21965.01,"url":"https://polymarket.com/event/where-will-the-next-us-iran-diplomatic-meeting-happen-455","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.065Z","numericId":"1961528","oneDayPriceChange":-0.0015,"endDate":"2026-06-30"},{"id":"polymarket-0xeb31355f113881c0381366b98cf281a5c60401898fe34cad44af644d20ccd578","platform":"polymarket","title":"Will Girona FC win on 2026-04-21?","description":"In the upcoming game, scheduled for April 21, 2026\nIf Girona FC wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["girona","win","2026-04-21","fc win","win on","upcoming","game","scheduled","april","21","2026","wins","resolve"],"yesPrice":0.39,"noPrice":0.61,"yesAsk":0.39,"noAsk":0.61,"volume24h":21919.142022999997,"url":"https://polymarket.com/event/lal-gir-bet-2026-04-21","category":"other","lastUpdated":"2026-04-20T19:49:46.065Z","numericId":"1915699","oneDayPriceChange":0.02,"endDate":"2026-04-21"},{"id":"polymarket-0x8fb526c3afd133bae39214acb5502374a36e3563cbedb8a964899825c8be2b64","platform":"polymarket","title":"Bank of Japan decreases interest rates after the April 2026 meeting?","description":"The Statement on Monetary Policy for the Bank of Japan's Monetary Policy meeting for April is scheduled to be released on April 28, 2026 (https://www.boj.or.jp/en/mopo/mpmsche_minu/index.htm).\n\nThis market will resolve to the amount of basis points the upper bound of the short-term policy interest rate is changed by versus the level it was prior to the Bank of Japan's April 2026 meeting.\n\nIf the short-term policy interest rate is changed to a level not expressed in the displayed options, the change will be rounded up to the nearest 25 and will resolve to the relevant bracket. (e.g. if there's a cut/increase of 12.5 bps it will be considered to be 25 bps)\n\nThe primary resolution source for this market will be the official website of the Bank of Japan (https://www.boj.or.jp/en/mopo/mpmsche_minu/index.htm), however a consensus of credible reporting may also be used.\n\nThis market may resolve as soon as the Bank of Japan's statement for the specified meeting with relevant data is issued. If no statement is released by the end date of the next scheduled meeting, this market will resolve to the \"No change\" bracket.","keywords":["bank","japan","japanese","yen","nikkei","jpy","decreases","interest","rates","after","april","2026","meeting","bank of japan","boj","rates after","after the","statement","monetary","policy","japan's","scheduled","released","28","https"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":21901.393000000004,"url":"https://polymarket.com/event/bank-of-japan-decision-in-april","category":"economics","lastUpdated":"2026-04-20T19:49:46.065Z","numericId":"1249979","oneDayPriceChange":0.001,"endDate":"2026-04-28"},{"id":"polymarket-0x04b6c4174ccaf58a69722fa6f699584ae5d2f84d20ea81055cdff2e464e6aaf3","platform":"polymarket","title":"Will Victor Wembanyama win the 2025–2026 NBA Defensive Player of the Year?","description":"This market will resolve according to the player who is awarded the 2025–26 NBA Defensive Player of the Year.\n\nIf the listed player is not announced as a finalist for the 2025–26 Defensive Player of the Year, this market will resolve to \"No\".\n\nThe primary resolution source for this market will be official information from the NBA. However, a consensus of credible reporting may also be used.","keywords":["victor","wembanyama","win","2025","2026","nba","basketball","defensive","player","year","wembanyama win","win the","resolve","according","awarded","26","year.","listed","not","announced"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":21836.558175,"url":"https://polymarket.com/event/nba-2025-26-defensive-player-of-the-year","category":"sports","lastUpdated":"2026-04-20T19:49:46.065Z","numericId":"643550","oneDayPriceChange":0.005,"endDate":"2026-06-30"},{"id":"polymarket-0x2bf6f2697e123f9bfb2c8788ed35741c67159ed19374886e6e7cb3f35e60f855","platform":"polymarket","title":"Will the Orlando Magic win the NBA Eastern Conference Finals?","description":"This market will resolve to “Yes” if the Orlando Magic win the 2025–2026 NBA Eastern Conference Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2025–26 NBA Eastern Conference Finals based on the rules of the NBA.\n\nIf the 2025-26 NBA Eastern Conference Finals winner is not announced by June 30, 2026, this market will resolve to “Other”.\n\nThe resolution source for this market will be information from the NBA.","keywords":["orlando","magic","win","nba","basketball","eastern","conference","finals","magic win","win the","resolve","yes","2025","2026","finals.","otherwise","no","becomes"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":21816.998229,"url":"https://polymarket.com/event/nba-eastern-conference-champion-442","category":"sports","lastUpdated":"2026-04-20T19:49:46.065Z","numericId":"564196","oneDayPriceChange":0.0115,"endDate":"2026-06-13"},{"id":"polymarket-0x348cd9adf4f6855f58bd9c6dbf9ff251c4142ef77233a5dc95c65b4b61cd2187","platform":"polymarket","title":"Strait of Hormuz traffic returns to normal by end of June?","description":"This market will resolve to “Yes” if IMF Portwatch publishes a 7-day moving average of transit calls (“Arrivals of Ships”) for the Strait of Hormuz equal to or above 60 for any date between market creation and June 30, 2026. Otherwise, this market will resolve to “No”.\n\nDaily transit calls include container, dry bulk, roll-on/roll-off, general cargo, and tanker ships. Ships not reported by IMF Portwatch will not be considered.\n\nThis market will resolve as soon as IMF Portwatch publishes a 7-day moving average of transit calls equal to or above the specified level, or once data has been published for the final date in the specified period and no such value has been published. If no data has been published for the final date of the specified period within 14 calendar days (ET) after the end of that period, this market will resolve based on data published up to that point.\n\nRevisions to previously published data points made within this market’s timeframe will be considered. However, they will not disqualify a previously published data point from qualifying. Revisions to previously published data points after data is published for June 30, 2026, however, will not be considered.\n\nThe resolution source for this market will be IMF Portwatch, specifically the transit calls data published for the Strait of Hormuz at https://portwatch.imf.org/pages/cb5856222a5b4105adc6ee7e880a1730, both in the chart and through downloadable files.","keywords":["strait","hormuz","traffic","returns","normal","end","june","resolve","yes","imf","portwatch","publishes","7-day","moving","average"],"yesPrice":0.81,"noPrice":0.19,"yesAsk":0.81,"noAsk":0.19,"volume24h":21798.576727000003,"url":"https://polymarket.com/event/strait-of-hormuz-traffic-returns-to-normal-by-end-of-june","category":"technology","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1971905","oneDayPriceChange":0,"endDate":"2026-06-30"},{"id":"polymarket-0x2529b3e51721d203b78afc5a0e03f491f04274c876d979da491f8b62fbd2eb2d","platform":"polymarket","title":"Trump declassifies new UFO files by April 30?","description":"This market will resolve to \"Yes\" if the Trump administration declassifies any files pertaining to extraterrestrial life and/or unexplained aerial phenomena which were not previously publicly available by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nFor purposes of this market, the “Trump administration” includes the Executive Office of the President and all executive branch departments, agencies, and subordinate offices under presidential authority during the Trump presidency, including the Department of Defense and its components.\n\nAnnouncements of declassifications that are not implemented within this market's timeframe will not count.\n\nThe primary resolution source for declassification will be official information from the government of the United States; however, a consensus of credible reporting will also be used.","keywords":["trump","president","potus","administration","gop","republican","declassifies","new","ufo","files","april","30","resolve","yes","pertaining","extraterrestrial","life","unexplained","aerial","phenomena"],"yesPrice":0.19,"noPrice":0.81,"yesAsk":0.19,"noAsk":0.81,"volume24h":21757.002593,"url":"https://polymarket.com/event/trump-declassifies-new-ufo-files-by-march-31","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1654508","oneDayPriceChange":0.04,"endDate":"2026-03-31"},{"id":"polymarket-0x03ae71e2af9a29dd15ee17bde2304719f596d58b4db60dc6bec1bd5ff9247609","platform":"polymarket","title":"Will Bitcoin dip to $40,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final Low price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT Low prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","dip","40000","april","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":21750.221715,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1823784","oneDayPriceChange":0,"endDate":"2026-05-01"},{"id":"polymarket-0x2eb73fd621f2bf68adc6b4502b08fd9f18711d16c9d06e15baab553de9c09d30","platform":"polymarket","title":"Will the price of Ethereum be above $1,800 on April 22?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for ETH/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the ETH/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/ETH_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance ETH/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["ethereum","eth","crypto","above","1800","april","22","be above","above 1800","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":21694.4315,"url":"https://polymarket.com/event/ethereum-above-on-april-22","category":"crypto","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1992412","oneDayPriceChange":0.001,"endDate":"2026-04-22"},{"id":"polymarket-0xe9f40f7319cd35af656935a9c812f4cb447d373cd399b6101ebb004e27a0b69a","platform":"polymarket","title":"Will MegaETH launch a token by June 30, 2026?","description":"This market will resolve to “Yes” if MegaETH officially launches a governance token by 11:59 PM ET on the date specified in the title. Otherwise, this market will resolve to “No”.\n\nThe token must be actively and publicly transferable and tradable. Announcements alone do not qualify.\n\nThe primary resolution source for this market will be information from MegaETH, however a consensus of credible reporting will also be used.","keywords":["megaeth","launch","token","june","30","2026","resolve","yes","officially","launches","governance","11","59","date"],"yesPrice":0.9,"noPrice":0.1,"yesAsk":0.9,"noAsk":0.1,"volume24h":21642.077041,"url":"https://polymarket.com/event/will-megaeth-launch-a-token-by","category":"crypto","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1383662","oneDayPriceChange":-0.005,"endDate":"2027-01-01"},{"id":"polymarket-0x2d2678a04ab2d0aa57dc9ec11bdbfd1d43d681b2ee9869d8351db84e342400fa","platform":"polymarket","title":"Will Databricks’ market cap be between $100B and $125B at market close on IPO day?","description":"This market will resolve based on Databricks' market capitalization at the closing price on its first day of trading.\n\nIf no IPO occurs by June 30, 2026, 11:59 PM ET, the market will resolve to \"No IPO by June 30, 2026\".\n\nMarket capitalization expresses the monetary value of a company’s outstanding shares, stated in its pricing currency. It is calculated as the number of shares outstanding multiplied by the closing share price on the first trading day.\n\nIf the relevant value falls exactly between two brackets, then this market will resolve to the higher range bracket.\n\nResolution will be based on the primary exchange’s official listing page. In the event that the relevant figure is not displayed, another reliable source will be used.\n\nIn the event of an interruption in the course of the normal trading session on Databricks’ first day of trading (e.g., a circuit breaker or half-day), the market will resolve according to the official closing price of the abbreviated session. If no such official closing price is published, the market will resolve according to the next trading day on which an official closing price is published, treating that as the first day of trading for purposes of this market.","keywords":["databricks","cap","between","100b","125b","close","ipo","stocks","listing","public offering","day","resolve","based","databricks'","capitalization","closing","first","trading.","no"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":21574.708857,"url":"https://polymarket.com/event/databricks-ipo-closing-market-cap","category":"other","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"608385","oneDayPriceChange":0.0005,"endDate":"2026-06-30"},{"id":"polymarket-0xd1e7c5497dcdc8e923a02f9ed7f9157833994b95a2640dd6d0318ac4f8409fdb","platform":"polymarket","title":"Will Cyprus win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["cyprus","win","eurovision","2026","cyprus win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":21511.473170999994,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"842011","oneDayPriceChange":0,"endDate":"2026-05-16"},{"id":"polymarket-0x9345d5142a67f5541264c96515496affee02580f1c572680759eac9fd2a1588a","platform":"polymarket","title":"Billionaire one-time wealth tax passes in California election 2026?","description":"A one-time wealth tax on billionaires has been proposed to potentially appear on California's ballot for the November 3, 2026 general election. You can read more about that here: https://6abc.com/post/california-union-proposes-taxing-billionaires-offset-medicaid-cuts-low-income-people/18066430/\n\nThis market will resolve to \"Yes\" if any proposition containing a one-time tax targeting individuals, households, or family units with wealth, assets, or net worth of at least $1 billion (USD or equivalent) passes in the named election. Otherwise, this market will resolve to \"No\".\n\nIf no qualifying ballot initiative is certified to appear on the official statewide California ballot as a proposition to be voted on in the stated election by June 25, 2026, 11:59 PM ET (the official cutoff date for new initiatives to be approved), or if all qualifying propositions/initiatives are removed from the ballot or amended before the election such that the main threshold drops below $1 billion, this market will resolve \"No\".\n\nThe primary resolution source for this market will be official information from the Government of the State of California, however a consensus of credible reporting may also be used.","keywords":["billionaire","one-time","wealth","tax","passes","california","election","2026","tax passes","passes in","california election","election 2026","billionaires","proposed","potentially","appear","california's","ballot","november","3"],"yesPrice":0.38,"noPrice":0.63,"yesAsk":0.38,"noAsk":0.63,"volume24h":21483.278501,"url":"https://polymarket.com/event/billionaire-one-time-wealth-tax-passes-in-california-election-2026","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"648383","oneDayPriceChange":0.01,"endDate":"2026-11-03"},{"id":"polymarket-0xdb7160b3dd09ea1ec2bba1875256305ce08e63409bb65024c0d1b2f833ae1342","platform":"polymarket","title":"Crude Oil all time high by April 30?","description":"This market will resolve to \"Yes\" if, on any trading day, the official daily high price published by the CME Group for the Active Month (front month) of CME Crude Oil (CL) futures is greater than $147.27 by the final trading day of April 2026. Otherwise, this market will resolve to \"No\".\n\nFor CME Crude Oil (CL) futures contracts, the active month is the nearest of the contract months listed. The active month becomes a non-active month effective two business days prior to the spot month expiration. For example, if the spot month expires on a Friday the next listed contract will be considered the Active Month on the Wednesday prior to the spot month expiration.\n\nThis market will resolve as soon as a high price greater than the listed value is published, or once finalized data for the final trading day of April 2026 is published and a high price greater than $147.27 has not been achieved.\n\nThe resolution source for this market is the CME Group website (https://www.cmegroup.com/markets/energy/crude-oil/light-sweet-crude.quotes.html) — specifically, the daily \"High\" prices for the Active Month of Crude Oil (CL) futures.","keywords":["crude","oil","wti","energy","time","high","april","30","all time high","bitcoin","crypto","stocks","ath","resolve","yes","trading","day","official","daily","published","cme"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":21420.623491999995,"url":"https://polymarket.com/event/crude-oil-all-time-high-by-april-30","category":"climate","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1797770","oneDayPriceChange":-0.083,"endDate":"2026-04-30"},{"id":"polymarket-0xde9f827cb2d568db7801439693645a941a38fe6feaeb08b86087ad367d991704","platform":"polymarket","title":"Will Michael be the top grossing movie of 2026?","description":"This market will resolve according to the title of the film with the highest 2026 gross according to the \"Gross\" column on https://www.boxofficemojo.com/year/2026/?grossesOption=calendarGrosses once data for December 31 is made available. \n\nNote: This market is about the movie's domestic calendar gross in 2026 - dates outside of 2026 will not count toward this movie's gross.\n\nIn the event of an exact tie the film that comes first alphabetically will be considered the winner.\n\nIf there is no final data available by January 7, 2027, 11:59 PM ET, another credible resolution source will be chosen.","keywords":["michael","top","grossing","movie","film","cinema","box office","2026","resolve","according","title","highest","gross","column","https","www.boxofficemojo.com"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":21396.480712,"url":"https://polymarket.com/event/highest-grossing-movie-in-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"678410","oneDayPriceChange":0.001,"endDate":"2026-12-31"},{"id":"polymarket-0xf019dab83a6175caa9fbba00969cb975f507361946f6c525e06f8309511895a5","platform":"polymarket","title":"Ukraine peace referendum scheduled by June 30?","description":"This market will resolve to “Yes” if a peace referendum on the Russo-Ukrainian war is officially scheduled in Ukraine by June 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”. \n\nA peace referendum for the Russo-Ukrainian war refers to any nationwide vote relating to peace in the Russo-Ukrainian war or over a peace deal to end the war.\n\nA qualifying referendum will be considered to be scheduled once a date for the referendum to take place has been officially scheduled and publicly announced by a relevant Ukrainian government authority with the legal jurisdiction to do so. \n\nOnce a qualifying referendum has been scheduled, this market will resolve to “Yes.” Subsequent legal challenges or other challenges to the legitimacy of the referendum will not affect resolution of this market.\n\nThe primary resolution source for this market will be official information from the government of Ukraine; however, a consensus of credible reporting may also be used.","keywords":["ukraine","russia","war","nato","zelensky","peace","referendum","scheduled","june","30","resolve","yes","russo-ukrainian","officially","2026","11","59","et."],"yesPrice":0.06,"noPrice":0.94,"yesAsk":0.06,"noAsk":0.94,"volume24h":21329,"url":"https://polymarket.com/event/ukraine-calls-a-referendum-on-peace-deal-with-russia-by-january-31","category":"technology","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1059337","oneDayPriceChange":-0.005,"endDate":"2026-06-30"},{"id":"polymarket-0xbad704f2ae063322169bf3add805258727ecd3e6c0ad37fc7e6590c993375732","platform":"polymarket","title":"NATO x Russia military clash by June 30, 2026?","description":"This market will resolve to \"Yes\" if there is a military encounter between the military forces of a NATO country and Russia between January 12, and June 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nA \"military encounter\" is defined as any incident involving the use of force such as missile strikes, artillery fire, exchange of gunfire, or other forms of direct military engagement between NATO and Russian military forces. Non-violent actions, such as airspace violations, firing of warning shots (such as the June, 2021 Black Sea Confrontations between Russian forces and HMS Defender), or cyberattacks will not qualify.\n\nInterception of missiles or other one-way attack or loitering munitions (e.g. Shahed drones) which are targeting a 3rd party other than the listed countries or their respective forces will not alone qualify. Shooting down UAVs which are not munitions (e.g. MQ-9, Orlan 10, Orion, Bayraktar TB2, etc.) will qualify.\n\nIntentional physical collisions, including aerial interceptions and naval ramming without the direct use of weaponry, such as the 2023 Black Sea incident—where a Russian Su-27 damaged a U.S. MQ-9 Reaper drone's propeller, leading to its crash— will not qualify regardless of damage.\n\nMilitary contractors will qualify only if confirmed to be operating under the direct command or coordination of the respective state’s armed forces (e.g. the Battle of Khasham would not qualify).\n\nThe resolution source for this market will be a consensus of credible reporting.","keywords":["nato","alliance","military","europe","ukraine","russia","clash","june","30","2026","resolve","yes","there","encounter","between","forces","country","january"],"yesPrice":0.08,"noPrice":0.92,"yesAsk":0.08,"noAsk":0.92,"volume24h":21242.746734,"url":"https://polymarket.com/event/nato-x-russia-military-clash-in-2025","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1171858","oneDayPriceChange":0,"endDate":"2026-06-30"},{"id":"polymarket-0x88f3730cf4c35b29395f65a3225a6f15807f05f8700d8462669395c65fe3e4d7","platform":"polymarket","title":"Will the highest temperature in Hong Kong be 27°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded by the Hong Kong Observatory in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from the Hong Kong Observatory, specifically the \"Absolute Daily Max (deg. C)\" the specified date once information is finalized in the relevant \"Daily Extract\", available here: https://www.weather.gov.hk/en/cis/climat.htm\n\nThis market can not resolve to \"Yes\" until data for this date has been finalized.\n\nThe resolution source for this market measures temperatures in Celsius to one decimal place (eg, 9.1°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","hong","kong","27","april","20","resolve","range","contains","recorded","observatory","degrees","celsius","apr"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":20984.149138999997,"url":"https://polymarket.com/event/highest-temperature-in-hong-kong-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"2011250","oneDayPriceChange":-0.2745,"endDate":"2026-04-20"},{"id":"polymarket-0xdf5a6f4b8747f75c048f51e9736db1c7f1303c552126091cbff00da449081bfc","platform":"polymarket","title":"Will Bitcoin dip to $35,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final Low price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT Low prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","dip","35000","april","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":20689.313592,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1823785","oneDayPriceChange":-0.001,"endDate":"2026-05-01"},{"id":"polymarket-0x18a6cd68c80f4838ed7916ef826f5cab501aba0c30588cf06c9a44fac018e84d","platform":"polymarket","title":"Will United Left (BSP) win at least one seat in the 2026 Bulgarian parliamentary election?","description":"Parliamentary elections are scheduled to be held in Bulgaria on April 19, 2026.\n\nThis market will resolve to \"Yes\" if the listed political party wins at least one seat in the next Bulgarian National Assembly (Народно събрание, Narodno săbraniе) as a result of the election. Otherwise, the market will resolve to \"No\".\n\nIf the results are not known definitively by October 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the results of this election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Bulgarian government, specifically the Central Election Commission of Bulgaria (Tsentralna Izbiratelna Komisia) (https://www.cik.bg/).","keywords":["united","left","bsp","win","least","one","seat","2026","bulgarian","parliamentary","election","bsp win","win at","parliamentary election","elections","scheduled","held","bulgaria","april","19","2026.","resolve"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":20661.76155,"url":"https://polymarket.com/event/bulgarian-parliamentary-election-which-parties-enter-parliament","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1737533","oneDayPriceChange":-0.027,"endDate":"2026-04-19"},{"id":"polymarket-0xfb1f550759909794c23b00af18fca4c280055b5f9d8486be98e3d060c33ca90c","platform":"polymarket","title":"Will Ferran Torres be the top goal scorer in the 2025–26 La Liga season?","description":"This is a polymarket to predict which player will finish as the top goal scorer in the 2025–26 La Liga season.\n\nIf the listed player finishes as the sole top goal scorer in the 2025–26 La Liga season, the market will resolve to \"Yes\". Otherwise, it will resolve to \"No\".\n\nGoals scored in La Liga matches only will count. Goals in other competitions (e.g., Copa del Rey, Spanish Super Cup, Champions League, Europa League, international matches) will not count for this market.\n\nIf multiple players tie for the top goal scorer, the market will resolve to the player whose last name comes first alphabetically.\n\nIf the 2025–26 La Liga season is canceled or not completed by August 1, 2026, the market will resolve to \"Other\".\n\nThe primary resolution source will be official statistics from La Liga. A consensus of credible reporting may also be used.","keywords":["ferran","torres","top","goal","scorer","2025","26","liga","season","la liga","soccer","football","spain","polymarket","predict","which","player","finish","season.","listed","finishes"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":20627.1615,"url":"https://polymarket.com/event/la-liga-top-goalscorer","category":"other","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"577226","oneDayPriceChange":-0.0015,"endDate":"2026-05-30"},{"id":"polymarket-0x9e54856d758cd7de25b75c97273a38d711642f16eacad57e61982028f2791206","platform":"polymarket","title":"Will the Pittsburgh Penguins win the 2026 NHL Stanley Cup?","description":"This market will resolve to “Yes” if the Pittsburgh Penguins win the 2026 NHL Stanley Cup. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NHL Stanley Cup based off the rules of the NHL.\n\nThe resolution source for this market will be information from the NHL.\n","keywords":["pittsburgh","penguins","win","2026","nhl","hockey","stanley","cup","penguins win","win the","resolve","yes","cup.","otherwise","no","becomes","impossible","team"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":20546.385531,"url":"https://polymarket.com/event/2026-nhl-stanley-cup-champion","category":"sports","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"553852","oneDayPriceChange":0.006,"endDate":"2026-06-30"},{"id":"polymarket-0xbefea6668e49e328db4d5c792bc15cea309bbc06101dfd6ced1e0556ad3ea301","platform":"polymarket","title":"Will the Buffalo Sabres win the 2026 NHL Stanley Cup?","description":"This market will resolve to “Yes” if the Buffalo Sabres win the 2026 NHL Stanley Cup. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NHL Stanley Cup based off the rules of the NHL.\n\nThe resolution source for this market will be information from the NHL.\n","keywords":["buffalo","sabres","win","2026","nhl","hockey","stanley","cup","sabres win","win the","resolve","yes","cup.","otherwise","no","becomes","impossible","team"],"yesPrice":0.09,"noPrice":0.91,"yesAsk":0.09,"noAsk":0.91,"volume24h":20404.699983000002,"url":"https://polymarket.com/event/2026-nhl-stanley-cup-champion","category":"sports","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"553851","oneDayPriceChange":0.0315,"endDate":"2026-06-30"},{"id":"polymarket-0x4c7d88cebb3d96bf71fd025b12c230148a90448acd82d1b43e13fe22406f36b9","platform":"polymarket","title":"Will Marin Cilic win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["marin","cilic","win","2026","men's","french","open","cilic win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":20386.520000000004,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1087542","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0x691caeee38732ed5a5a7d322605dff00fb839d2cacfa1e405172bf29c101b27b","platform":"polymarket","title":"Will the highest temperature in New York City be between 46-47°F on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the LaGuardia Airport Station in degrees Fahrenheit on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the LaGuardia Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/us/ny/new-york-city/KLGA.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Fahrenheit (eg, 21°F). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","new","york","city","between","46-47","april","20","resolve","range","contains","recorded","laguardia","airport","station","degrees"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":20346.811629000003,"url":"https://polymarket.com/event/highest-temperature-in-nyc-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"2011124","oneDayPriceChange":-0.0345,"endDate":"2026-04-20"},{"id":"polymarket-0x65f204a8ebbaa472d668cc4fdbe4dd45249405a7e0acea43b7930a216e5bfdc7","platform":"polymarket","title":"Will Trump visit China by May 15?","description":"If U.S. President Donald Trump visits China by May 15, 2026, 11:59 PM ET, this market will resolve to \"Yes\". Otherwise, this market will resolve to \"No\".\n\nFor the purpose of this market, a \"visit\" is defined as Trump physically entering the terrestrial or maritime territory of the listed country. Whether or not Trump enters the country's airspace during the timeframe of this market will have no bearing on a positive resolution.\n\nThe primary resolution source for this information will be official information from government of the United States of America, official information from Trump or released by his verified social media accounts (e.g. https://twitter.com/POTUS), however, a consensus of credible reporting will also be used.","keywords":["trump","president","potus","administration","gop","republican","visit","china","chinese","prc","beijing","xi","15","u.s.","donald","visits","2026","11","59","resolve","yes"],"yesPrice":0.75,"noPrice":0.25,"yesAsk":0.75,"noAsk":0.25,"volume24h":20190.068472,"url":"https://polymarket.com/event/will-trump-visit-china-by","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1985666","oneDayPriceChange":-0.035,"endDate":"2026-03-31"},{"id":"polymarket-0x1e897977a630087c3377421dab25465f2084939e5dca4b2bd4d8ec6a901e789d","platform":"polymarket","title":"Will Alphabet be the largest company in the world by market cap on April 30?","description":"This market will resolve to the largest company in the world by market cap on April 30, 2026, as of market close.\n\nThe resolution source for this market will be a consensus of credible reporting.","keywords":["alphabet","google","googl","largest","company","world","cap","april","30","resolve","2026","close.","resolution","source","consensus","credible","reporting."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":20085.784998,"url":"https://polymarket.com/event/largest-company-end-of-april-738","category":"other","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1487058","oneDayPriceChange":-0.0005,"endDate":"2026-04-30"},{"id":"polymarket-0xe546672750517f62c45a5a00067481981e62b9c20fa8220203232c9dc8fd2093","platform":"polymarket","title":"Russia x Ukraine ceasefire by June 30, 2026?","description":"This market will resolve to \"Yes\" if there is an official ceasefire agreement, defined as a publicly announced and mutually agreed halt in military engagement, between Russia and Ukraine by June 30, 2026, 11:59 PM ET.\n\nIf the agreement is officially reached before the resolution date, this market will resolve to \"Yes,\" regardless of whether the ceasefire officially starts afterward.\n\nOnly ceasefires which constitute a general pause in the conflict will qualify. Ceasefires which only apply to energy infrastructure, the Black Sea, or other similar agreements will not qualify.\n\nAny form of informal agreement will not be considered an official ceasefire. Humanitarian pauses will not count toward the resolution of this market.\n\nA peace deal or political framework will qualify if it includes a publicly announced and mutually agreed halt in military engagement, effective on a specific date. Frameworks or agreements that outline terms for a future peace but do not include an explicit, dated commitment to stop fighting will not count.\n\nThis market's resolution will be based on official announcements from both Russia and Ukraine; however, a wide consensus of credible media reporting stating an official ceasefire agreement between Russia and Ukraine has been reached will suffice.","keywords":["russia","ukraine","war","nato","zelensky","ceasefire","peace","conflict","june","30","2026","resolve","yes","there","official","agreement","defined","publicly","announced"],"yesPrice":0.07,"noPrice":0.94,"yesAsk":0.07,"noAsk":0.94,"volume24h":19992.631487,"url":"https://polymarket.com/event/russia-x-ukraine-ceasefire-by-june-30-2026","category":"technology","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1171663","oneDayPriceChange":0,"endDate":"2026-06-30"},{"id":"polymarket-0x914923a0a6ee1214db3901eb05dd64c29e642135a08ef2d48b0fd88315ce8420","platform":"polymarket","title":"Will the price of Bitcoin be above $70,000 on April 22?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["bitcoin","btc","crypto","above","70000","april","22","be above","above 70000","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":19984.089229,"url":"https://polymarket.com/event/bitcoin-above-on-april-22","category":"crypto","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1992454","oneDayPriceChange":0.0405,"endDate":"2026-04-22"},{"id":"polymarket-0xd157caad577aa1ae3fde09f99a001500e79ddad72d8ebd8543ba5f29b18fb499","platform":"polymarket","title":"Will Elon Musk post 340-359 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","340-359","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":19971.622027,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1977009","oneDayPriceChange":-0.0095,"endDate":"2026-04-24"},{"id":"polymarket-0xb0041709dfdd0d8ae214fd1859b07c899ccd998522d82407e871d0028d792de5","platform":"polymarket","title":"Will Romania win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["romania","win","eurovision","2026","romania win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":19956.027723,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"842031","oneDayPriceChange":0.001,"endDate":"2026-05-16"},{"id":"polymarket-0xdbd54c361f268c418f280a66622569fe3e6dae67ca7c26af5481a7c12bc96641","platform":"polymarket","title":"Will the highest temperature in Miami be between 86-87°F on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Miami Intl Airport Station in degrees Fahrenheit on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Miami Intl Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/us/fl/miami/KMIA.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Fahrenheit (eg, 21°F). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","miami","between","86-87","april","20","resolve","range","contains","recorded","intl","airport","station","degrees"],"yesPrice":0.98,"noPrice":0.02,"yesAsk":0.98,"noAsk":0.02,"volume24h":19811.469996999982,"url":"https://polymarket.com/event/highest-temperature-in-miami-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"2011163","oneDayPriceChange":0.9415,"endDate":"2026-04-20"},{"id":"polymarket-0xd0536d9612e041312235baceac52bde48821e8aad4607533513b3782904b7d49","platform":"polymarket","title":"Will Geraldo Alckmin win the 2026 Brazilian presidential election?","description":"A presidential election is scheduled to take place in Brazil on October 4, 2026.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nThis market includes any potential second round. If the result of this election isn't known by June 30, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Brazilian government, specifically the Superior Electoral Court (Tribunal Superior Eleitoral, TSE) (e.g., https://dadosabertos.tse.jus.br/).","keywords":["geraldo","alckmin","win","2026","brazilian","presidential","election","alckmin win","win the","presidential election","scheduled","take","place","brazil","october","4","2026.","resolve"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":19802.95675,"url":"https://polymarket.com/event/brazil-presidential-election","category":"esports","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"601830","oneDayPriceChange":0,"endDate":"2026-10-04"},{"id":"polymarket-0xda1b8fb9630e1495cfd0c6fae52a9ffcbbe2701c5366c666b8ec5709f789485f","platform":"polymarket","title":"Will 80 ships transit the Strait of Hormuz on any day by April 30?","description":"This market will resolve to “Yes” if IMF Portwatch publishes a daily number of transit calls (“Arrivals of Ships”) for the Strait of Hormuz equal to or above the listed value for any date between market creation and April 30, 2026. Otherwise, this market will resolve to “No”.\n\nThe number of daily transit calls/arrivals includes container, dry bulk, roll-on/roll-off, general cargo, and tanker ships. Ships not reported by IMF Portwatch will not be considered.\n\nThis market will resolve as soon as IMF Portwatch publishes a daily number of transit calls equal to or above the specified level, or once data has been published for the final date in the specified period and no such value has been published. If no data has been published for the final date of the specified period within 14 calendar days (ET) after the end of that period, this market will resolve based on data published up to that point.\n\nRevisions to previously published data points, made within this market’s timeframe, will be considered. However, they will not disqualify a previously published data point from qualifying. Revisions to previously published data points after data is published for April 30, 2026, however, will not be considered.\n\nThe resolution source for this market will be IMF Portwatch, specifically the transit calls data published for the Strait of Hormuz at https://portwatch.imf.org/pages/cb5856222a5b4105adc6ee7e880a1730, both in the chart and through downloadable files.","keywords":["80","ships","transit","strait","hormuz","day","april","30","resolve","yes","imf","portwatch","publishes","daily","number","calls"],"yesPrice":0.3,"noPrice":0.7,"yesAsk":0.3,"noAsk":0.7,"volume24h":19728.155378000003,"url":"https://polymarket.com/event/will-ships-transit-the-strait-of-hormuz-on-any-day-by-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1705154","oneDayPriceChange":0.02,"endDate":"2026-04-30"},{"id":"polymarket-0xe22296145ee2a1415536e271bd38371e53d7577bcb446c5d61cb615c5ae282c6","platform":"polymarket","title":"Will the Philadelphia Eagles win the 2027 NFL league championship?","description":"This market will resolve according to the team that wins the 2027 NFL league championship. \n\nIf at any point it becomes impossible for a listed team to win the 2027 NFL league championship per the rules of the NFL (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2027 NFL league championship game is cancelled, postponed after March 31, 2027 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from NFL (https://www.nfl.com/); however, a consensus of credible reporting may also be used.","keywords":["philadelphia","eagles","nfl","super bowl","win","2027","football","league","championship","eagles win","win the","resolve","according","team","wins","championship.","point","becomes","impossible"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":19615.22573200001,"url":"https://polymarket.com/event/big-game-champion-2027","category":"sports","lastUpdated":"2026-04-20T19:49:46.066Z","numericId":"1357396","oneDayPriceChange":-0.0005,"endDate":"2027-03-31"},{"id":"polymarket-0x44af70916025f6ee9183cbdb77bcea14ee54e5534b0820d2df7934d1cadeb167","platform":"polymarket","title":"Predict.fun FDV above $400M one day after launch?","description":"This market will resolve to \"Yes\" if the Fully Diluted Valuation of Predict.fun's governance token is greater than the value specified in the title 1 day after launch. Otherwise, the market will resolve to \"No.\"\n\nThe token must be actively, publicly transferable and tradable to be considered a launch.\n\nThe FDV will be determined using the total token supply multiplied by the token price.\n\n\"1 day after launch\" is defined as 4:00 PM ET on the calendar day following launch. The resolution source for this market is the most liquid price source available. If Predict.fun (https://predict.fun/) doesn't launch a token by December 31, 2027, 11:59 PM ET, this market will resolve to \"No\".","keywords":["predict.fun","fdv","above","400m","one","day","after","launch","fdv above","above 400m","day after","after launch","resolve","yes","fully","diluted","valuation","predict.fun's","governance","token"],"yesPrice":0.4,"noPrice":0.6,"yesAsk":0.4,"noAsk":0.6,"volume24h":19579.567691,"url":"https://polymarket.com/event/predictfun-fdv-above-one-day-after-launch","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1393320","oneDayPriceChange":-0.02,"endDate":"2028-01-01"},{"id":"polymarket-0xe216b76886f3da9f66886fdb2c7ea5bc99f0d02b5e2891c54fc3f28e3701f659","platform":"polymarket","title":"Will the highest temperature in Seoul be 18°C or higher on April 21?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Incheon Intl Airport Station in degrees Celsius on 21 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Incheon Intl Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/kr/incheon/RKSI.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","seoul","18","higher","april","21","resolve","range","contains","recorded","incheon","intl","airport","station"],"yesPrice":0.28,"noPrice":0.72,"yesAsk":0.28,"noAsk":0.72,"volume24h":19516.923582999934,"url":"https://polymarket.com/event/highest-temperature-in-seoul-on-april-21-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"2019164","oneDayPriceChange":0.06,"endDate":"2026-04-21"},{"id":"polymarket-0x8f77f96697dea0909edb2946e0eb866c08e9c2280964e70b1e5f25fcc0a747d0","platform":"polymarket","title":"Will Mohammed bin Salman win the Nobel Peace Prize in 2026?","description":"This market will resolve according to the winner of the 2026 Nobel Peace Prize, as announced by the Norwegian Nobel Committee.\n\nIf multiple listed individuals or entities jointly receive the prize, the market will resolve to a single winner. If Donald Trump, Volodymyr Zelenskyy, Benjamin Netanyahu, Vladimir Putin, or Elon Musk are among the recipients, the market will resolve to the highest-ranked among them in that exact order of precedence. If none of those five are among the winners and the prize is awarded jointly to at least one listed individual and at least one listed organization, the market will resolve in favor of the individual. If no prioritized individuals are among the winners and all listed recipients are of the same type (all individuals or all organizations), the market will resolve to the person whose last name, or the entity’s name, comes first in alphabetical order as listed in this market.\n\nIf no official announcement regarding the 2026 Nobel Peace Prize has been made by March 31, 2027, 11:59 PM ET, this market will resolve to \"Other.\"\n\nThe resolution source for this market will be the first official announcement from the Norwegian Nobel Committee.","keywords":["mohammed","bin","salman","win","nobel","peace","prize","2026","salman win","win the","resolve","according","winner","announced","norwegian","committee.","multiple","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":19460.179927999998,"url":"https://polymarket.com/event/nobel-peace-prize-winner-2026-139","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"637020","oneDayPriceChange":-0.0025,"endDate":"2026-10-10"},{"id":"polymarket-0xdd3d104667774208eae2239f576122ecdd1c04ba81cc14d26d22a36b33887977","platform":"polymarket","title":"Will Fernando Haddad win the 2026 Brazilian presidential election?","description":"A presidential election is scheduled to take place in Brazil on October 4, 2026.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nThis market includes any potential second round. If the result of this election isn't known by June 30, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Brazilian government, specifically the Superior Electoral Court (Tribunal Superior Eleitoral, TSE) (e.g., https://dadosabertos.tse.jus.br/).","keywords":["fernando","haddad","win","2026","brazilian","presidential","election","haddad win","win the","presidential election","scheduled","take","place","brazil","october","4","2026.","resolve"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":19426.510856000004,"url":"https://polymarket.com/event/brazil-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"601821","oneDayPriceChange":0.001,"endDate":"2026-10-04"},{"id":"polymarket-0x757c144993b3cb831e04c42bfcff8c18864c7da4f4688a5939d2f62e031cbc87","platform":"polymarket","title":"Will 10 Fed rate cuts happen in 2026?","description":"This market will resolve according to the exact amount of cuts of 25 basis points in 2026 by the Fed (including any cuts made during the December meeting).\n\nEmergency rate cuts outside of scheduled FOMC meetings will also count toward the total number of cuts in 2026. This market will remain open until December 31, 2026, 11:59 PM ET, to account for any such emergency actions.\n\nFor example, if the Fed cuts rates by 50 bps after a meeting, it would be considered 2 cuts (of 25 bps each).\n\nThis market will resolve early to \"No\" if the specified number of cuts becomes impossible — i.e., if more cuts have already occurred than the strike in question.\n\nNote that cuts between 1–24 bps (inclusive) will also be considered 1 rate cut.\n\nThe resolution source for this market will be FOMC statements after meetings scheduled in 2026 according to the official calendar: https://www.federalreserve.gov/monetarypolicy/fomccalendars.htm. The level and change of the target federal funds rate is also published at the official website of the Federal Reserve at https://www.federalreserve.gov/monetarypolicy/openmarket.htm.","keywords":["10","fed","federal reserve","fomc","interest rates","rate","cuts","happen","2026","resolve","according","exact","amount","25","basis","points","including"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":19399.12275000001,"url":"https://polymarket.com/event/how-many-fed-rate-cuts-in-2026","category":"economics","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"616912","oneDayPriceChange":0,"endDate":"2026-12-31"},{"id":"polymarket-0xfdc1041ba84bfd8f741eee0bdafce8b1887626c83afd017d18ee9b1f77008b9f","platform":"polymarket","title":"Will the Utah Mammoth win the 2026 NHL Stanley Cup?","description":"This market will resolve to “Yes” if the Utah Mammoth win the 2026 NHL Stanley Cup. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NHL Stanley Cup based off the rules of the NHL.\n\nThe resolution source for this market will be information from the NHL.\n","keywords":["utah","mammoth","win","2026","nhl","hockey","stanley","cup","mammoth win","win the","resolve","yes","cup.","otherwise","no","becomes","impossible","team"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":19398.971237,"url":"https://polymarket.com/event/2026-nhl-stanley-cup-champion","category":"sports","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"553839","oneDayPriceChange":-0.0075,"endDate":"2026-06-30"},{"id":"polymarket-0x7aa6ecf3de5537b7822a0d6041b713ecc4d8b5c9f58449e16509c8af43db86ef","platform":"polymarket","title":"Will Steve Witkoff have a diplomatic meeting with Iran by April 30?","description":"This market will resolve to \"Yes\" if there is a diplomatic meeting between the listed individual, acting as a representative of the United States, and representatives of Iran by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nTo qualify, the listed individual must be physically present at the meeting and actively participate as a negotiator representing the United States.\n\nA diplomatic meeting refers to a deliberate meeting between representatives of the listed countries who are acting in an official capacity and are authorized to engage in negotiation or diplomacy regarding US-Iranian relations on behalf of their governments. Meetings conducted indirectly, for example, through designated mediators, facilitators, or interlocutors acting with the knowledge and authorization of the relevant governments, will qualify.\n\nBrief greetings, chance encounters, or talks otherwise not deliberately aimed at diplomacy or negotiation will not count.\n\nThe meeting must be in-person and must be publicly acknowledged by either government or reported by a consensus of credible media. Remote meetings, phone calls, or other meetings where the relevant parties are not present will not count.\n\nThe primary resolution source for this market will be official information from the listed individual and the governments of the United States and Iran; however, a consensus of credible reporting will also be used.","keywords":["steve","witkoff","diplomatic","meeting","iran","nuclear","sanctions","middle east","april","30","resolve","yes","there","between","listed","individual","acting","representative"],"yesPrice":0.87,"noPrice":0.13,"yesAsk":0.87,"noAsk":0.13,"volume24h":19362.89627299999,"url":"https://polymarket.com/event/who-will-meet-with-iran-by-april-30","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1986541","oneDayPriceChange":0.095,"endDate":"2026-04-30"},{"id":"polymarket-0x2a87a8c9a1b0177836d3be9f531440385ad00761c3a83222fad81c1f33221a30","platform":"polymarket","title":"Will Elon Musk post 260-279 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","260-279","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.13,"noPrice":0.88,"yesAsk":0.13,"noAsk":0.88,"volume24h":19356.714233,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1977003","oneDayPriceChange":-0.05,"endDate":"2026-04-24"},{"id":"polymarket-0xf469a6cae3b6a66e307eff2f54aa2f1c11e6966482aa4acc923cba1b36754491","platform":"polymarket","title":"Will Elon Musk post 80-99 tweets from April 21 to April 28, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 21 12:00 PM ET to April 28, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","80-99","tweets","april","21","28","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":19352.316,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-21-april-28","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"2010947","oneDayPriceChange":0.001,"endDate":"2026-04-28"},{"id":"polymarket-0x858123ef616e0bce0b80f8aa4c967ab91bd6da094cd217f53294356d3461c6bb","platform":"polymarket","title":"Israel military action against Fordow nuclear facility by April 30?","description":"This market will resolve to “Yes” if Israel carries out a kinetic military strike against the Fordow Fuel Enrichment Plant in Iran between the time of market creation and the listed date, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nThis includes, but is not limited to, drone and missile strikes, aerial bombings, and kinetic actions carried out by Israeli operatives on the ground. Cyber attacks, sanctions, or diplomatic actions will not count toward the resolution of this market.\n\nIsraeli air, missile, or drone strikes that are intercepted, shot down, or miss their target will not be considered for this market.\n\nThe resolution source for this market will be a consensus of credible reporting.","keywords":["israel","gaza","hamas","middle east","military","action","against","fordow","nuclear","facility","april","30","resolve","yes","carries","out","kinetic","strike","fuel","enrichment"],"yesPrice":0.07,"noPrice":0.93,"yesAsk":0.07,"noAsk":0.93,"volume24h":19258.215906,"url":"https://polymarket.com/event/israel-military-action-against-fordow-nuclear-facility-by","category":"technology","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1707878","oneDayPriceChange":-0.007,"endDate":"2026-04-30"},{"id":"polymarket-0x9049d96597900ba0f3013604dc7adc3dd6e7e4764c5a0c16318605c40ac1ee96","platform":"polymarket","title":"Israeli forces cross the Litani River by June 30?","description":"This market will resolve to “Yes” if Israeli military personnel cross the Litani River in Lebanon by June 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\n“Israeli military personnel” refers to members of the Israel Defense Forces (IDF) or any other official military units acting under the authority of the State of Israel. Intelligence or other non-military personnel will not count.\n\nA “crossing” will be considered to have occurred if Israeli military personnel are confirmed to have physically traversed the Litani River in Lebanon at any point, including but not limited to by bridge, boat, swimming, wading, or temporary or permanent crossing.\n\nAerial insertion, parachute drops, helicopter landings, or other forms of aerial infiltration that do not involve Israeli military personnel physically traversing the Litani River will not qualify.\n\nMere presence on one bank of the Litani River, without confirmation that Israeli military personnel traversed the river to the opposite bank, will not qualify.\n\nThe primary resolution source will be a consensus of credible reporting.","keywords":["israeli","forces","cross","litani","river","june","30","resolve","yes","military","personnel","lebanon","2026","11","59"],"yesPrice":0.37,"noPrice":0.63,"yesAsk":0.37,"noAsk":0.63,"volume24h":19231.811393999997,"url":"https://polymarket.com/event/israeli-forces-cross-the-litani-river-by-june-30","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1633619","oneDayPriceChange":-0.19,"endDate":"2026-06-30"},{"id":"polymarket-0x5f5bb674f7976e7357d14b6e6798e8353f9aef40cb59cda1cb1a0c13d86ba2b9","platform":"polymarket","title":"Will Daniil Medvedev win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["daniil","medvedev","win","2026","men's","french","open","medvedev win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":19206.973618999997,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1087530","oneDayPriceChange":-0.0015,"endDate":"2026-06-07"},{"id":"polymarket-0x50eaeeaa509d447b44c91b96894575ee4e4fd0a8beb5968b29db6e980f7fee96","platform":"polymarket","title":"Will the highest temperature in Hong Kong be 29°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded by the Hong Kong Observatory in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from the Hong Kong Observatory, specifically the \"Absolute Daily Max (deg. C)\" the specified date once information is finalized in the relevant \"Daily Extract\", available here: https://www.weather.gov.hk/en/cis/climat.htm\n\nThis market can not resolve to \"Yes\" until data for this date has been finalized.\n\nThe resolution source for this market measures temperatures in Celsius to one decimal place (eg, 9.1°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","hong","kong","29","april","20","resolve","range","contains","recorded","observatory","degrees","celsius","apr"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":19175.349299999998,"url":"https://polymarket.com/event/highest-temperature-in-hong-kong-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"2011252","oneDayPriceChange":-0.2645,"endDate":"2026-04-20"},{"id":"polymarket-0x16c63b7cc37f012b9f59ee164ec03877914c701d06d48291ae8d6fc08a088b0d","platform":"polymarket","title":"2026 Balance of Power: D Senate, D House","description":"This market will resolve according to the result of the 2026 United States midterm elections.\n\nA party will be considered to have 'control' of the House of Representatives, if they win a majority of voting seats.\n\nA party will be considered to have 'control' of the Senate if they have more than half of the voting Senate members, or half of the voting Senate members and the Vice President.\n\nA candidate's party is determined by their ballot-listed or otherwise identifiable affiliation with that party at the time the 2026 United States midterm elections are conclusively called by this market's resolution sources. A candidate without a ballot-listed affiliation to either the Democrat or Republican Parties will be considered a member of one of these parties based on the party that they most recently expressed their intent to caucus with at the time the 2026 United States midterm elections are conclusively called by this market's resolution sources.\n\nIf control of the House is ambiguous given the above rules, this market will resolve according to the party affiliation of the first Speaker of the US House who is selected following the 2026 United States midterm elections. \n\nIf control of the Senate is ambiguous given the above rules, this market will resolve according to the party affiliation of the first Majority Leader of the US Senate who is selected following the 2026 United States midterm elections.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources have conclusively called winners of the House and Senate in the 2026 United States midterm elections. If all three sources do not achieve consensus in calling the relevant races for this market, it will resolve based on the official certification.","keywords":["2026","balance","power","senate","congress","legislation","house","house of representatives","resolve","according","result","united","states","midterm","elections.","party"],"yesPrice":0.52,"noPrice":0.48,"yesAsk":0.52,"noAsk":0.48,"volume24h":19029.46762499999,"url":"https://polymarket.com/event/balance-of-power-2026-midterms","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"562828","oneDayPriceChange":0,"endDate":"2026-11-03"},{"id":"polymarket-0xd39a8e6673f0df07c6fc22d9dbeaf6a8b156b75d4f76ca1725156a38abc655ac","platform":"polymarket","title":"Will Elon Musk post 380-399 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","380-399","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":18909.555143,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1977011","oneDayPriceChange":-0.0055,"endDate":"2026-04-24"},{"id":"polymarket-0x065d03a309ea1ef17d7343d31bc3e3e69a2b3cc5671274e4cf4773cb86d02507","platform":"polymarket","title":"Will the highest temperature in London be 14°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the London City Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the London City Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/gb/london/EGLC.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","london","14","april","20","resolve","range","contains","recorded","city","airport","station","degrees"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":18882.72680300001,"url":"https://polymarket.com/event/highest-temperature-in-london-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"2011052","oneDayPriceChange":-0.3145,"endDate":"2026-04-20"},{"id":"polymarket-0x89389a6b1439856a8d366234c795d72865c927a1aa3cf9d4cc04a3a400defde1","platform":"polymarket","title":"Will the Vegas Golden Knights win the 2026 NHL Stanley Cup?","description":"This market will resolve to “Yes” if the Vegas Golden Knights win the 2026 NHL Stanley Cup. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NHL Stanley Cup based off the rules of the NHL.\n\nThe resolution source for this market will be information from the NHL.\n","keywords":["vegas","golden","knights","win","2026","nhl","hockey","stanley","cup","knights win","win the","resolve","yes","cup.","otherwise","no","becomes","impossible","team"],"yesPrice":0.06,"noPrice":0.94,"yesAsk":0.06,"noAsk":0.94,"volume24h":18814.688620000004,"url":"https://polymarket.com/event/2026-nhl-stanley-cup-champion","category":"sports","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"553829","oneDayPriceChange":0,"endDate":"2026-06-30"},{"id":"polymarket-0xd70618488dccc0e829e236a7212014752d9981c44f723295648c7fa63c22a1c3","platform":"polymarket","title":"Will Stefanos Tsitsipas win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["stefanos","tsitsipas","win","2026","men's","french","open","tsitsipas win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":18805.130913999998,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1087522","oneDayPriceChange":-0.001,"endDate":"2026-06-07"},{"id":"polymarket-0x05297f854d3b757d5e51a1a29c7f225a80b14b2a161d6b7f9a61677da7a80ced","platform":"polymarket","title":"Will Renan Santos win the 2026 Brazilian presidential election?","description":"A presidential election is scheduled to take place in Brazil on October 4, 2026.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nThis market includes any potential second round. If the result of this election isn't known by June 30, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Brazilian government, specifically the Superior Electoral Court (Tribunal Superior Eleitoral, TSE) (e.g., https://dadosabertos.tse.jus.br/).","keywords":["renan","santos","win","2026","brazilian","presidential","election","santos win","win the","presidential election","scheduled","take","place","brazil","october","4","2026.","resolve"],"yesPrice":0.06,"noPrice":0.94,"yesAsk":0.06,"noAsk":0.94,"volume24h":18565.824393999996,"url":"https://polymarket.com/event/brazil-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"601825","oneDayPriceChange":0.002,"endDate":"2026-10-04"},{"id":"polymarket-0x638fbab43243bd281ab803a12fc6c1204d743ce459354b26bbc2d09444b4ff3f","platform":"polymarket","title":"Will Elon Musk post 280-299 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","280-299","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.09,"noPrice":0.92,"yesAsk":0.09,"noAsk":0.92,"volume24h":18502.579245999994,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1977005","oneDayPriceChange":-0.05,"endDate":"2026-04-24"},{"id":"polymarket-0xdd280ab639d5526590adf607a3229704e5dac14e011da8c1020ed9743cbe325d","platform":"polymarket","title":"Will CA Belgrano win on 2026-04-20?","description":"In the upcoming game, scheduled for April 20, 2026\nIf CA Belgrano wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["belgrano","win","2026-04-20","belgrano win","win on","upcoming","game","scheduled","april","20","2026","wins","resolve"],"yesPrice":0.08,"noPrice":0.92,"yesAsk":0.08,"noAsk":0.92,"volume24h":18397.319253,"url":"https://polymarket.com/event/arg-bar-bel-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1744777","oneDayPriceChange":-0.335,"endDate":"2026-04-20"},{"id":"polymarket-0x052060aec2007cd5f09868dc248c878384ae28977287581dfefb1d9f154d344f","platform":"polymarket","title":"Will Keldon Johnson win the 2025–2026 NBA Sixth Man of the Year?","description":"This market will resolve according to the player who is awarded the 2025–26 NBA Sixth Man of the Year.\n\nIf the listed player is not announced as a finalist for the 2025–26 Sixth Man of the Year, this market will resolve to \"No\".\n\nThe primary resolution source for this market will be official information from the NBA. However, a consensus of credible reporting may also be used.","keywords":["keldon","johnson","win","2025","2026","nba","basketball","sixth","man","year","johnson win","win the","resolve","according","player","awarded","26","year.","listed","not"],"yesPrice":0.89,"noPrice":0.11,"yesAsk":0.89,"noAsk":0.11,"volume24h":18302.134569,"url":"https://polymarket.com/event/nba-2025-26-sixth-man-of-the-year","category":"sports","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"643634","oneDayPriceChange":0.0135,"endDate":"2026-06-30"},{"id":"polymarket-0xedd6c9ec70b42535f2f611a4e834447002e7d08210cb962ae15fde991c592090","platform":"polymarket","title":"Will Taylor Fritz win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["taylor","fritz","win","2026","men's","french","open","fritz win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":18281.066165999997,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1087523","oneDayPriceChange":-0.0025,"endDate":"2026-06-07"},{"id":"polymarket-0xc6ddb19f848ac363330d0a690cfe6818d4c51e837161a41d42675eda27767ed0","platform":"polymarket","title":"Will Finland win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["finland","win","eurovision","2026","finland win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.37,"noPrice":0.63,"yesAsk":0.37,"noAsk":0.63,"volume24h":18043.792125999997,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"842015","oneDayPriceChange":-0.0015,"endDate":"2026-05-16"},{"id":"polymarket-0x2fc1e1bcf0aed6eebd7056480133ebea59d0c8666bd07f2498c14bf958f700ae","platform":"polymarket","title":"Will Michelle Bowman be confirmed as Fed Chair?","description":"This market will resolve according to the next individual formally confirmed as Chair of the Federal Reserve.\n\nFormal confirmation as Chair of the Federal Reserve requires the Senate to confirm a nominee as Chair of the Federal Reserve. Recess appointments without Senate confirmation will not count. Senate confirmation of a listed individual as a member of the Federal Reserve Board of Governors will not alone qualify.\n\nIf no Senate confirmation for the position of Chair of the Federal Reserve has occurred by December 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThe primary resolution source for this market is official information from the U.S. Senate; however, a consensus of credible reporting may also be used.","keywords":["michelle","bowman","confirmed","fed","federal reserve","fomc","interest rates","chair","resolve","according","next","individual","formally","federal","reserve.","formal"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":18027.63269,"url":"https://polymarket.com/event/who-will-be-confirmed-as-fed-chair","category":"economics","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1500770","oneDayPriceChange":0.0005,"endDate":"2026-10-31"},{"id":"polymarket-0xa3e0c001e8a9f526819807fd53091e6f24034f695342778d83c2effe0846d7dc","platform":"polymarket","title":"Will CA Barracas Central vs. CA Belgrano end in a draw?","description":"In the upcoming game, scheduled for April 20, 2026\nIf the game ends in a draw, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve to \"Yes\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["barracas","central","vs.","belgrano","end","draw","upcoming","game","scheduled","april","20","2026","ends","resolve"],"yesPrice":0.8,"noPrice":0.2,"yesAsk":0.8,"noAsk":0.2,"volume24h":18018.24780100001,"url":"https://polymarket.com/event/arg-bar-bel-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1744776","oneDayPriceChange":0.485,"endDate":"2026-04-20"},{"id":"polymarket-0xb611b3a7173f69e412b55561ed265d849e36693c248ff620d0e981c5b3f2e325","platform":"polymarket","title":"Will Abelardo de la Espriella win the 1st round of the 2026 Colombian presidential election?","description":"Colombia's presidential elections are scheduled for May 31, 2026, and a second round (if required) on June 21, 2026, in case no candidate secures more than 50% of the valid votes in the first round.\n\nThis market will resolve according to the candidate who receives the greatest number of valid votes in the first round of voting.\n\nIf the results of the first round of the Colombian presidential election are not known by December 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["abelardo","espriella","win","1st","round","2026","colombian","presidential","election","espriella win","win the","presidential election","colombia's","elections","scheduled","31","second","required","june","21"],"yesPrice":0.1,"noPrice":0.9,"yesAsk":0.1,"noAsk":0.9,"volume24h":17980.736684,"url":"https://polymarket.com/event/colombia-presidential-election-1st-round-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"569344","oneDayPriceChange":0.059,"endDate":"2026-05-31"},{"id":"polymarket-0xd94b47bdeba16ae948bfb147bda059f3543d6fca73291644dfff5268bba7a797","platform":"polymarket","title":"Will Tucker Carlson win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["tucker","carlson","win","2028","presidential","election","carlson win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":17960.567367,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"561253","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xadead580ed2e2961c9a7a3cb9db78daf96faf94bdc00a82ec217cfd6bf341bf0","platform":"polymarket","title":"Will the DHS shutdown end after April 30, 2026?","description":"This market will resolve to the calendar date range (ET) of the end date of the Department of Homeland Security shutdown which began on February 14, 2026.\n\nThe end date of the shutdown will be determined by the date on which the funding bill required to reopen the Department of Homeland Security is signed by the President or otherwise enacted. The announcement of an impending reopen will not qualify.\n\nThe resolution sources for this market will be information from official U.S. Government sources and a consensus of credible reporting.","keywords":["dhs","shutdown","end","after","april","30","2026","end after","after april","resolve","calendar","date","range","department","homeland","security","which"],"yesPrice":0.7,"noPrice":0.3,"yesAsk":0.7,"noAsk":0.3,"volume24h":17920.496122,"url":"https://polymarket.com/event/when-will-the-dhs-shutdown-end-521","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1723674","oneDayPriceChange":-0.1535,"endDate":"2026-04-30"},{"id":"polymarket-0xc92f1ff9932410a4d9896ec3b2854311dab2170acc07a6be1ee612af03f6eb51","platform":"polymarket","title":"Will Reilly Opelka win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["reilly","opelka","win","2026","men's","french","open","opelka win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17909.405999999995,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1087536","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0x9b4b14a0bb1c004de148cd2bd483b4124e1598b030af072d4265dad26880967b","platform":"polymarket","title":"Will Denis Shapovalov win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["denis","shapovalov","win","2026","men's","french","open","shapovalov win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17895.205329999997,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1087548","oneDayPriceChange":-0.001,"endDate":"2026-06-07"},{"id":"polymarket-0x0a43b74be16caef0ab4543343cf854abbe5321f0517b29437f56c9da2d96fa60","platform":"polymarket","title":"Will Israel strike 11 countries in 2026?","description":"This market will resolve according to the total number of different countries' soil that Israel initiates a drone, missile, or air strike between January 1, 2026, 12:00 AM ET and December 31, 2026, 11:59 PM ET.\n\nStrikes on embassies or consulates will count towards the country the embassy or consulate is located in, not towards the country they represent.\n\nStrikes within the territory controlled by Israel as of December 31, 2025, 11:59 PM ET, as well as strikes within the West Bank or the Gaza Strip, will not be counted towards this market's resolution.\n\nFor the purposes of this market, a qualifying \"strike\" is defined as the use of aerial bombs, drones, or missiles (including cruise or ballistic missiles) launched by Israeli military forces that impact another country's ground territory that is officially acknowledged by the Israeli government or a consensus of credible reporting.\n\nMissiles or drones that are intercepted and surface-to-air missile strikes will not count towards the resolution of this market, regardless of whether they land on another country's territory or cause damage.\n\nActions such as artillery fire, small arms fire, FPV or ATGM strikes directly, ground incursions, naval shelling, cyberattacks, or other operations conducted by Israeli ground operatives will not qualify.\n\nThe resolution source will be a consensus of credible reporting.","keywords":["israel","gaza","hamas","middle east","strike","11","countries","2026","resolve","according","total","number","different","countries'","soil","initiates"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17826.1,"url":"https://polymarket.com/event/how-many-different-countries-will-israel-strike-in-2026","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"678754","oneDayPriceChange":0.0035,"endDate":"2026-12-31"},{"id":"polymarket-0x4786c0fc83466a567a3269de1ae6fd8270b93cff2c952dd4c63a3f483853a175","platform":"polymarket","title":"Will Alex De Minaur win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["alex","minaur","win","2026","men's","french","open","minaur win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17738.973582999995,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"1087531","oneDayPriceChange":-0.0005,"endDate":"2026-06-07"},{"id":"polymarket-0x337ed4a919995ef9ba9d705b319055633a5dfdcb3ab97cf610009a7d11a9ade4","platform":"polymarket","title":"Bitcoin all time high by June 30, 2026?","description":"This market will resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT between 16 December '25 10:30 and 11:59PM ET on the date specified in the title has a final “High” price that is higher than any previous Binance 1 minute candle's \"High\" price on any prior date. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"High\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with “1m” and “Candles” selected on the top bar.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other sources or spot markets.","keywords":["bitcoin","btc","crypto","time","high","june","30","2026","all time high","stocks","ath","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":17687.193397,"url":"https://polymarket.com/event/bitcoin-all-time-high-by","category":"crypto","lastUpdated":"2026-04-20T19:49:46.067Z","numericId":"948956","oneDayPriceChange":0.0065,"endDate":"2026-07-01"},{"id":"polymarket-0x9f431a4ef1f4640342a56daff029211ed276587b00f738e9afd01b90714127ee","platform":"polymarket","title":"Will Tesla be the second-largest company in the world by market cap on April 30?","description":"This market will resolve to the second-largest company in the world by market cap on April 30, 2026, as of market close.\n\nThe resolution source for this market will be a consensus of credible reporting.","keywords":["tesla","ev","electric vehicle","elon musk","second-largest","company","world","cap","april","30","resolve","2026","close.","resolution","source","consensus","credible","reporting."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17671.467,"url":"https://polymarket.com/event/2nd-largest-company-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:46.068Z","numericId":"1663420","oneDayPriceChange":0,"endDate":"2026-04-30"},{"id":"polymarket-0x0737c07451043c7ed08cc8aaaeb950975a1e13e3bc359ef8c26c7961690bbea9","platform":"polymarket","title":"Another 7.0 or above earthquake by April 30, 2026?","description":"This market will resolve to “Yes” if one or more earthquakes with a magnitude of 7.0 or higher occur anywhere on Earth between market creation and the listed date ET. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market is the United States Geological Survey (USGS) Earthquake Hazards Program (https://earthquake.usgs.gov/earthquakes/browse/significant.php#sigdef).\n\nIf an earthquake of substantial size has occurred within this market's timeframe but not yet appeared on the resolution source, this market may remain open until the end of the month following resolution time or until the earthquake in question otherwise appears on the resolution source. If such an earthquake has not appeared on the resolution source by that date, another credible resolution source will be used. \n\nAfter a qualifying earthquake is registered, this market will remain open for 24 hours to account for any revisions to its recorded magnitude. After 24 hours, this market will resolve according to the latest provided data.","keywords":["7.0","above","earthquake","april","30","2026","or above","above earthquake","resolve","yes","one","more","earthquakes","magnitude","higher","occur"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":17650.447428000003,"url":"https://polymarket.com/event/another-7pt0-or-above-earthquake-by-553","category":"other","lastUpdated":"2026-04-20T19:49:46.068Z","numericId":"1829475","oneDayPriceChange":0.634,"endDate":"2026-04-30"},{"id":"polymarket-0x2baed9d4160afbaf16209d5e2d309393904cd4815b1db17c27630bb34637cd13","platform":"polymarket","title":"Will Denmark win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["denmark","win","eurovision","2026","denmark win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.1,"noPrice":0.9,"yesAsk":0.1,"noAsk":0.9,"volume24h":17639.868334,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.068Z","numericId":"842013","oneDayPriceChange":-0.0025,"endDate":"2026-05-16"},{"id":"polymarket-0x93b5539ee77e3f77a6abc70879316cdfdcc4b1051d7d2cac146ab425912a748c","platform":"polymarket","title":"Will the highest temperature in Hong Kong be 30°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded by the Hong Kong Observatory in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from the Hong Kong Observatory, specifically the \"Absolute Daily Max (deg. C)\" the specified date once information is finalized in the relevant \"Daily Extract\", available here: https://www.weather.gov.hk/en/cis/climat.htm\n\nThis market can not resolve to \"Yes\" until data for this date has been finalized.\n\nThe resolution source for this market measures temperatures in Celsius to one decimal place (eg, 9.1°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","hong","kong","30","april","20","resolve","range","contains","recorded","observatory","degrees","celsius","apr"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17576.060153000006,"url":"https://polymarket.com/event/highest-temperature-in-hong-kong-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.068Z","numericId":"2011253","oneDayPriceChange":-0.024,"endDate":"2026-04-20"},{"id":"polymarket-0x9d6860c41e0d5f8342aaefb1afa26c063f66a82b92f56457e49fe39a22a790b5","platform":"polymarket","title":"Will Elon Musk post 220-239 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","220-239","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.23,"noPrice":0.78,"yesAsk":0.23,"noAsk":0.78,"volume24h":17564.898456999992,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:46.068Z","numericId":"1976999","oneDayPriceChange":0.05,"endDate":"2026-04-24"},{"id":"polymarket-0xc0336e4897d2d044c0bcc234f72248ef7db97dca69f0caf1666a67ca55034b65","platform":"polymarket","title":"MegaETH market cap (FDV) >$800M one day after launch?","description":"This market will resolve to \"Yes\" if the Fully Diluted Valuation of MegaETH's token is greater than the value specified in the title 1 day after launch. Otherwise, the market will resolve to \"No.\"\n\nFor the purposes of this market \"locked\" tokens or non-swappable tokens will not be considered a launch.\n\n\"1 day after launch\" is defined as 24 hours after launch. The resolution source for this market is the most liquid price source available. If MegaETH doesn't launch a token by June 30, 2026, 11:59 PM ET, this market will resolve to \"No.\"","keywords":["megaeth","cap","fdv","800m","one","day","after","launch","day after","after launch","resolve","yes","fully","diluted","valuation","megaeth's","token","greater"],"yesPrice":0.69,"noPrice":0.31,"yesAsk":0.69,"noAsk":0.31,"volume24h":17561.65015,"url":"https://polymarket.com/event/megaeth-market-cap-fdv-one-day-after-launch","category":"crypto","lastUpdated":"2026-04-20T19:49:46.068Z","numericId":"1373744","oneDayPriceChange":-0.05,"endDate":"2026-07-01"},{"id":"polymarket-0x57d7e3079959e88acc3f74ecf7e2bbc739d1b523230c208a6396f04a350565e2","platform":"polymarket","title":"Will Elon Musk post 540-559 tweets from April 21 to April 28, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 21 12:00 PM ET to April 28, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","540-559","tweets","april","21","28","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17560.91,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-21-april-28","category":"other","lastUpdated":"2026-04-20T19:49:46.068Z","numericId":"2010995","oneDayPriceChange":0,"endDate":"2026-04-28"},{"id":"polymarket-0x45d819d9d731db09185dcd4d60522c46485a205eea4dcf3443515e91c8e63ac4","platform":"polymarket","title":"Will Tommy Paul win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["tommy","paul","win","2026","men's","french","open","paul win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17550.058332999997,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.068Z","numericId":"1087534","oneDayPriceChange":-0.001,"endDate":"2026-06-07"},{"id":"polymarket-0x2cefe6009ea518f77b8a82714e54c0af1d0f25e99b37d4861f4a5d3ebbf142d3","platform":"polymarket","title":"Will Lewis Hamilton be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["lewis","hamilton","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":17459.673736999994,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:46.068Z","numericId":"898416","oneDayPriceChange":-0.001,"endDate":"2026-12-06"},{"id":"polymarket-0xe0711866c51f7d0c43284f43e3ae34125e462e909e16bf685718df7610e6a1e7","platform":"polymarket","title":"Will Charles Leclerc be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["charles","leclerc","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.07,"noPrice":0.93,"yesAsk":0.07,"noAsk":0.93,"volume24h":17432.884467,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:46.068Z","numericId":"898415","oneDayPriceChange":0.013,"endDate":"2026-12-06"},{"id":"polymarket-0xd66cbb60c333c2eed61717370755c18bc7e494fed90cb507cd9b49c77100951d","platform":"polymarket","title":"Will the Philadelphia Flyers win the 2026 NHL Stanley Cup?","description":"This market will resolve to “Yes” if the Philadelphia Flyers win the 2026 NHL Stanley Cup. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NHL Stanley Cup based off the rules of the NHL.\n\nThe resolution source for this market will be information from the NHL.\n","keywords":["philadelphia","flyers","win","2026","nhl","hockey","stanley","cup","flyers win","win the","resolve","yes","cup.","otherwise","no","becomes","impossible","team"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":17381.392785999997,"url":"https://polymarket.com/event/2026-nhl-stanley-cup-champion","category":"sports","lastUpdated":"2026-04-20T19:49:46.068Z","numericId":"553843","oneDayPriceChange":0.0035,"endDate":"2026-06-30"},{"id":"polymarket-0xab49880e8d552ac2fc29974cf748aa768b861fe67815c6808f1cabfbf88941d3","platform":"polymarket","title":"Will Shanghai Haigang FC win on 2026-04-21?","description":"In the upcoming game, scheduled for April 21, 2026\nIf Shanghai Haigang FC wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["shanghai","haigang","win","2026-04-21","fc win","win on","upcoming","game","scheduled","april","21","2026","wins","resolve"],"yesPrice":0.51,"noPrice":0.49,"yesAsk":0.51,"noAsk":0.49,"volume24h":17326.536646000008,"url":"https://polymarket.com/event/chi-shp-ton-2026-04-21","category":"technology","lastUpdated":"2026-04-20T19:49:46.212Z","numericId":"1708537","oneDayPriceChange":-0.07,"endDate":"2026-04-21"},{"id":"polymarket-0xcb28e7ed7a225cfe6aa41020814bcc42a0ff0ece4bd4d8e77e28dfcbe32e3cab","platform":"polymarket","title":"Will the price of Ethereum be above $2,400 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for ETH/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the ETH/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/ETH_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance ETH/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["ethereum","eth","crypto","above","2400","april","21","be above","above 2400","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.14,"noPrice":0.85,"yesAsk":0.14,"noAsk":0.85,"volume24h":17320.527583000006,"url":"https://polymarket.com/event/ethereum-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:46.212Z","numericId":"1981772","oneDayPriceChange":-0.03,"endDate":"2026-04-21"},{"id":"polymarket-0x44535cb1ef2944aa2544a4f3e9becc887c849db6a8ec803c99770dcef038457f","platform":"polymarket","title":"Will Donald Trump post 160-179 Truth Social posts from April 14 to April 21, 2026?","description":"This market will resolve according to the number of times Donald Trump (@realDonaldTrump), posts on Truth Social between April 14, 12:00 PM ET and April 21, 2026, 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies which are recorded on the main feed will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nThe resolution source for this market is the \"Post Counter\" figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, Truth Social itself may be used as a secondary resolution source.","keywords":["donald","trump","president","potus","administration","gop","republican","post","160-179","truth","social","posts","april","14","21","2026","donald trump","resolve","according","number","times","realdonaldtrump","between","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17312.243901000013,"url":"https://polymarket.com/event/donald-trump-of-truth-social-posts-april-14-april-21","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.212Z","numericId":"1943684","oneDayPriceChange":-0.024,"endDate":"2026-04-21"},{"id":"polymarket-0x9cd77217b2ab264fe4f6d302f662c0a91f349fe5798f1f98d70bb2311712791b","platform":"polymarket","title":"Will Tulsi Gabbard win the 2028 Republican presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Republican Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Republican Party sources.\n\nAny replacement of the Republican nominee before election day will not change the resolution of the market.","keywords":["tulsi","gabbard","win","2028","republican","presidential","nomination","gabbard win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17262.502559,"url":"https://polymarket.com/event/republican-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.212Z","numericId":"561976","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xc8368aa904f6492fc236738cb5d91e646f382634bbe5866ec4a25dc77dddaae8","platform":"polymarket","title":"Will the highest temperature in London be 15°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the London City Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the London City Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/gb/london/EGLC.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","london","15","april","20","resolve","range","contains","recorded","city","airport","station","degrees"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17168.215164999998,"url":"https://polymarket.com/event/highest-temperature-in-london-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.212Z","numericId":"2011053","oneDayPriceChange":-0.0745,"endDate":"2026-04-20"},{"id":"polymarket-0x2dde690b26dd70ac0b7035bdd0632de4fda20894c364e7b1965c1260471b29ba","platform":"polymarket","title":"Will Elon Musk post 100-119 tweets from April 21 to April 28, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 21 12:00 PM ET to April 28, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","100-119","tweets","april","21","28","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17130.355997,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-21-april-28","category":"other","lastUpdated":"2026-04-20T19:49:46.212Z","numericId":"2010956","oneDayPriceChange":0.001,"endDate":"2026-04-28"},{"id":"polymarket-0xa1afe63ec310f3870f86803704c92c29e8fe866916dd7ef91c544403edf43abd","platform":"polymarket","title":"Will Microsoft be the largest company in the world by market cap on April 30?","description":"This market will resolve to the largest company in the world by market cap on April 30, 2026, as of market close.\n\nThe resolution source for this market will be a consensus of credible reporting.","keywords":["microsoft","msft","largest","company","world","cap","april","30","resolve","2026","close.","resolution","source","consensus","credible","reporting."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17102.66,"url":"https://polymarket.com/event/largest-company-end-of-april-738","category":"other","lastUpdated":"2026-04-20T19:49:46.212Z","numericId":"1487055","oneDayPriceChange":0,"endDate":"2026-04-30"},{"id":"polymarket-0xe713e517cc6a3b271364998453ceade35134384d5d09503b568eb78ff0bd4874","platform":"polymarket","title":"Will the highest temperature in Warsaw be 13°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Warsaw Chopin Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Warsaw Chopin Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/pl/warsaw/EPWA.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","warsaw","13","april","20","resolve","range","contains","recorded","chopin","airport","station","degrees"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":17073.012018999998,"url":"https://polymarket.com/event/highest-temperature-in-warsaw-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.213Z","numericId":"2011307","oneDayPriceChange":0.643,"endDate":"2026-04-20"},{"id":"polymarket-0xc4356c26f4a573588864d67f669008c53bb0c86b8e8031988783da8aac843649","platform":"polymarket","title":"Will the highest temperature in Chicago be 35°F or below on April 21?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Chicago O'Hare Intl Airport Station in degrees Fahrenheit on 21 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Chicago O'Hare Intl Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/us/il/chicago/KORD.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Fahrenheit (eg, 21°F). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","chicago","35","below","april","21","or below","below on","resolve","range","contains","recorded","o'hare","intl","airport","station"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17067.846607,"url":"https://polymarket.com/event/highest-temperature-in-chicago-on-april-21-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.213Z","numericId":"2019231","oneDayPriceChange":0,"endDate":"2026-04-21"},{"id":"polymarket-0x046941ddc09a5420aae85108b94bec3e1d7a3290b4144346cfc37e125282f958","platform":"polymarket","title":"Will Rick Caruso win the California Governor Election in 2026?","description":"This market will resolve to according to the candidate who wins the 2026 California gubernatorial election currently scheduled for November 3, 2026.\n\nIf the results of the election are not confirmed by July 31, 2027, this market will resolve to \"Other\".\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race in this state for the same candidate, this market will resolve based on official certification.","keywords":["rick","caruso","win","california","governor","election","2026","caruso win","win the","governor election","election in","resolve","according","candidate","wins","gubernatorial","currently","scheduled","november"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17037.159,"url":"https://polymarket.com/event/california-governor-election-2026","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.213Z","numericId":"628936","oneDayPriceChange":0,"endDate":"2026-11-03"},{"id":"polymarket-0x10faf6eb3ecc89650e56feb6d51a26d4d848780e9c6fbb0fa0065b1d19321275","platform":"polymarket","title":"Will Jiri Lehecka win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["jiri","lehecka","win","2026","men's","french","open","lehecka win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17017.626923999997,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.213Z","numericId":"1087540","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0xa08a75596b59321f9dd905a411d4e7cd6b37e59b7540abf6846fde9c1a47bbd7","platform":"polymarket","title":"Will Tomas Machac win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["tomas","machac","win","2026","men's","french","open","machac win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":17012.324329999996,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.213Z","numericId":"1087537","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0x23e498614643b7c79240b26e6e6743d0103b1123e659fdd53725f113ab62e69a","platform":"polymarket","title":"US Lecce vs. ACF Fiorentina: Both Teams to Score","description":"In the upcoming Serie A game between US Lecce and ACF Fiorentina, scheduled for April 20 at 2:45 PM ET:\n\nThis market will resolve to \"Yes\" if both US Lecce and ACF Fiorentina each score at least one goal during the game.\n\nThis market will resolve to \"No\" if either team fails to score (i.e., if one or both teams finish with zero goals).\n\nIf the game is postponed, this market will remain open until the game has been completed. If the game is canceled entirely, with no make-up game, this market will resolve 50–50.\n\nIf the game is started but not completed, this market will resolve according to the official final score published on legaseriea.it. This market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["lecce","vs.","acf","fiorentina","both","teams","score","upcoming","serie","game","between","scheduled","april","20","2"],"yesPrice":0.51,"noPrice":0.49,"yesAsk":0.51,"noAsk":0.49,"volume24h":17009.239781,"url":"https://polymarket.com/event/sea-lec-fio-2026-04-20-more-markets","category":"other","lastUpdated":"2026-04-20T19:49:46.213Z","numericId":"1902627","oneDayPriceChange":0.01,"endDate":"2026-04-20"},{"id":"polymarket-0x1081498f18c528f543e0342046f5a0a638168b9a3cb9197d4529addb1e76f8e1","platform":"polymarket","title":"Will Drake officially release Iceman by April 30, 2026?","description":"This market will resolve to “Yes” if Drake officially releases Iceman by the listed date, 11:59 PM PT. Otherwise, this market will resolve to “No”.\n\nOfficially released means that Iceman is officially available for download or streaming (not including live events) by the resolution date. Any Drake album officially confirmed to be the Iceman project will count, regardless of potential name changes.\n\nThe resolution source for this market will be any official streaming or download site, e.g. Apple Music or Spotify; however, a consensus of credible reporting may also be used.","keywords":["drake","officially","release","iceman","april","30","2026","resolve","yes","releases","listed","date","11","59","pt."],"yesPrice":0.26,"noPrice":0.74,"yesAsk":0.26,"noAsk":0.74,"volume24h":17006.461903999996,"url":"https://polymarket.com/event/will-drake-release-iceman-by","category":"other","lastUpdated":"2026-04-20T19:49:46.213Z","numericId":"1386214","oneDayPriceChange":0,"endDate":"2026-04-30"},{"id":"polymarket-0xce4c63006ae8c2690d9da01aff225c4ff9258a9722a86ffad4bb7964d20d0bc3","platform":"polymarket","title":"Will Geraldo Alckmin finish in second place in the first round of the 2026 Brazilian presidential election?","description":"A presidential election is scheduled to take place in Brazil on October 4, 2026.\n\nThis market will resolve according to the listed candidate who receives the second-most valid votes in the first round of this election.\n\nThe named candidates will be primarily ranked by the number of valid votes received in the specified election. If two or more candidates are tied on valid votes, ties will be broken by alphabetical order of the candidates' last names. This market will resolve to the candidate that occupies the second-highest finishing position after applying this ranking.\n\nIf the result of this election isn't known definitively by June 30, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Brazilian government, specifically the Superior Electoral Court (Tribunal Superior Eleitoral, TSE) (e.g., https://dadosabertos.tse.jus.br/).","keywords":["geraldo","alckmin","finish","second","place","first","round","2026","brazilian","presidential","election","presidential election","scheduled","take","brazil","october","4","2026.","resolve","according"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":16916.3992,"url":"https://polymarket.com/event/brazil-presidential-election-first-round-2nd-place","category":"esports","lastUpdated":"2026-04-20T19:49:46.213Z","numericId":"1365865","oneDayPriceChange":0,"endDate":"2026-10-04"},{"id":"polymarket-0x90d0f0f57e38136c7ae56743e682c1eb29aa4e9f17faa4b4fdbcf94d2d6ea787","platform":"polymarket","title":"Will Felix Auger Aliassime win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["felix","auger","aliassime","win","2026","men's","french","open","aliassime win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":16897.962132999997,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.213Z","numericId":"1087545","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0x2d8ddd9ea670f9992c03353c033062a0014ca09166d8b15b9489ae9e4e0b6ca4","platform":"polymarket","title":"Will Learner Tien win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["learner","tien","win","2026","men's","french","open","tien win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":16852.006532999996,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.213Z","numericId":"1087543","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0xac5a968ce63080fd83fcb9a8eb73512f0ad4f0c689a86740b37969f5fb62bb78","platform":"polymarket","title":"Will France win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["france","win","eurovision","2026","france win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.12,"noPrice":0.88,"yesAsk":0.12,"noAsk":0.88,"volume24h":16851.071751,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.213Z","numericId":"842016","oneDayPriceChange":0.0045,"endDate":"2026-05-16"},{"id":"polymarket-0xfc6260666d020a912a87d9000eff5116d2adfb8c30aba543427a4c1f1411f1a0","platform":"polymarket","title":"MegaETH market cap (FDV) >$2B one day after launch?","description":"This market will resolve to \"Yes\" if the Fully Diluted Valuation of MegaETH's token is greater than $2,000,000,000 1 day after launch. Otherwise, the market will resolve to \"No.\"\n\nFor the purposes of this market \"locked\" tokens or non-swappable tokens will not be considered a launch.\n\n\"1 day after launch\" is defined as 24 hours after launch. The resolution source for this market is the most liquid price source available. If MegaETH doesn't launch a token by June 30, 2026, 11:59 PM ET, this market will resolve to \"No.\"","keywords":["megaeth","cap","fdv","2b","one","day","after","launch","day after","after launch","resolve","yes","fully","diluted","valuation","megaeth's","token","greater"],"yesPrice":0.2,"noPrice":0.8,"yesAsk":0.2,"noAsk":0.8,"volume24h":16819.113209000014,"url":"https://polymarket.com/event/megaeth-market-cap-fdv-one-day-after-launch","category":"crypto","lastUpdated":"2026-04-20T19:49:46.213Z","numericId":"556062","oneDayPriceChange":-0.025,"endDate":"2025-12-31"},{"id":"polymarket-0x62743a4dfdad25555810576c9b03d9786a5bada28a05c9f3b67b43f0e3f19b05","platform":"polymarket","title":"Will Bruno Mars have the greatest number of monthly Spotify listeners this month?","description":"This market will resolve according to the listed artist with the greatest number of monthly listeners according to Spotify on April 30, 2026, 12PM ET.\n\nThe monthly listener count is listed on each artist's public Spotify profile. Only primary artist profiles will qualify; features or collaborations under another artist profile will not count towards the featured artist's total.\n\nIn the event of an exact tie for the number of monthly listeners, this market will resolve in favor of the listed artist whose name comes first in alphabetical order.\n\nIf Spotify is down at the listed time on the listed date, this market will resolve based on the most recent available data.\n\nThe resolution source for this market will be Spotify.","keywords":["bruno","mars","greatest","number","monthly","spotify","listeners","month","resolve","according","listed","artist","april","30","2026","12pm"],"yesPrice":0.8,"noPrice":0.2,"yesAsk":0.8,"noAsk":0.2,"volume24h":16807.381123,"url":"https://polymarket.com/event/top-spotify-artist-in-april","category":"other","lastUpdated":"2026-04-20T19:49:46.213Z","numericId":"1705039","oneDayPriceChange":-0.163,"endDate":"2026-04-30"},{"id":"polymarket-0xdde603e2e5502052dfa5212836ca6c2c7ae8bf677d9604a011b5ad614ba79921","platform":"polymarket","title":"Will Elon Musk post 320-339 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","320-339","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":16807.083574999997,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:46.214Z","numericId":"1977008","oneDayPriceChange":-0.018,"endDate":"2026-04-24"},{"id":"polymarket-0x17d11fc65dc48bc62c5c961ee2c65db4d417240180e8b792b5893cf748fd3d90","platform":"polymarket","title":"Will Elon Musk post 240-259 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","240-259","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.2,"noPrice":0.8,"yesAsk":0.2,"noAsk":0.8,"volume24h":16778.963870000007,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:46.214Z","numericId":"1977001","oneDayPriceChange":0.01,"endDate":"2026-04-24"},{"id":"polymarket-0xec4f8effa9657cf8a34a12349250ce4c0147890e559fbb0f6154535de1fb6ae8","platform":"polymarket","title":"Will the highest temperature in Paris be 16°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Paris-Le Bourget Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Paris-Le Bourget Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/fr/bonneuil-en-france/LFPB.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","paris","16","april","20","resolve","range","contains","recorded","paris-le","bourget","airport","station"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":16697.032079999997,"url":"https://polymarket.com/event/highest-temperature-in-paris-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.214Z","numericId":"2011063","oneDayPriceChange":-0.2925,"endDate":"2026-04-20"},{"id":"polymarket-0x90c7cb6fa207b4984f933eb2ad7b07e309f7e5f017e926b251d5f2b3d989e443","platform":"polymarket","title":"Will Alejandro Davidovich Fokina win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["alejandro","davidovich","fokina","win","2026","men's","french","open","fokina win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":16682.041661,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.214Z","numericId":"1087551","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0x3de1a705488234aeb80ac36e158e7539616d4d02014bfbf233a6214e3623fd17","platform":"polymarket","title":"GPT-5.5 released by April 23, 2026?","description":"This market will resolve to \"Yes\" if OpenAI's GPT-5.5 model is made available to the general public by the specified date (ET). Otherwise, this market will resolve to \"No.\"\n\nGPT-5.5 refers to a product explicitly named GPT-5.5, or a variant that is recognized as a direct successor to GPT-5.4, similar to the progression from GPT-5.1 to GPT-5.2. (e.g., GPT-5.6, GPT-5.7, etc would qualify toward a \"Yes\" resolution to this market)\n\nQualifying releases of task-specialized models (e.g., GPT-Codex/Transcribe), cost-efficiency variants (e.g., Nano/Mini), or reasoning models of the o-series family will count for this market. Products labeled as a new flagship generation GPT-6 or similar will NOT qualify.\n\nFor this market to resolve to \"Yes,\" a qualifying model must be launched and publicly accessible, including via open beta or open rolling waitlist signups. A closed beta or any form of private access will not suffice. \n\nThe release must be either clearly defined and publicly announced by OpenAI as being accessible to the general public or otherwise made publicly accessible and explicitly labeled within the company’s official website. Labeling errors, placeholder text, or version names displayed on the website that do not correspond to a model that is actually accessible to the general public will not qualify.\n\nThe primary resolution source for this market will be official information from OpenAI, with additional verification from a consensus of credible reporting.","keywords":["gpt-5.5","released","april","23","2026","resolve","yes","openai's","model","made","available","general","public"],"yesPrice":0.83,"noPrice":0.17,"yesAsk":0.83,"noAsk":0.17,"volume24h":16627.818705,"url":"https://polymarket.com/event/gpt-5pt5-released-by","category":"other","lastUpdated":"2026-04-20T19:49:46.214Z","numericId":"1930277","oneDayPriceChange":-0.03,"endDate":"2026-04-15"},{"id":"polymarket-0xb91be12388b3d4079c3ed9b5783cb42d8c33051d37746a49300227e0f45fc089","platform":"polymarket","title":"Will James Talarico win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["james","talarico","win","2028","democratic","presidential","nomination","talarico win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":16604.795151,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.214Z","numericId":"559695","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x42cb3a3ece95132c54127ce8c12ecde9ec586d3df6f8e0b7e850ca68366f6384","platform":"polymarket","title":"Will Alejandro Tabilo win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["alejandro","tabilo","win","2026","men's","french","open","tabilo win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":16544.593994,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.214Z","numericId":"1087550","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0x79e7d16f5c71ab6ff5f805f77045eb5cef7b8f6aa87db54ebabeb3373d31b254","platform":"polymarket","title":"Trump renames Strait of Hormuz to \"Strait of Trump\" by May 31?","description":"This market will resolve to \"Yes\" if Donald Trump publicly announces, that the United States will officially refer to the Strait of Hormuz as the \"Strait of Trump\" or \"Trump Strait\" or any equivalent name which includes \"Trump\" by May 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nThe primary resolution source for this market will be official information from Donald Trump however, a consensus of credible reporting may also be used.","keywords":["trump","president","potus","administration","gop","republican","renames","strait","hormuz","31","resolve","yes","donald","publicly","announces","united","states","officially"],"yesPrice":0.04,"noPrice":0.95,"yesAsk":0.04,"noAsk":0.95,"volume24h":16516.588497,"url":"https://polymarket.com/event/trump-renames-straight-of-hormuz-to-strait-of-trump-by-may-31","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.214Z","numericId":"2009635","oneDayPriceChange":0,"endDate":"2026-05-31"},{"id":"polymarket-0x8a7398e2666840188ff5867516bcf9f02ecd10acabc51a826fe7aa2db9567223","platform":"polymarket","title":"Will Ethereum dip to $1,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for ETH/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final Low price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the ETH/USDT Low prices available at https://www.binance.com/en/trade/ETH_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance ETH/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["ethereum","eth","crypto","dip","1000","april","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":16514.214849,"url":"https://polymarket.com/event/what-price-will-ethereum-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:46.214Z","numericId":"1823804","oneDayPriceChange":-0.0015,"endDate":"2026-05-01"},{"id":"polymarket-0x974b8c1c84376fb5d58ec1fca05f0977c599693e5ce5ea401f697b17b4c7fd5f","platform":"polymarket","title":"Will Grigor Dimitrov win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["grigor","dimitrov","win","2026","men's","french","open","dimitrov win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":16433.425499999998,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"1087535","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0x848223ff8871d1f37fcb6ba83a5edc1c917ea4bdc8c708a4513e56f575091277","platform":"polymarket","title":"Bank of Japan increases interest rates by 25 bps after the April 2026 meeting?","description":"The Statement on Monetary Policy for the Bank of Japan's Monetary Policy meeting for April is scheduled to be released on April 28, 2026 (https://www.boj.or.jp/en/mopo/mpmsche_minu/index.htm).\n\nThis market will resolve to the amount of basis points the upper bound of the short-term policy interest rate is changed by versus the level it was prior to the Bank of Japan's April 2026 meeting.\n\nIf the short-term policy interest rate is changed to a level not expressed in the displayed options, the change will be rounded up to the nearest 25 and will resolve to the relevant bracket. (e.g. if there's a cut/increase of 12.5 bps it will be considered to be 25 bps)\n\nThe primary resolution source for this market will be the official website of the Bank of Japan (https://www.boj.or.jp/en/mopo/mpmsche_minu/index.htm), however a consensus of credible reporting may also be used.\n\nThis market may resolve as soon as the Bank of Japan's statement for the specified meeting with relevant data is issued. If no statement is released by the end date of the next scheduled meeting, this market will resolve to the \"No change\" bracket.","keywords":["bank","japan","japanese","yen","nikkei","jpy","increases","interest","rates","25","bps","basis points","interest rates","after","april","2026","meeting","bank of japan","boj","bps after","after the","statement","monetary","policy","japan's","scheduled","released","28","https"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":16344.875638,"url":"https://polymarket.com/event/bank-of-japan-decision-in-april","category":"economics","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"1249981","oneDayPriceChange":-0.0545,"endDate":"2026-04-28"},{"id":"polymarket-0xd6a44d8ae95f44268f574d89964ffb1f6a650f6917cc60a39e0a2d7e142e7217","platform":"polymarket","title":"Will the highest temperature in Buenos Aires be 20°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Minister Pistarini Intl Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Minister Pistarini Intl Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/ar/ezeiza/SAEZ.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","buenos","aires","20","april","resolve","range","contains","recorded","minister","pistarini","intl","airport"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":16325.235471000005,"url":"https://polymarket.com/event/highest-temperature-in-buenos-aires-on-april-20-2026","category":"technology","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"2011084","oneDayPriceChange":0.025,"endDate":"2026-04-20"},{"id":"polymarket-0xd4e77ba6f29fc093509d24f508631abd445ecf506bbdc9c4c80e60256a318527","platform":"polymarket","title":"Will no Fed rate cuts happen in 2026?","description":"This market will resolve according to the exact amount of cuts of 25 basis points in 2026 by the Fed (including any cuts made during the December meeting).\n\nEmergency rate cuts outside of scheduled FOMC meetings will also count toward the total number of cuts in 2026. This market will remain open until December 31, 2026, 11:59 PM ET, to account for any such emergency actions.\n\nFor example, if the Fed cuts rates by 50 bps after a meeting, it would be considered 2 cuts (of 25 bps each).\n\nThis market will resolve early to \"No\" if the specified number of cuts becomes impossible — i.e., if more cuts have already occurred than the strike in question.\n\nNote that cuts between 1–24 bps (inclusive) will also be considered 1 rate cut.\n\nThe resolution source for this market will be FOMC statements after meetings scheduled in 2026 according to the official calendar: https://www.federalreserve.gov/monetarypolicy/fomccalendars.htm. The level and change of the target federal funds rate is also published at the official website of the Federal Reserve at https://www.federalreserve.gov/monetarypolicy/openmarket.htm.","keywords":["no","fed","federal reserve","fomc","interest rates","rate","cuts","happen","2026","will no","no fed","resolve","according","exact","amount","25","basis","points","including"],"yesPrice":0.36,"noPrice":0.64,"yesAsk":0.36,"noAsk":0.64,"volume24h":16322.394256999996,"url":"https://polymarket.com/event/how-many-fed-rate-cuts-in-2026","category":"economics","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"616902","oneDayPriceChange":0.0085,"endDate":"2026-12-31"},{"id":"polymarket-0x634def7827304b73fcf1e6b63ccb8ca2230e0d3eeec9254d87319313dde0ac30","platform":"polymarket","title":"Will Alexei Popyrin win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["alexei","popyrin","win","2026","men's","french","open","popyrin win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":16299.733663999998,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"1087549","oneDayPriceChange":-0.0005,"endDate":"2026-06-07"},{"id":"polymarket-0x08147c21a39169df6cc80a87312aa3ca37c45352089af661c1db6c78a62f96c3","platform":"polymarket","title":"Will the highest temperature in Lagos be 28°C or below on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Murtala Muhammad International Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Murtala Muhammad International Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/ng/lagos/DNMM.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","lagos","28","below","april","20","or below","below on","resolve","range","contains","recorded","murtala","muhammad","international","airport"],"yesPrice":0.64,"noPrice":0.36,"yesAsk":0.64,"noAsk":0.36,"volume24h":16254.348091999998,"url":"https://polymarket.com/event/highest-temperature-in-lagos-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"2011541","oneDayPriceChange":0.633,"endDate":"2026-04-20"},{"id":"polymarket-0x48b0b0bca515f68fccf95af4793dbd0edbfec1f8ec6e8df2c0f69ba74f8c4722","platform":"polymarket","title":"Trump out as President before 2027?","description":"This market will resolve to “Yes” if Donald Trump resigns or is removed as President or otherwise ceases to be the President of the United States for any period of time by December 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nAn announcement of Donald Trump's resignation/removal before this market's end date will immediately resolve this market to \"Yes\", regardless of when the announced resignation/removal goes into effect.\n\nOnly permanent removal from office will qualify. Temporary removal (e.g. temporary invocation of the 25th Amendment under Section 3 or a Section 4 invocation not sustained by both Houses of Congress) or impeachment without removal will not count.\n\nA sustained invocation of the Twenty-Fifth Amendment, Section 4 (i.e., if both Houses of Congress, by two-thirds vote, uphold the Vice President and Cabinet’s determination of presidential inability) will qualify for a \"Yes\" resolution. \n\nThe resolution source for this market will be a consensus of credible reporting.","keywords":["trump","president","potus","administration","gop","republican","out","before","2027","president before","before 2027","resolve","yes","donald","resigns","removed","otherwise","ceases","united"],"yesPrice":0.17,"noPrice":0.83,"yesAsk":0.17,"noAsk":0.83,"volume24h":16251.079155000001,"url":"https://polymarket.com/event/trump-out-as-president-before-2027","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"666861","oneDayPriceChange":0,"endDate":"2026-12-31"},{"id":"polymarket-0x559dc764d76e2dbbf5e0fb79345e384f2feabe15ce04c6d3cfca1878e2b5e988","platform":"polymarket","title":"Will the highest temperature in Chicago be 54°F or higher on April 21?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Chicago O'Hare Intl Airport Station in degrees Fahrenheit on 21 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Chicago O'Hare Intl Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/us/il/chicago/KORD.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Fahrenheit (eg, 21°F). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","chicago","54","higher","april","21","resolve","range","contains","recorded","o'hare","intl","airport","station"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":16232.187890000003,"url":"https://polymarket.com/event/highest-temperature-in-chicago-on-april-21-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"2019241","oneDayPriceChange":0.0015,"endDate":"2026-04-21"},{"id":"polymarket-0x4363ac052ddeefcf5033fc1058ec4f35e3954c314285d99398602d9828bf2f1a","platform":"polymarket","title":"Will Sebastian Korda win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["sebastian","korda","win","2026","men's","french","open","korda win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":16225.962997,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"1087528","oneDayPriceChange":-0.001,"endDate":"2026-06-07"},{"id":"polymarket-0x40d85bb0c07156d8078ed03df11bea9aff0c6700a5186c9848307f00503b2060","platform":"polymarket","title":"Will Jakub Mensik win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["jakub","mensik","win","2026","men's","french","open","mensik win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":16218.582996,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"1087521","oneDayPriceChange":-0.0005,"endDate":"2026-06-07"},{"id":"polymarket-0xe83a29b010b0c4d583dc9f7b6a852537ba18a53096536c96378d778ddc0ae1d5","platform":"polymarket","title":"Will Alex Michelsen win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["alex","michelsen","win","2026","men's","french","open","michelsen win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":16198.380999999996,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"1087544","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0x4c325469d9b516ef4e6b8f73a81a12607dec075e3c2fd454f91765aaeafc4760","platform":"polymarket","title":"Will Pete Buttigieg win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["pete","buttigieg","win","2028","democratic","presidential","nomination","buttigieg win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":16176.758457000002,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"559654","oneDayPriceChange":-0.001,"endDate":"2028-11-07"},{"id":"polymarket-0x3147400b450a1e74020a305969df9053fa2f782960ebe2608a8809ea113fcf73","platform":"polymarket","title":"Will Ugo Humbert win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["ugo","humbert","win","2026","men's","french","open","humbert win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":16175.219999999998,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"1087547","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0x46fd91a9d61d35516cb18b81abe7f16f648be4e41061a174fa4243e9495df5f7","platform":"polymarket","title":"Will Matteo Berrettini win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["matteo","berrettini","win","2026","men's","french","open","berrettini win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":16169.305999999995,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"1087541","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0x12a1a475f6ee8139d9397ee335bcf92e9db600f7a9d5226b28761732d5cc303b","platform":"polymarket","title":"Will Solana reach $100 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for SOL/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final High price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the SOL/USDT High prices available at https://www.binance.com/en/trade/SOL_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance SOL/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["solana","sol","crypto","reach","100","april","solana reach","reach 100","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.14,"noPrice":0.86,"yesAsk":0.14,"noAsk":0.86,"volume24h":16098.59915000002,"url":"https://polymarket.com/event/what-price-will-solana-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"1823887","oneDayPriceChange":-0.03,"endDate":"2026-05-01"},{"id":"polymarket-0xaf8dfb6201c90ff32c4e070d004a3a36de73cf95de261733eb15c70f7cc3b8bb","platform":"polymarket","title":"Will Zhejiang Zhiye FC win on 2026-04-21?","description":"In the upcoming game, scheduled for April 21, 2026\nIf Zhejiang Zhiye FC wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["zhejiang","zhiye","win","2026-04-21","fc win","win on","upcoming","game","scheduled","april","21","2026","wins","resolve"],"yesPrice":0.51,"noPrice":0.49,"yesAsk":0.51,"noAsk":0.49,"volume24h":16075.829251000005,"url":"https://polymarket.com/event/chi-wsz-zhe-2026-04-21","category":"other","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"1708536","oneDayPriceChange":0.025,"endDate":"2026-04-21"},{"id":"polymarket-0xd7c9496fcab12fa13507d818bd1901c6bdaee946208f94ec98f664cd34e5d98a","platform":"polymarket","title":"Will Bitcoin reach $77,000 on April 20?","description":"This market will immediately resolve to \"Yes\" if any Binance 1-minute candle for Bitcoin (BTC/USDT) on the date specified in the title, between 12:00 AM ET and 11:59 PM ET has a final \"High\" price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"High\" prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","reach","77000","april","20","bitcoin reach","reach 77000","immediately","resolve","yes","binance","crypto","exchange","1-minute","candle"],"yesPrice":0.29,"noPrice":0.71,"yesAsk":0.29,"noAsk":0.71,"volume24h":16070.673831000002,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-on-april-20","category":"crypto","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"2029333","oneDayPriceChange":0,"endDate":"2026-04-21"},{"id":"polymarket-0x92f925b3c8c2c17f2b250e5fc2bd2efc4ed73450ca4f503c658286627c63ce07","platform":"polymarket","title":"Will Keiko Fujimori finish in first place in the first round of the 2026 Peruvian presidential election?","description":"First-round presidential elections are scheduled to be held in Peru on April 12, 2026, with a potential second round on June 7, 2026, if no candidate receives more than 50% of the valid votes outright.\n\nThis market will resolve according to the listed candidate who receives the most valid votes in the first round of this election.\n\nThe named candidates will be primarily ranked by the number of valid votes received in the specified election. If two or more candidates are tied on valid votes, ties will be broken by alphabetical order of the candidates' last names. This market will resolve to the candidate that occupies the highest finishing position after applying this ranking.\n\nIf the results are not known definitively by October 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the results of this election, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve solely on the official results as reported by the Peruvian government, specifically the National Office of Electoral Processes (Oficina Nacional de Procesos Electorales, ONPE) (https://www.onpe.gob.pe/elecciones/) and the National Jury of Elections (Jurado Nacional de Elecciones, JNE) (https://portal.jne.gob.pe/portal/)","keywords":["keiko","fujimori","finish","first","place","round","2026","peruvian","presidential","election","presidential election","first-round","elections","scheduled","held","peru","april","12","potential"],"yesPrice":0.98,"noPrice":0.02,"yesAsk":0.98,"noAsk":0.02,"volume24h":16048.115874000001,"url":"https://polymarket.com/event/peru-presidential-election-first-round-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"1656638","oneDayPriceChange":-0.008,"endDate":"2026-04-12"},{"id":"polymarket-0x22c6957b5507bd52206dfe1a6d8129a5b9c70415fabb4ed046d3b067e3fb87ef","platform":"polymarket","title":"Will Karen Khachanov win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["karen","khachanov","win","2026","men's","french","open","khachanov win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":16018.603661999998,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"1087527","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0x182390641d3b1b47cc64274b9da290efd04221c586651ba190880713da6347d9","platform":"polymarket","title":"US-Iran nuclear deal before 2027?","description":"This market will resolve to \"Yes\" if an official agreement over Iranian nuclear research and/or nuclear weapon development, defined as a publicly announced mutual agreement, is reached between the United States and Iran by December 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nIf such an agreement is officially reached before the resolution date, this market will resolve to \"Yes\", regardless of if/when the agreement goes into effect.\n\nAgreements that include the United States and Iran as parties, even if they also involve other countries (e.g., a multilateral deal like the JCPOA), will qualify for resolution.\n\nThe primary resolution source for this market will be an official announcement by the United States and/or the Islamic Republic of Iran, however an overwhelming consensus of credible reporting confirming an agreement has been reached will also qualify.","keywords":["us-iran","nuclear","deal","before","2027","deal before","before 2027","resolve","yes","official","agreement","over","iranian","research","weapon"],"yesPrice":0.76,"noPrice":0.24,"yesAsk":0.76,"noAsk":0.24,"volume24h":16012.133302000004,"url":"https://polymarket.com/event/us-iran-nuclear-deal-before-2027","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"665325","oneDayPriceChange":0.06,"endDate":"2026-12-31"},{"id":"polymarket-0x696576c9b20d20a71e0acd6f84d215f129fa361ed544b0df14f1ae540d84059f","platform":"polymarket","title":"Will Max Verstappen be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["max","verstappen","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":15961.302692000001,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"898413","oneDayPriceChange":0,"endDate":"2026-12-06"},{"id":"polymarket-0xfd7e22b0a9debb771313207c5af8c7ba6cb90c3e7d7362e336867e3960279907","platform":"polymarket","title":"Will the highest temperature in Miami be between 84-85°F on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Miami Intl Airport Station in degrees Fahrenheit on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Miami Intl Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/us/fl/miami/KMIA.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Fahrenheit (eg, 21°F). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","miami","between","84-85","april","20","resolve","range","contains","recorded","intl","airport","station","degrees"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":15942.048498,"url":"https://polymarket.com/event/highest-temperature-in-miami-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.215Z","numericId":"2011162","oneDayPriceChange":-0.2245,"endDate":"2026-04-20"},{"id":"polymarket-0x0eeeb4d04b12f8e2b937dfa6563a89b6cc08d69e8ab918c51185e3752a334030","platform":"polymarket","title":"Will Hubert Hurkacz win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["hubert","hurkacz","win","2026","men's","french","open","hurkacz win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":15918.146830999998,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"1087529","oneDayPriceChange":-0.001,"endDate":"2026-06-07"},{"id":"polymarket-0x4d56cde1e4708a8fdb4096e986a36d0d3d6a7cabcd68e994e7545a1b307164c7","platform":"polymarket","title":"Will Jan-Lennard Struff win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["jan-lennard","struff","win","2026","men's","french","open","struff win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":15907.219999999998,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"1087533","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0x9c47ba9e666983bd8d82bfab790509153bf7756c43913f6ef269e33c8955939c","platform":"polymarket","title":"Will Dune: Messiah be the top grossing movie of 2026?","description":"This market will resolve according to the title of the film with the highest 2026 gross according to the \"Gross\" column on https://www.boxofficemojo.com/year/2026/?grossesOption=calendarGrosses once data for December 31 is made available. \n\nNote: This market is about the movie's domestic calendar gross in 2026 - dates outside of 2026 will not count toward this movie's gross.\n\nIn the event of an exact tie the film that comes first alphabetically will be considered the winner.\n\nIf there is no final data available by January 7, 2027, 11:59 PM ET, another credible resolution source will be chosen.","keywords":["dune","messiah","top","grossing","movie","film","cinema","box office","2026","resolve","according","title","highest","gross","column","https","www.boxofficemojo.com"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":15888.36,"url":"https://polymarket.com/event/highest-grossing-movie-in-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"678417","oneDayPriceChange":-0.004,"endDate":"2026-12-31"},{"id":"polymarket-0x90bfaf5467d56bc60c35dbc373aabb15b0cefe5c04df56a7b16abe581750ae20","platform":"polymarket","title":"Will 60 ships transit the Strait of Hormuz on any day by April 30?","description":"This market will resolve to “Yes” if IMF Portwatch publishes a daily number of transit calls (“Arrivals of Ships”) for the Strait of Hormuz equal to or above the listed value for any date between market creation and April 30, 2026. Otherwise, this market will resolve to “No”.\n\nThe number of daily transit calls/arrivals includes container, dry bulk, roll-on/roll-off, general cargo, and tanker ships. Ships not reported by IMF Portwatch will not be considered.\n\nThis market will resolve as soon as IMF Portwatch publishes a daily number of transit calls equal to or above the specified level, or once data has been published for the final date in the specified period and no such value has been published. If no data has been published for the final date of the specified period within 14 calendar days (ET) after the end of that period, this market will resolve based on data published up to that point.\n\nRevisions to previously published data points, made within this market’s timeframe, will be considered. However, they will not disqualify a previously published data point from qualifying. Revisions to previously published data points after data is published for April 30, 2026, however, will not be considered.\n\nThe resolution source for this market will be IMF Portwatch, specifically the transit calls data published for the Strait of Hormuz at https://portwatch.imf.org/pages/cb5856222a5b4105adc6ee7e880a1730, both in the chart and through downloadable files.","keywords":["60","ships","transit","strait","hormuz","day","april","30","resolve","yes","imf","portwatch","publishes","daily","number","calls"],"yesPrice":0.35,"noPrice":0.65,"yesAsk":0.35,"noAsk":0.65,"volume24h":15846.547153,"url":"https://polymarket.com/event/will-ships-transit-the-strait-of-hormuz-on-any-day-by-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"1705153","oneDayPriceChange":-0.02,"endDate":"2026-04-30"},{"id":"polymarket-0x3b719818d2c934daa4b9bf27b70a27fefdda5c057c1ee61547fc8a4592f0cd67","platform":"polymarket","title":"Will Victor Hedman win the 2025–2026 NHL James Norris Memorial Trophy?","description":"This market will resolve according to the player who is awarded the 2025–26 NHL James Norris Memorial Trophy.\n\nIf the listed player is not announced as a finalist for the 2025–26 James Norris Memorial Trophy, this market will resolve to \"No\".\n\nThe primary resolution source for this market will be official information from the NHL. However, a consensus of credible reporting may also be used.","keywords":["victor","hedman","win","2025","2026","nhl","hockey","james","norris","memorial","trophy","hedman win","win the","resolve","according","player","awarded","26","trophy.","listed","not"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":15833.210000000001,"url":"https://polymarket.com/event/nhl-2025-26-james-norris-memorial-trophy","category":"sports","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"645616","oneDayPriceChange":-0.0015,"endDate":"2026-06-30"},{"id":"polymarket-0xb599d781347109dfc846c1ae5d6dd8afab6271a4ab0c792ae1c4e865a55772a1","platform":"polymarket","title":"Will Frances Tiafoe win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["frances","tiafoe","win","2026","men's","french","open","tiafoe win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":15733.119999999995,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"1087546","oneDayPriceChange":0,"endDate":"2026-06-07"},{"id":"polymarket-0x859094579d551ab899c14c6563b4681ce5389d30498386138118a9e4f71f0989","platform":"polymarket","title":"Will Saudi Aramco be the largest company in the world by market cap on April 30?","description":"This market will resolve to the largest company in the world by market cap on April 30, 2026, as of market close.\n\nThe resolution source for this market will be a consensus of credible reporting.","keywords":["saudi","saudi arabia","oil","opec","aramco","largest","company","world","cap","april","30","resolve","2026","close.","resolution","source","consensus","credible","reporting."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":15679.61,"url":"https://polymarket.com/event/largest-company-end-of-april-738","category":"other","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"1487061","oneDayPriceChange":0,"endDate":"2026-04-30"},{"id":"polymarket-0x24caca44a9ec5c344bd5f57c547f466dc0452e147d264a626afbffe3b5a0b55f","platform":"polymarket","title":"Ukraine election held by June 30, 2026?","description":"This market will resolve to \"Yes\" if national elections for the parliament and/or presidency of Ukraine are held between February 12, 2025, and June 30, 2026, PM ET. Otherwise, this market will resolve to \"No\".\n\nThis market is based on whether national elections are actually held in Ukraine within the specified dates. Merely scheduling an election will not be sufficient to resolve this market to \"Yes\".\n\nIf elections are officially scheduled for a date outside this market's timeframe, this market will immediately resolve to \"No\".\n\nThe primary resolution source for this market will be official information from the government of Ukraine; however, a consensus of credible reporting will also be used.","keywords":["ukraine","russia","war","nato","zelensky","election","held","june","30","2026","ukraine election","election held","resolve","yes","national","elections","parliament","presidency","between","february"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":15669.099479,"url":"https://polymarket.com/event/ukraine-election-held-in-2025","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"610381","oneDayPriceChange":0.0035,"endDate":"2025-12-31"},{"id":"polymarket-0x4ec6fcb43fe1a32163c7da09d54a99ab9bf6abdc6fd49939d7ad67d696a3248b","platform":"polymarket","title":"Will 9 Fed rate cuts happen in 2026?","description":"This market will resolve according to the exact amount of cuts of 25 basis points in 2026 by the Fed (including any cuts made during the December meeting).\n\nEmergency rate cuts outside of scheduled FOMC meetings will also count toward the total number of cuts in 2026. This market will remain open until December 31, 2026, 11:59 PM ET, to account for any such emergency actions.\n\nFor example, if the Fed cuts rates by 50 bps after a meeting, it would be considered 2 cuts (of 25 bps each).\n\nThis market will resolve early to \"No\" if the specified number of cuts becomes impossible — i.e., if more cuts have already occurred than the strike in question.\n\nNote that cuts between 1–24 bps (inclusive) will also be considered 1 rate cut.\n\nThe resolution source for this market will be FOMC statements after meetings scheduled in 2026 according to the official calendar: https://www.federalreserve.gov/monetarypolicy/fomccalendars.htm. The level and change of the target federal funds rate is also published at the official website of the Federal Reserve at https://www.federalreserve.gov/monetarypolicy/openmarket.htm.","keywords":["9","fed","federal reserve","fomc","interest rates","rate","cuts","happen","2026","resolve","according","exact","amount","25","basis","points","including"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":15667.845981000002,"url":"https://polymarket.com/event/how-many-fed-rate-cuts-in-2026","category":"economics","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"616911","oneDayPriceChange":0,"endDate":"2026-12-31"},{"id":"polymarket-0xab4e2dc2c2dced60ec220d1a3fa1258d0e513e21814438e5d7e59e53c5d08c9b","platform":"polymarket","title":"Will Sweden win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["sweden","win","eurovision","2026","sweden win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":15637.831279000004,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"842034","oneDayPriceChange":-0.0015,"endDate":"2026-05-16"},{"id":"polymarket-0xc2721eaeeb211954175eb98c848d6237d8e14fd6943bc438c2ac65b8a5164b8e","platform":"polymarket","title":"Will the Pittsburgh Steelers win the 2027 NFL league championship?","description":"This market will resolve according to the team that wins the 2027 NFL league championship. \n\nIf at any point it becomes impossible for a listed team to win the 2027 NFL league championship per the rules of the NFL (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2027 NFL league championship game is cancelled, postponed after March 31, 2027 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from NFL (https://www.nfl.com/); however, a consensus of credible reporting may also be used.","keywords":["pittsburgh","steelers","win","2027","nfl","football","super bowl","league","championship","steelers win","win the","resolve","according","team","wins","championship.","point","becomes","impossible"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":15454.453542999998,"url":"https://polymarket.com/event/big-game-champion-2027","category":"sports","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"1357397","oneDayPriceChange":0,"endDate":"2027-03-31"},{"id":"polymarket-0xd6591e966aebf061547ef34cdf3494ed318969887c8b7fb53f10ed5d5461a547","platform":"polymarket","title":"Will Paloma Valencia win the 2026 Colombian presidential election?","description":"Colombia's presidential elections are scheduled for May 31, 2026, and a second round (if required) on June 21, 2026, in case no candidate secures more than 50% of the valid votes in the first round.\n\nThis market will resolve according to the listed candidate that wins this election. \n\nThis market includes any potential second round. If the result of this election isn't known by December 31, 2026, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["paloma","valencia","win","2026","colombian","presidential","election","valencia win","win the","presidential election","colombia's","elections","scheduled","31","second","round","required","june"],"yesPrice":0.4,"noPrice":0.6,"yesAsk":0.4,"noAsk":0.6,"volume24h":15410.896279000002,"url":"https://polymarket.com/event/colombia-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"569373","oneDayPriceChange":-0.0375,"endDate":"2026-06-21"},{"id":"polymarket-0xa231b8ac6e1611c0dfc52074fcc535c06639c6b879807d1ad1bc04c9ae5d9a73","platform":"polymarket","title":"Will Moreirense FC vs. Estoril Praia end in a draw?","description":"In the upcoming game, scheduled for April 20, 2026\nIf the game ends in a draw, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve to \"Yes\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["moreirense","vs.","estoril","praia","end","draw","upcoming","game","scheduled","april","20","2026","ends","resolve"],"yesPrice":0.24,"noPrice":0.76,"yesAsk":0.24,"noAsk":0.76,"volume24h":15372.321704000002,"url":"https://polymarket.com/event/por-mor-est-2026-04-20","category":"technology","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"1745026","oneDayPriceChange":-0.045,"endDate":"2026-04-20"},{"id":"polymarket-0xe20669de644bf3cbb9694a20ba677b5f70e79459fd089b95eef123595290bbc9","platform":"polymarket","title":"Will the highest temperature in Paris be 17°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Paris-Le Bourget Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Paris-Le Bourget Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/fr/bonneuil-en-france/LFPB.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","paris","17","april","20","resolve","range","contains","recorded","paris-le","bourget","airport","station"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":15342.40227600001,"url":"https://polymarket.com/event/highest-temperature-in-paris-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"2011064","oneDayPriceChange":-0.2525,"endDate":"2026-04-20"},{"id":"polymarket-0xa5d8edf079750ac69408a3cc752d07a4fa19e0f45f3b598be0ad84c13571d642","platform":"polymarket","title":"Will Bitcoin dip to $25,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final Low price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT Low prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","dip","25000","april","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":15336.728259000007,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"1823787","oneDayPriceChange":-0.001,"endDate":"2026-05-01"},{"id":"polymarket-0xe39adea057926dc197fe30a441f57a340b2a232d5a687010f78bba9b6e02620f","platform":"polymarket","title":"Will Gretchen Whitmer win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["gretchen","whitmer","win","2028","democratic","presidential","nomination","whitmer win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":15327.617427000001,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"559659","oneDayPriceChange":-0.001,"endDate":"2028-11-07"},{"id":"polymarket-0xb3298af85e00aafad937c119444a5f2800a55343b7482eb75581f6e454432501","platform":"polymarket","title":"Will Kamala Harris win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["kamala","harris","democrat","vice president","win","2028","presidential","election","harris win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":15318.919084,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"561239","oneDayPriceChange":-0.003,"endDate":"2028-11-07"},{"id":"polymarket-0x8e29cb5c6b8d6b8d259114ffca2796fb378d1e0575f8362fb93f4cb174fad405","platform":"polymarket","title":"Will the Denver Broncos win the 2027 NFL league championship?","description":"This market will resolve according to the team that wins the 2027 NFL league championship. \n\nIf at any point it becomes impossible for a listed team to win the 2027 NFL league championship per the rules of the NFL (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2027 NFL league championship game is cancelled, postponed after March 31, 2027 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from NFL (https://www.nfl.com/); however, a consensus of credible reporting may also be used.","keywords":["denver","broncos","win","2027","nfl","football","super bowl","league","championship","broncos win","win the","resolve","according","team","wins","championship.","point","becomes","impossible"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":15294.315904,"url":"https://polymarket.com/event/big-game-champion-2027","category":"sports","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"1357380","oneDayPriceChange":0.003,"endDate":"2027-03-31"},{"id":"polymarket-0xe846dd72f8a654ef137a3e23a88226400b42cc0ca817ab4390a615860e08cafa","platform":"polymarket","title":"Iran agrees to surrender enriched uranium stockpile by December 31, 2026?","description":"This market will resolve to \"Yes\" if Iran publicly agrees to surrender its enriched uranium stockpile by December 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nAn official pledge by Iran to surrender its enriched uranium stockpile will qualify for a “Yes” resolution whether as a unilateral announcement or part of an agreement with the U.S. or Israel.\n\nAn agreement by Iran to surrender any amount of its enriched uranium stockpile will count.\n\nTo qualify, Iran must publicly agree that its enriched uranium stockpile, or any portion thereof, will be transferred, shipped, or placed under the custody or control of any entity outside of Iran and its influence, excluding non-state armed groups or Iranian-aligned organizations (such as Hezbollah, the Houthis, or similar actors).\n\nAny agreement or pledge made before the resolution date of this market will qualify, regardless of if/when the agreement goes into effect.\n\nAn agreement by Iran to surrender its enriched uranium stockpile as a precondition of a more comprehensive peace process or deal will qualify, even if the agreement is not finalized or part of a formalized peace deal.\n\nAgreements to merely limit or cap the level or quality of enrichment—such as reducing enrichment to below weapons-grade thresholds—will not qualify.\n\nThe primary resolution source for this market will be a consensus of credible reporting.","keywords":["iran","nuclear","sanctions","middle east","agrees","surrender","enriched","uranium","stockpile","december","31","2026","resolve","yes","publicly","11","59","et.","otherwise","no"],"yesPrice":0.6,"noPrice":0.4,"yesAsk":0.6,"noAsk":0.4,"volume24h":15277.083724000004,"url":"https://polymarket.com/event/iran-agrees-to-surrender-enriched-uranium-stockpile-by","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"1731346","oneDayPriceChange":-0.085,"endDate":"2026-12-31"},{"id":"polymarket-0x940f01421649348b09dbf72bfd90788b9513ee56d9a0e7532c45ecda1ecfc6b4","platform":"polymarket","title":"MegaETH market cap (FDV) >$1B one day after launch?","description":"This market will resolve to \"Yes\" if the Fully Diluted Valuation of MegaETH's token is greater than $1,000,000,000 1 day after launch. Otherwise, the market will resolve to \"No.\"\n\nFor the purposes of this market \"locked\" tokens or non-swappable tokens will not be considered a launch.\n\n\"1 day after launch\" is defined as 24 hours after launch. The resolution source for this market is the most liquid price source available. If MegaETH doesn't launch a token by June 30, 2026, 11:59 PM ET, this market will resolve to \"No.\"","keywords":["megaeth","cap","fdv","1b","one","day","after","launch","day after","after launch","resolve","yes","fully","diluted","valuation","megaeth's","token","greater"],"yesPrice":0.58,"noPrice":0.42,"yesAsk":0.58,"noAsk":0.42,"volume24h":15205.657560999996,"url":"https://polymarket.com/event/megaeth-market-cap-fdv-one-day-after-launch","category":"crypto","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"965261","oneDayPriceChange":-0.015,"endDate":"2025-12-31"},{"id":"polymarket-0x12c5b5e4701f172a6045b97eda70f0897aaf6adf566e6f0dc722996ac80b8b81","platform":"polymarket","title":"Will Sarah Knafo win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["sarah","knafo","win","2027","french","presidential","election","knafo win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":15179.549734999999,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"679051","oneDayPriceChange":0.006,"endDate":"2027-04-30"},{"id":"polymarket-0x36fc230582b05a4c08227d86fa97258075b31c466b665728537c37b2f23f147f","platform":"polymarket","title":"Will Elon Musk post 300-319 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","300-319","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":15123.015253,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:46.216Z","numericId":"1977007","oneDayPriceChange":-0.0415,"endDate":"2026-04-24"},{"id":"polymarket-0xe3dee1e6b2cd66b4cb3101f85a32007a773a5f9e54921cad92abe6d3ccab14c2","platform":"polymarket","title":"Will the highest temperature in Seoul be 12°C on April 21?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Incheon Intl Airport Station in degrees Celsius on 21 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Incheon Intl Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/kr/incheon/RKSI.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","seoul","12","april","21","resolve","range","contains","recorded","incheon","intl","airport","station"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":15118.274114000002,"url":"https://polymarket.com/event/highest-temperature-in-seoul-on-april-21-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.217Z","numericId":"2019158","oneDayPriceChange":-0.007,"endDate":"2026-04-21"},{"id":"polymarket-0x36b97e8e982e7ffc316526077c0fb30aa97e9ddb32961596e114576a17719df2","platform":"polymarket","title":"Will Saudi Aramco be the largest company in the world by market cap on June 30?","description":"This market will resolve to the largest company in the world by market cap on June 30, 2026, as of market close.\n\nThe resolution source for this market will be a consensus of credible reporting.","keywords":["saudi","saudi arabia","oil","opec","aramco","largest","company","world","cap","june","30","resolve","2026","close.","resolution","source","consensus","credible","reporting."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":15069.896749999996,"url":"https://polymarket.com/event/largest-company-end-of-june-712","category":"other","lastUpdated":"2026-04-20T19:49:46.217Z","numericId":"631186","oneDayPriceChange":0,"endDate":"2026-06-30"},{"id":"polymarket-0x68fc8d466ddc10a1ae37b52642f36b93e413cf98ba5fe3947c242a9a727b2e94","platform":"polymarket","title":"Will the Taiwan People’s Party (TPP) win the most head of local government elections in the 2026 Taiwan local elections?","description":"Taiwanese local elections are scheduled to be held on November 28, 2026. \n\nThis market will resolve according to the party whose official candidates win the most head of local government (mayor or magistrate) elections for Taiwan’s major special municipalities, counties, and cities during these elections.\n\nA candidate will be considered an official candidate of a party if they are officially nominated by that party and are registered for the relevant election in affiliation with that party. Independent candidates will not count for any party.\n\nTaiwan’s local governments include the following cities, special municipalities, and counties:\n\nCities/special municipalities (mayoral elections): Taipei City, New Taipei City, Taoyuan City, Taichung City, Tainan City, Kaohsiung City, Keelung City, Hsinchu City, Chiayi City\n\nCounties (magistrate elections): Yilan County, Hsinchu County, Miaoli County, Changhua County, Nantou County, Yunlin County, Chiayi County, Pingtung County, Taitung County, Hualien County, Penghu County, Lienchiang County, Kinmen County\n\nOnly elections for the listed cities, special municipalities or counties will be counted for this market. A party will have won as soon as it becomes mathematically impossible for any other party to equal or surpass its number of wins in these elections.\n\nIn the case of a tie between two or more parties for the greatest number of relevant head of local government elections won, this market will resolve in favor of the party whose English name comes first in alphabetical order, as listed in this market group.\n\nResolution of this market will be based on the results of the relevant elections, once those results are official. This market will remain open until a party has won or until the results of all of the relevant elections are made official. If the results of any of the relevant 2026 Taiwanese local elections aren’t known by June 30, 2027 11:59 PM ET, the winning party will be determined based on the available results up to that point. If none of the results of the relevant 2026 Taiwanese local elections are known by that time, this market will resolve to “Other”.\n\nThis market will resolve based on the results of the elections as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Taiwanese government, specifically the Central Election Commission (https://db.cec.gov.tw/).","keywords":["taiwan","china","semiconductors","tsmc","people","party","tpp","win","most","head","local","government","elections","2026","tpp win","win the","taiwanese","scheduled","held","november","28","2026.","resolve","according"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":14962.1,"url":"https://polymarket.com/event/2026-taiwanese-local-elections-party-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.217Z","numericId":"814614","oneDayPriceChange":0.0045},{"id":"polymarket-0xc32a544f65e3a8ffec6499e40290f10fa68a3f4a4819dfd366b6cb1fd7c4be1d","platform":"polymarket","title":"Will Bruno Retailleau win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["bruno","retailleau","win","2027","french","presidential","election","retailleau win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":14925.929475000003,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.217Z","numericId":"679027","oneDayPriceChange":-0.001,"endDate":"2027-04-30"},{"id":"polymarket-0x75f4f1dcc2f3ac4e43fc37cc775da0bc0068e5aa5a0e8e29e77d9cbe703a24f2","platform":"polymarket","title":"Will the highest temperature in Ankara be 14°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Esenboğa Intl Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Esenboğa Intl Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/tr/%C3%A7ubuk/LTAC.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","ankara","14","april","20","resolve","range","contains","recorded","esenbo","intl","airport","station"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":14826.951845,"url":"https://polymarket.com/event/highest-temperature-in-ankara-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.217Z","numericId":"2011184","oneDayPriceChange":0.6645,"endDate":"2026-04-20"},{"id":"polymarket-0xb89d09654da4af4d7fbc917b17627aec8a24f4bb9809ea3399623292a58d9102","platform":"polymarket","title":"Will Cameron Norrie win the 2026 Men's French Open?","description":"The 2026 French Open is scheduled for May 18 - June 7, 2026.\n\nThis market will resolve to the player that wins the 2026 French Open Men’s Singles Tournament.\n\nIf at any point it becomes impossible for a listed player to win the 2026 French Open Men’s Singles Tournament per the rules of the tournament, the corresponding market will resolve to “No”.\n\nIf the 2026 French Open Men’s Singles Tournament is cancelled, postponed after July 31, 2026, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from the French Open (https://www.rolandgarros.com/en-us/); however, a consensus of credible reporting may also be used.","keywords":["cameron","norrie","win","2026","men's","french","open","norrie win","win the","scheduled","18","june","7","2026.","resolve","player","wins"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":14815.217166,"url":"https://polymarket.com/event/2026-mens-french-open-winner","category":"other","lastUpdated":"2026-04-20T19:49:46.217Z","numericId":"1087526","oneDayPriceChange":-0.001,"endDate":"2026-06-07"},{"id":"polymarket-0x2096cd3bedb878cbfb5d30308968616a1dfd80e17b278ca6bdc72f9dde4776a7","platform":"polymarket","title":"Will Cooper Flagg win the 2025–26 NBA Rookie of the Year award?","description":"This is a market to predict which player will win the 2025–26 NBA Rookie of the Year award.\n\nThis market will resolve to \"Yes\" if the listed player is officially named the 2025–26 NBA Rookie of the Year. Otherwise, it will resolve to \"No\".\n\nIf the award is not announced by December 31, 2026, this market will resolve to \"Other\".\n\nThe primary resolution source will be official information from the NBA (https://www.nba.com).","keywords":["cooper","flagg","win","2025","26","nba","basketball","rookie","year","award","flagg win","win the","predict","which","player","award.","resolve","yes","listed","officially"],"yesPrice":0.74,"noPrice":0.26,"yesAsk":0.74,"noAsk":0.26,"volume24h":14782.1834,"url":"https://polymarket.com/event/nba-rookie-of-the-year-873","category":"sports","lastUpdated":"2026-04-20T19:49:46.217Z","numericId":"561365","oneDayPriceChange":0.123,"endDate":"2026-05-18"},{"id":"polymarket-0xda7193e2495d3a9a68c31665d23f516bda7ddc8fe18a81f7dc56798873610236","platform":"polymarket","title":"Will New York City FC win the 2026 MLS Cup?","description":"This market will resolve according to the team that wins the 2026 MLS Cup. \n\nIf at any point it becomes impossible for a listed team to win the 2026 MLS Cup per the rules of MLS (e.g. they are mathematically eliminated), the corresponding market will resolve to “No”.\n\nIf the 2026 MLS season is cancelled, postponed after December 31, 2026 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from Major League Soccer; however, a consensus of credible reporting may also be used.","keywords":["new","york","city","win","2026","mls","cup","fc win","win the","resolve","according","team","wins","cup.","point","becomes","impossible"],"yesPrice":0.05,"noPrice":0.95,"yesAsk":0.05,"noAsk":0.95,"volume24h":14772.43,"url":"https://polymarket.com/event/mls-cup-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.217Z","numericId":"1349160","oneDayPriceChange":0.0015,"endDate":"2026-12-19"},{"id":"polymarket-0xe5883e093e642062acb19820d91429ecd1d00ccb9011ac2f595dfd2cb8f40dc5","platform":"polymarket","title":"DeepSeek V4 released by April 30?","description":"This market will resolve to \"Yes\" if the next DeepSeek V model is made available to the general public by April 30, 2026, at 11:59 PM ET. Otherwise, this market will resolve to \"No.\"\n\nIntermediate versions (e.g., DeepSeek-V3.5) will not count; however, versions such as DeepSeek V4 or V5 would count.\n\nThe \"next DeepSeek V model\" refers to the next major release in the DeepSeek V series, explicitly named as such or clearly positioned as a successor to DeepSeek-V3.\n\nOnly releases representing a core version progression in the DeepSeek V series, “clearly positioned as a successor to DeepSeek-V3,” will qualify. Other models, such as derivative models (e.g., \"V4-Lite,\" \"V4-Mini\"), task-specialized models, R-series reasoning models, and experimental or preview releases (e.g., \"V4-Exp,\" \"V4-Preview\"), that are not positioned as the new V flagship model, will not qualify.\n\nFor this market to resolve to \"Yes,\" the next DeepSeek V model must be launched and publicly accessible, including via open beta or open rolling waitlist signups. A closed beta or any form of private access will not suffice. The release must be clearly defined and publicly announced by DeepSeek as being accessible to the general public.\n\nIf a qualifying model is made publicly accessible and explicitly labeled with the relevant version name within the company’s official website, this will qualify as “publicly announced”. Labeling errors, placeholder text, or version names displayed on the website that do not correspond to a model that is actually accessible to the general public under the rules will not qualify.\n\nThe primary resolution source for this market will be official information from DeepSeek, with additional verification from a consensus of credible reporting.","keywords":["deepseek","ai","llm","china ai","artificial intelligence","released","april","30","resolve","yes","next","model","made","available","general","public"],"yesPrice":0.77,"noPrice":0.23,"yesAsk":0.77,"noAsk":0.23,"volume24h":14673.562621000001,"url":"https://polymarket.com/event/deepseek-v4-released-by-march-31","category":"other","lastUpdated":"2026-04-20T19:49:46.217Z","numericId":"1797301","oneDayPriceChange":0.025,"endDate":"2026-04-30"},{"id":"polymarket-0xd3270330a3aa96b56458b439a90f319c1d326f28476f75727d0852ef59cef5c9","platform":"polymarket","title":"Will Bitcoin dip to $55,000 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for BTC/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final Low price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT Low prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","dip","55000","april","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":14643.693276999998,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:46.217Z","numericId":"1823781","oneDayPriceChange":-0.001,"endDate":"2026-05-01"},{"id":"polymarket-0x575e86314d77231f25c16834b4f501221f215399a79fa6f5760b0a1eb7f1e5d3","platform":"polymarket","title":"Starmer out by May 15, 2026?","description":"This market will resolve to “Yes” if Keir Starmer ceases to be the Prime Minister of the United Kingdom for any period of time between market creation and May 15, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nAn announcement of Keir Starmer's resignation/removal before this market's end date will immediately resolve this market to \"Yes\", regardless of when the announced resignation/removal goes into effect.\n\nThe resolution source for this market will be the government of the UK, however a consensus of credible reporting will also suffice.","keywords":["starmer","out","15","2026","resolve","yes","keir","ceases","prime","minister","united","kingdom"],"yesPrice":0.21,"noPrice":0.79,"yesAsk":0.21,"noAsk":0.79,"volume24h":14559.996345000001,"url":"https://polymarket.com/event/starmer-out-in-2025","category":"other","lastUpdated":"2026-04-20T19:49:46.217Z","numericId":"2002685","oneDayPriceChange":-0.005,"endDate":"2026-06-30"},{"id":"polymarket-0xcccb7e7613a087c132b69cbf3a02bece3fdcb824c1da54ae79acc8d4a562d902","platform":"polymarket","title":"GTA VI released before June 2026?","description":"This market will resolve to \"Yes\" if it Grand Theft Auto VI is officially released in the US by May 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nFor the purposes of this market, \"release\" refers to the game becoming publicly available for purchase or download in the US. Early access, beta versions, other forms of pre-release availability, or leaks will not count as an official release. If the release is only for certain consoles (e.g. Xbox Series X/S) it will count.\n\nThe resolution source will be official information from Rockstar Games or its parent company, Take-Two Interactive.","keywords":["gta","gta 6","grand theft auto","rockstar","gaming","released","before","june","2026","gta vi","released before","before june","resolve","yes","grand","theft","auto","officially","31","11"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":14556.048201,"url":"https://polymarket.com/event/gta-vi-released-before-june-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.217Z","numericId":"540881","oneDayPriceChange":0.0005,"endDate":"2026-05-31"},{"id":"polymarket-0x24b06d3c530679c03e4da0910684d0ecb3e2d4141c2aaa1e58935af4a174d1d2","platform":"polymarket","title":"Will Elon Musk post 100-119 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","100-119","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":14468.29,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:46.217Z","numericId":"1976985","oneDayPriceChange":0,"endDate":"2026-04-24"},{"id":"polymarket-0x5c3e77051639ff3cc2cd1735d6667d15514da142558bc198bcd9e73d1feb2a7f","platform":"polymarket","title":"Will Tamilaga Vettri Kazhagam (TVK) win the most seats in the 2026 Tamil Nadu Legislative Assembly election?","description":"Legislative Assembly elections are to be scheduled to be held in Tamil Nadu, India, in March–May 2026.\n\nThis market will resolve according to the political party that wins the greatest number of seats in the Tamil Nadu Legislative Assembly in the 2026 election.\n\nIf the results are not known definitively by October 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nIn the event of a tie between multiple parties for the most seats won, this market will resolve in favor of the party that received a greater number of valid votes. If that also results in a tie, this market will resolve in favor of the party whose listed abbreviation appears first in alphabetical order.\n\nThis market’s resolution will be based solely on the number of seats won by the named party in the Tamil Nadu Legislative Assembly.\n\nThis market will resolve based on the results of this election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results reported by the Indian government, specifically the Election Commission of India (ECI) (https://eci.gov.in). If multiple official reports differ, this market will resolve based on the one that includes the greatest number of Assembly Constituencies (ACs).","keywords":["tamilaga","vettri","kazhagam","tvk","win","most","seats","2026","tamil","nadu","legislative","assembly","election","tvk win","win the","assembly election","elections","scheduled","held","india","modi","rupee","bse","march"],"yesPrice":0.07,"noPrice":0.93,"yesAsk":0.07,"noAsk":0.93,"volume24h":14443.606626,"url":"https://polymarket.com/event/tamil-nadu-legislative-assembly-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.217Z","numericId":"1003805","oneDayPriceChange":-0.028,"endDate":"2026-04-23"},{"id":"polymarket-0xb4e6f495a3b157419298673ae417cdb20798f653130c8c06459066d9d541869d","platform":"polymarket","title":"Will the highest temperature in Amsterdam be 12°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Amsterdam Airport Schiphol Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Amsterdam Airport Schiphol Station once information is finalized, available here: https://www.wunderground.com/history/daily/nl/schiphol/EHAM.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","amsterdam","12","april","20","resolve","range","contains","recorded","airport","schiphol","station","degrees"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":14371.236618999998,"url":"https://polymarket.com/event/highest-temperature-in-amsterdam-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.217Z","numericId":"2011479","oneDayPriceChange":0.5795,"endDate":"2026-04-20"},{"id":"polymarket-0x811e51a7acf39eeb9757f87d71624c0dbc2e12992c58419dddb8c6b4cb339df8","platform":"polymarket","title":"Will the Miami Dolphins win the 2027 NFL league championship?","description":"This market will resolve according to the team that wins the 2027 NFL league championship. \n\nIf at any point it becomes impossible for a listed team to win the 2027 NFL league championship per the rules of the NFL (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2027 NFL league championship game is cancelled, postponed after March 31, 2027 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from NFL (https://www.nfl.com/); however, a consensus of credible reporting may also be used.","keywords":["miami","dolphins","win","2027","nfl","football","super bowl","league","championship","dolphins win","win the","resolve","according","team","wins","championship.","point","becomes","impossible"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":14312.001774000002,"url":"https://polymarket.com/event/big-game-champion-2027","category":"sports","lastUpdated":"2026-04-20T19:49:46.217Z","numericId":"1357390","oneDayPriceChange":0.0005,"endDate":"2027-03-31"},{"id":"polymarket-0x71d8b2c03e035d60e246627c3f5563dd5db9d0beca5d93f33249bf0cffb4ee67","platform":"polymarket","title":"Will Deportivo Alavés win on 2026-04-21?","description":"In the upcoming game, scheduled for April 21, 2026\nIf Deportivo Alavés wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["deportivo","alav","win","2026-04-21","s win","win on","upcoming","game","scheduled","april","21","2026","wins","resolve"],"yesPrice":0.09,"noPrice":0.92,"yesAsk":0.09,"noAsk":0.92,"volume24h":14305.139620999995,"url":"https://polymarket.com/event/lal-rea-ala-2026-04-21","category":"other","lastUpdated":"2026-04-20T19:49:46.273Z","numericId":"1915705","oneDayPriceChange":0,"endDate":"2026-04-21"},{"id":"polymarket-0x8f3c7b50ce1659c9ff499b7c8da2dd7d539c1ece0a713f6a10c8643d8afdd934","platform":"polymarket","title":"Will Bitcoin dip to $72,000 on April 20?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for Bitcoin (BTC/USDT) on the date specified in the title, between 12:00 AM ET and 11:59 PM ET has a final \"Low\" price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Low\" prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","dip","72000","april","20","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":14230.535253000002,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-on-april-20","category":"crypto","lastUpdated":"2026-04-20T19:49:46.273Z","numericId":"2029354","oneDayPriceChange":0,"endDate":"2026-04-21"},{"id":"polymarket-0xb2f2bb9f46a4cfb138b47c1a3dc2017cb18e36b3f8c75116a1cd26d91bb50ef7","platform":"polymarket","title":"Will Elon Musk post 120-139 tweets from April 21 to April 28, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 21 12:00 PM ET to April 28, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","120-139","tweets","april","21","28","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":14172.484,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-21-april-28","category":"other","lastUpdated":"2026-04-20T19:49:46.273Z","numericId":"2010962","oneDayPriceChange":0,"endDate":"2026-04-28"},{"id":"polymarket-0x4859c59d9f38d09f339c90f49ac8c053f46d120d562984d280b3592aa8edda85","platform":"polymarket","title":"Will the highest temperature in Paris be 18°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Paris-Le Bourget Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Paris-Le Bourget Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/fr/bonneuil-en-france/LFPB.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","paris","18","april","20","resolve","range","contains","recorded","paris-le","bourget","airport","station"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":14151.691811000008,"url":"https://polymarket.com/event/highest-temperature-in-paris-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.273Z","numericId":"2011065","oneDayPriceChange":-0.0315,"endDate":"2026-04-20"},{"id":"polymarket-0xdc5369beb48ed409a27f2d90d56ea18a39ee878a042e233174ca1e09aa1d07e6","platform":"polymarket","title":"Will the highest temperature in Miami be between 82-83°F on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Miami Intl Airport Station in degrees Fahrenheit on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Miami Intl Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/us/fl/miami/KMIA.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Fahrenheit (eg, 21°F). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","miami","between","82-83","april","20","resolve","range","contains","recorded","intl","airport","station","degrees"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":14137.001703999998,"url":"https://polymarket.com/event/highest-temperature-in-miami-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.273Z","numericId":"2011161","oneDayPriceChange":-0.4545,"endDate":"2026-04-20"},{"id":"polymarket-0xa9549c44687993a9a154347c6907092341459b927efaa3f2b49009ca2c4e40a1","platform":"polymarket","title":"Will Jamie Dimon win the 2028 US Presidential Election?","description":"The 2028 US Presidential Election is scheduled to take place on November 7, 2028.\n\nThis market will resolve to the person who wins the 2028 US Presidential Election.\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race for the same candidate by the inauguration date (January 20, 2029) this market will resolve based on who is inaugurated.","keywords":["jamie","dimon","jpmorgan","bank","jamie dimon","win","2028","presidential","election","bitcoin","dimon win","win the","presidential election","scheduled","take","place","november","7","2028.","resolve","person"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":14083.954708000001,"url":"https://polymarket.com/event/presidential-election-winner-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.273Z","numericId":"561258","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x42b8d8c3d0947b421b43dd049f8d65ae64eba4967f3f45480d6874f1e4f1aba8","platform":"polymarket","title":"Will the highest temperature in Lucknow be 42°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Chaudhary Charan Singh Intl Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Chaudhary Charan Singh Intl Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/in/lucknow/VILK.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","lucknow","42","april","20","resolve","range","contains","recorded","chaudhary","charan","singh","intl"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":14067.348221000013,"url":"https://polymarket.com/event/highest-temperature-in-lucknow-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.273Z","numericId":"2011203","oneDayPriceChange":0.6845,"endDate":"2026-04-20"},{"id":"polymarket-0x1b1a75d6305f5edee255b3f368cca945bde401fea4b2a7e34f2fcca3b3e56cf0","platform":"polymarket","title":"Will Chong Won-oh win the 2026 Seoul Mayoral Election","description":"The 2026 Seoul mayoral election is scheduled to take place on June 3, 2026 to elect the next mayor of Seoul.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nIf the result of this election isn't known by January 31, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the South Korean government, specifically the National Election Commission.","keywords":["chong","won-oh","win","2026","seoul","mayoral","election","won-oh win","win the","mayoral election","scheduled","take","place","june","3","elect","next","mayor"],"yesPrice":0.89,"noPrice":0.11,"yesAsk":0.89,"noAsk":0.11,"volume24h":14055.016479,"url":"https://polymarket.com/event/2026-seoul-mayoral-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.273Z","numericId":"678937","oneDayPriceChange":-0.005,"endDate":"2026-06-03"},{"id":"polymarket-0xf480b4ea858af172baf1d8c4d2d0281ee8d2694ed9f40b12b3630c5328dfb3f6","platform":"polymarket","title":"Will the All India Trinamool Congress (AITC) win the most seats in the 2026 West Bengal Legislative Assembly election?","description":"Parliamentary elections are to be scheduled to be held in West Bengal, India, in March–April 2026.\n\nThis market will resolve according to the political party that wins the greatest number of seats in the next West Bengal Legislative Assembly election. \n\nIf the results are not known definitively by October 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nIn the event of a tie between multiple parties for the most seats won, this market will resolve in favor of the party that received a greater number of valid votes. In the event that results in a tie, this market will resolve in favor of the party whose listed abbreviation appears first in alphabetical order.\n\nThis market's resolution will be based solely on the number of seats won by the named party in the West Bengal Parliament. \n\nThis market will resolve based on the results of this election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Indian government, specifically the Election Commission of India (ECI) (eci.gov.in). If there are multiple reports, this market will resolve based on the one that includes the most Assembly Constituents (AC).","keywords":["india","modi","rupee","bse","trinamool","congress","senate","legislation","house","aitc","win","most","seats","2026","west","bengal","legislative","assembly","election","aitc win","win the","assembly election","parliamentary","elections","scheduled","held","march","april","2026.","resolve"],"yesPrice":0.51,"noPrice":0.49,"yesAsk":0.51,"noAsk":0.49,"volume24h":14013.629302000005,"url":"https://polymarket.com/event/west-bengal-legislative-assembly-election-winner","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.273Z","numericId":"951182","oneDayPriceChange":0.0375,"endDate":"2026-04-29"},{"id":"polymarket-0x471e2fa06bd8975b77be49a36781bc41286d57bffa84de55173f4eacdbd52b28","platform":"polymarket","title":"Will 40 ships transit the Strait of Hormuz on any day by April 30?","description":"This market will resolve to “Yes” if IMF Portwatch publishes a daily number of transit calls (“Arrivals of Ships”) for the Strait of Hormuz equal to or above the listed value for any date between market creation and April 30, 2026. Otherwise, this market will resolve to “No”.\n\nThe number of daily transit calls/arrivals includes container, dry bulk, roll-on/roll-off, general cargo, and tanker ships. Ships not reported by IMF Portwatch will not be considered.\n\nThis market will resolve as soon as IMF Portwatch publishes a daily number of transit calls equal to or above the specified level, or once data has been published for the final date in the specified period and no such value has been published. If no data has been published for the final date of the specified period within 14 calendar days (ET) after the end of that period, this market will resolve based on data published up to that point.\n\nRevisions to previously published data points, made within this market’s timeframe, will be considered. However, they will not disqualify a previously published data point from qualifying. Revisions to previously published data points after data is published for April 30, 2026, however, will not be considered.\n\nThe resolution source for this market will be IMF Portwatch, specifically the transit calls data published for the Strait of Hormuz at https://portwatch.imf.org/pages/cb5856222a5b4105adc6ee7e880a1730, both in the chart and through downloadable files.","keywords":["40","ships","transit","strait","hormuz","day","april","30","resolve","yes","imf","portwatch","publishes","daily","number","calls"],"yesPrice":0.47,"noPrice":0.53,"yesAsk":0.47,"noAsk":0.53,"volume24h":13963.739182,"url":"https://polymarket.com/event/will-ships-transit-the-strait-of-hormuz-on-any-day-by-end-of-april","category":"technology","lastUpdated":"2026-04-20T19:49:46.273Z","numericId":"1705152","oneDayPriceChange":0.035,"endDate":"2026-04-30"},{"id":"polymarket-0x63d8f3a34c90bd5342dda8acf62b6a898dfa52f86475efaf180b66493ef6af80","platform":"polymarket","title":"Will Jair Bolsonaro win the 2026 Brazilian presidential election?","description":"A presidential election is scheduled to take place in Brazil on October 4, 2026.\n\nThis market will resolve according to the listed candidate that wins this election.\n\nThis market includes any potential second round. If the result of this election isn't known by June 30, 2027, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the Brazilian government, specifically the Superior Electoral Court (Tribunal Superior Eleitoral, TSE) (e.g., https://dadosabertos.tse.jus.br/).","keywords":["jair","bolsonaro","win","2026","brazilian","presidential","election","bolsonaro win","win the","presidential election","scheduled","take","place","brazil","october","4","2026.","resolve"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":13950.78,"url":"https://polymarket.com/event/brazil-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"601820","oneDayPriceChange":0.001,"endDate":"2026-10-04"},{"id":"polymarket-0xa8b6d069d737a9c2468a1593f9dd1752fb5acba293caf0b7f2cedcfc620acf10","platform":"polymarket","title":"Will the highest temperature in Munich be 16°C or higher on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Munich Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Munich Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/de/munich/EDDM.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","munich","16","higher","april","20","resolve","range","contains","recorded","airport","station","degrees","celsius"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":13931.841517000003,"url":"https://polymarket.com/event/highest-temperature-in-munich-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"2011221","oneDayPriceChange":-0.0285,"endDate":"2026-04-20"},{"id":"polymarket-0x394b2be88763473da1df0943c934cfdc06cd33dea1c883cb178bfc56eb3a5c52","platform":"polymarket","title":"Will Toni Atkins win the California Governor Election in 2026?","description":"This market will resolve to according to the candidate who wins the 2026 California gubernatorial election currently scheduled for November 3, 2026.\n\nIf the results of the election are not confirmed by July 31, 2027, this market will resolve to \"Other\".\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race in this state for the same candidate, this market will resolve based on official certification.","keywords":["toni","atkins","win","california","governor","election","2026","atkins win","win the","governor election","election in","resolve","according","candidate","wins","gubernatorial","currently","scheduled","november"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":13911.416,"url":"https://polymarket.com/event/california-governor-election-2026","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"628945","oneDayPriceChange":0,"endDate":"2026-11-03"},{"id":"polymarket-0xe4fe433d7a047e6a7a4addda6a8df73815d86e1b0041f04cd2380d4e00b910f7","platform":"polymarket","title":"Will Bitcoin dip to $74,000 on April 20?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for Bitcoin (BTC/USDT) on the date specified in the title, between 12:00 AM ET and 11:59 PM ET has a final \"Low\" price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Low\" prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","dip","74000","april","20","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":13895.670855999999,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-on-april-20","category":"crypto","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"2029349","oneDayPriceChange":0,"endDate":"2026-04-21"},{"id":"polymarket-0x869bfaa8736b3b7628b0e412b17f69a57776cbee1bd8c8ef1d42be0dd23edd85","platform":"polymarket","title":"Will \"Thrash\" be the top US Netflix movie this week?","description":"Netflix is expected to update its Top 10 Movies list on top10.netflix.com on Tuesday, April 21, 2026, 3:00 PM ET, reflecting viewership from the previous week (Monday to Sunday).\n\nThis market will resolve based on which movie this update ranks as the #1 Netflix movie in the United States.\n\nThe ranking is based on total views in the United States, as reported by Netflix for movies.\n\nIf the top10.netflix.com update does not occur by April 24, 2026, 11:59 PM ET, this market will resolve to \"Other\".","keywords":["thrash","top","netflix","streaming","content","series","movies","movie","film","cinema","box office","week","expected","update","10","list","top10.netflix.com","tuesday","april","21"],"yesPrice":0.97,"noPrice":0.03,"yesAsk":0.97,"noAsk":0.03,"volume24h":13820.019113,"url":"https://polymarket.com/event/what-will-be-the-top-us-netflix-movie-this-week-671","category":"other","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"1984854","oneDayPriceChange":0.0035,"endDate":"2026-04-21"},{"id":"polymarket-0xa8ff8edde7ae952227d2dfa0378d8dd83bcff4b4385919fc39bbf9fdbd3bda7a","platform":"polymarket","title":"Will Kevin Hassett be confirmed as Fed Chair?","description":"This market will resolve according to the next individual formally confirmed as Chair of the Federal Reserve.\n\nFormal confirmation as Chair of the Federal Reserve requires the Senate to confirm a nominee as Chair of the Federal Reserve. Recess appointments without Senate confirmation will not count. Senate confirmation of a listed individual as a member of the Federal Reserve Board of Governors will not alone qualify.\n\nIf no Senate confirmation for the position of Chair of the Federal Reserve has occurred by December 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThe primary resolution source for this market is official information from the U.S. Senate; however, a consensus of credible reporting may also be used.","keywords":["kevin","hassett","confirmed","fed","federal reserve","fomc","interest rates","chair","resolve","according","next","individual","formally","federal","reserve.","formal"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":13808.880832,"url":"https://polymarket.com/event/who-will-be-confirmed-as-fed-chair","category":"economics","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"1500756","oneDayPriceChange":0,"endDate":"2026-10-31"},{"id":"polymarket-0x11375fe1cf6665bbdee0cba5c2d48be1dedafab87841bd2eb8bc778c0402f457","platform":"polymarket","title":"Will Katie Porter win the California Governor Election in 2026?","description":"This market will resolve to according to the candidate who wins the 2026 California gubernatorial election currently scheduled for November 3, 2026.\n\nIf the results of the election are not confirmed by July 31, 2027, this market will resolve to \"Other\".\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race in this state for the same candidate, this market will resolve based on official certification.","keywords":["katie","porter","win","california","governor","election","2026","porter win","win the","governor election","election in","resolve","according","candidate","wins","gubernatorial","currently","scheduled","november"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":13755.181337000005,"url":"https://polymarket.com/event/california-governor-election-2026","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"628938","oneDayPriceChange":-0.004,"endDate":"2026-11-03"},{"id":"polymarket-0xfa7e0faadeddbaa3d8f24a7fbe04fa0b02a7a5fd00c62dba2888b1cb24387be2","platform":"polymarket","title":"Kash Patel out by April 30?","description":"This market will resolve to “Yes” if Kash Patel ceases to be the Director of the Federal Bureau of Investigation for any period of by the listed date, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nAn announcement of Patel's resignation/removal before this market's end date will immediately resolve this market to \"Yes\", regardless of when the announced resignation/removal goes into effect.\n\nThe resolution source for this market will be official information from the Trump administration, however a consensus of credible reporting may also be used.","keywords":["kash","patel","out","april","30","resolve","yes","ceases","director","federal","bureau","investigation","period"],"yesPrice":0.21,"noPrice":0.79,"yesAsk":0.21,"noAsk":0.79,"volume24h":13715.558232000009,"url":"https://polymarket.com/event/kash-patel-out-by","category":"other","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"1838758","oneDayPriceChange":-0.0435,"endDate":"2026-06-30"},{"id":"polymarket-0xa1f08ec3bcc1434cb0b695bd5ee9f81268ef45fb73f752b3a1c1fb1d35750866","platform":"polymarket","title":"Will Real Madrid win the 2025–26 La Liga?","description":"This is a polymarket on whether the listed club will win the 2025–26 La Liga.\n\nThis market will resolve to \"Yes\" if the listed club is officially crowned the winner of the 2025–26 La Liga. Otherwise, it will resolve to \"No\".\n\nIf at any point it becomes impossible for the listed club to win the league (e.g. they are mathematically eliminated), the market will resolve to \"No\".\n\nIf the 2025–26 La Liga season is canceled or not completed by October 1, 2026, this market will resolve to \"Other\".\n\nThe primary resolution source will be official information from La Liga. A consensus of credible reporting may also be used.","keywords":["real","madrid","win","2025","26","liga","real madrid","soccer","la liga","champions league","madrid win","win the","football","spain","polymarket","listed","club","liga.","resolve","yes","officially","crowned"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":13593.531656,"url":"https://polymarket.com/event/la-liga-winner-114","category":"other","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"566227","oneDayPriceChange":0.004,"endDate":"2026-05-30"},{"id":"polymarket-0x488317fcc149d0669b0dce80d07f037b1726812ad367d353262379d168b9eb7c","platform":"polymarket","title":"Will Juliano Floss win Big Brother Brasil 26?","description":"This market will resolve to the contestant who wins Big Brother Brasil 26.\n\nIf Big Brother Brasil 26 concludes without a winner being declared, or if Big Brother Brasil 26 has otherwise not concluded by April 30, 2026, 11:59PM ET this market will resolve to \"Other\". In the case of a tie, this market will resolve in favor of the listed contestant whose name comes first in alphabetical order. \n\nThis market will remain open until the conclusion of the season.\n\nThe resolution source for this market will be the official broadcast of the final episode of Big Brother Brasil 26.","keywords":["juliano","floss","win","big","brother","brasil","26","floss win","win big","resolve","contestant","wins","26.","concludes","without","winner","declared"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":13561.234804,"url":"https://polymarket.com/event/who-will-win-big-brother-brasil-26","category":"other","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"1229044","oneDayPriceChange":0.0015,"endDate":"2026-04-30"},{"id":"polymarket-0xcddc048c672ee233890b99b18885dbd510e3db3d67c53afb408ddc93f9aadff4","platform":"polymarket","title":"Will the US confirm that aliens exist by May 31?","description":"This market will resolve to \"Yes\" if the President of the United States, any member of the Cabinet of the United States, any member of the Joint Chiefs of Staff, or any US federal agency definitively states that extraterrestrial life or technology exists by May 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nThe primary resolution source for this market will be official information from the government of the United States, however a consensus of credible reporting will also be used.","keywords":["confirm","aliens","exist","31","resolve","yes","president","united","states","member","cabinet","joint"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":13441.936468,"url":"https://polymarket.com/event/will-the-us-confirm-that-aliens-exist-before-2027","category":"other","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"2034747","oneDayPriceChange":0,"endDate":"2026-05-31"},{"id":"polymarket-0x96112c3ac47d7b6da013526775d5a56d4ed341054359ba8bde6e4e65a556a0af","platform":"polymarket","title":"Will Russia enter Verkhnia Tersa by April 30, 2026?","description":"This market will resolve to “Yes” if, according to the ISW map, Russia captures any territory of Verkhnia Tersa, Zaporizhzhia Oblast, (47.695737° N, 36.084864° E) between market creation and the specified date 2026 (ET).\n\nTerritory will be considered captured if any part of the specified territory is shaded under a below specified layer on the ISW map (https://storymaps.arcgis.com/stories/36a7f6a6f5a9448496de641cf64bd375) by the resolution date. Otherwise, the market will resolve to “No”.\n\nFor any change on the ISW map to qualify for this market’s resolution, the relevant shading indicating Russian control must persist through the next full ISW daily update cycle. If ISW skips a day, shading must persist until the next finalized ISW update is published, regardless of the date. Any continuous shading which reflects either \"Assessed Russian Infiltration Areas in Ukraine\", “Assessed Russian Control”, “Assessed Russian Advance In Ukraine”, or “Assessed Russian Gains in the Past 24 Hours” will qualify. \n\nOnce a qualifying condition is met, any subsequent loss of control will not be considered towards the resolution of this market.\n\nIf Russia comes into control of the specified territory as a result of a negotiated settlement, this will qualify for a 'Yes' resolution, regardless of whether it is shaded red in the ISW map. However, an announcement of a negotiated settlement that gives Russia de jure control will not qualify. Actual control must be established.\n\nThe primary resolution source for this market will be the ISW Ukraine map. If the ISW map is rendered unavailable, information from DeepStateMap (https://deepstatemap.live/) may be used. If information from both the ISW and DeepStateMap are rendered permanently unavailable, a consensus of credible reporting may be used.\n\nNote: Any temporary glitches or errors in the map will not be considered.","keywords":["russia","enter","verkhnia","tersa","april","30","2026","resolve","yes","according","isw","map","captures","territory","zaporizhzhia"],"yesPrice":0.89,"noPrice":0.11,"yesAsk":0.89,"noAsk":0.11,"volume24h":13290.570861,"url":"https://polymarket.com/event/will-russia-enter-verkhnia-tersa-by-february-28","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"1729605","oneDayPriceChange":0.75,"endDate":"2026-04-30"},{"id":"polymarket-0xd5892129611bd18b9af2084576175dea2fcff5bdd6b6ebdea9ef5423302e1ebb","platform":"polymarket","title":"Will the highest temperature in Munich be 14°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Munich Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Munich Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/de/munich/EDDM.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","munich","14","april","20","resolve","range","contains","recorded","airport","station","degrees","celsius"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":13289.298239000003,"url":"https://polymarket.com/event/highest-temperature-in-munich-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"2011219","oneDayPriceChange":0.5695,"endDate":"2026-04-20"},{"id":"polymarket-0xb3a562a248cedb92fa53593f68207de340f78adaeeb2bb85552acede861620b0","platform":"polymarket","title":"Will the highest temperature in New York City be between 52-53°F on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the LaGuardia Airport Station in degrees Fahrenheit on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the LaGuardia Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/us/ny/new-york-city/KLGA.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Fahrenheit (eg, 21°F). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","new","york","city","between","52-53","april","20","resolve","range","contains","recorded","laguardia","airport","station","degrees"],"yesPrice":0.06,"noPrice":0.94,"yesAsk":0.06,"noAsk":0.94,"volume24h":13281.724366,"url":"https://polymarket.com/event/highest-temperature-in-nyc-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"2011127","oneDayPriceChange":-0.19,"endDate":"2026-04-20"},{"id":"polymarket-0x2972fe6bf03e5b4b21b135c69689710e184d300185540827c5c8fe4a135121c8","platform":"polymarket","title":"Will the Minnesota Vikings win the 2027 NFL league championship?","description":"This market will resolve according to the team that wins the 2027 NFL league championship. \n\nIf at any point it becomes impossible for a listed team to win the 2027 NFL league championship per the rules of the NFL (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2027 NFL league championship game is cancelled, postponed after March 31, 2027 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from NFL (https://www.nfl.com/); however, a consensus of credible reporting may also be used.","keywords":["minnesota","vikings","win","2027","nfl","football","super bowl","league","championship","vikings win","win the","resolve","according","team","wins","championship.","point","becomes","impossible"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":13278.306556000001,"url":"https://polymarket.com/event/big-game-champion-2027","category":"sports","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"1357391","oneDayPriceChange":0.001,"endDate":"2027-03-31"},{"id":"polymarket-0xa04f9a5818493b03a94d86c6323b7c9d8e060fa86b7e1ed3c0a2ad9a5517425b","platform":"polymarket","title":"Will A Just Russia – For Truth (SRZP) gain the most seats in the next Russian parliamentary election?","description":"Parliamentary elections are to be scheduled to be held in Russia in September 2026.\n\nThis market will resolve according to the political party that gains the greatest number of seats in the next Russian State Duma election, compared to before the election.\n\nIf the results are not known definitively by September 30, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nIn the event of a tie between multiple parties for the most seats gained, this market will resolve in favor of the party that received a greater number of valid votes. In the event that results in a tie, this market will resolve in favor of the party whose listed abbreviation appears first in alphabetical order.\n\nThis market's resolution will be based solely on the number of seats gained by the named party in the State Duma of the Federal Assembly of the Russian Federation.\n\nThis market will resolve based on the results of this election, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results reported by Russian government sources such as the Central Election Commission of the Russian Federation.","keywords":["just","russia","truth","srzp","gain","most","seats","next","russian","parliamentary","election","parliamentary election","elections","scheduled","held","september","2026.","resolve","according","political"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":13258.75930499999,"url":"https://polymarket.com/event/which-party-will-gain-most-seats-in-russian-parliamentary-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"1130014","oneDayPriceChange":0,"endDate":"2026-09-30"},{"id":"polymarket-0xb2590b9606332da86166e708b947332ff7edaa4f4d844d078a97bbc9862745cf","platform":"polymarket","title":"Will the highest temperature in Hong Kong be 30°C on April 21?","description":"This market will resolve to the temperature range that contains the highest temperature recorded by the Hong Kong Observatory in degrees Celsius on 21 Apr '26.\n\nThe resolution source for this market will be information from the Hong Kong Observatory, specifically the \"Absolute Daily Max (deg. C)\" the specified date once information is finalized in the relevant \"Daily Extract\", available here: https://www.weather.gov.hk/en/cis/climat.htm\n\nThis market can not resolve to \"Yes\" until data for this date has been finalized.\n\nThe resolution source for this market measures temperatures in Celsius to one decimal place (eg, 9.1°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","hong","kong","30","april","21","resolve","range","contains","recorded","observatory","degrees","celsius","apr"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":13241.416209000014,"url":"https://polymarket.com/event/highest-temperature-in-hong-kong-on-april-21-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"2019317","oneDayPriceChange":-0.122,"endDate":"2026-04-21"},{"id":"polymarket-0xba75e6ba41372e351ed4755f183c1cdb082bd7cf6182a6d80dc445869c09de10","platform":"polymarket","title":"Will Luis Gilberto Murillo win the 2026 Colombian presidential election?","description":"Colombia's presidential elections are scheduled for May 31, 2026, and a second round (if required) on June 21, 2026, in case no candidate secures more than 50% of the valid votes in the first round.\n\nThis market will resolve according to the listed candidate that wins this election. \n\nThis market includes any potential second round. If the result of this election isn't known by December 31, 2026, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["luis","gilberto","murillo","win","2026","colombian","presidential","election","murillo win","win the","presidential election","colombia's","elections","scheduled","31","second","round","required","june"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":13217.235999999997,"url":"https://polymarket.com/event/colombia-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"569357","oneDayPriceChange":0,"endDate":"2026-06-21"},{"id":"polymarket-0x586ad2eddd652ad966e0758295a74589db3c433daf78abfa8f24fcdd9775a18b","platform":"polymarket","title":"Will Ethereum dip to $1,800 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for ETH/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final Low price equal to or lower than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the ETH/USDT Low prices available at https://www.binance.com/en/trade/ETH_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance ETH/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["ethereum","eth","crypto","dip","1800","april","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":13144.277211999999,"url":"https://polymarket.com/event/what-price-will-ethereum-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:46.274Z","numericId":"1823800","oneDayPriceChange":-0.0215,"endDate":"2026-05-01"},{"id":"polymarket-0x2ac4b4c0c83f0d0d596ae640dd3da9a351b69c4a2e8c545b601bc5033d754845","platform":"polymarket","title":"Will Tottenham Hotspur FC win on 2026-04-25?","description":"In the upcoming game, scheduled for April 25, 2026\nIf Tottenham Hotspur FC wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["tottenham","soccer","premier league","spurs","hotspur","win","2026-04-25","fc win","win on","upcoming","game","scheduled","april","25","2026","wins","resolve"],"yesPrice":0.56,"noPrice":0.44,"yesAsk":0.56,"noAsk":0.44,"volume24h":13133.345459,"url":"https://polymarket.com/event/epl-wol-tot-2026-04-25","category":"other","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"1953335","oneDayPriceChange":0.04,"endDate":"2026-04-25"},{"id":"polymarket-0x71ca1985c1f0bd569ac6881856557a62eee0ecf09c446fd8f249c0f54ffd01cd","platform":"polymarket","title":"Will the Finding Satoshi documentary identify Nick Szabo as Satoshi?","description":"This market will resolve to the individual identified as the primary creator of Bitcoin by the “Finding Satoshi” documentary expected to release on April 22 (https://www.youtube.com/watch?v=gVxAwomug08).\n\nIf the documentary identifies multiple individuals, this market will resolve according to the individual which the documentary most directly depicts, or presents as most likely to be responsible for creating Bitcoin.\n\nIf multiple individuals are presented as equally likely in the conclusion of the documentary, the market will resolve to \"Other\".\n\nIf the documentary is not released by April 30, 2026, this market will resolve to \"Other\".","keywords":["finding","satoshi","bitcoin","btc","documentary","identify","nick","szabo","resolve","individual","identified","primary","creator","content creator","influencer","youtuber"],"yesPrice":0.06,"noPrice":0.94,"yesAsk":0.06,"noAsk":0.94,"volume24h":13071.864286,"url":"https://polymarket.com/event/who-will-the-finding-satoshi-documentary-identify-as-satoshi","category":"other","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"1973480","oneDayPriceChange":0.0285,"endDate":"2026-05-01"},{"id":"polymarket-0x3b6e28dcff1d4cfed3e169baefd383fb2ac39698d695baaf9eeb73f0e83cd6f0","platform":"polymarket","title":"Pete Hegseth out as Secretary of Defense by April 30?","description":"This market will resolve to “Yes” if Pete Hegseth ceases to be U.S. Secretary of Defense for any period of time between market creation and the specified date (ET). Otherwise, this market will resolve to “No”.\n\nAn announcement of Pete Hegseth's resignation/removal before this market's end date will immediately resolve this market to \"Yes\", regardless of when the announced resignation/removal goes into effect.\n\nThe resolution source for this market will be official information from Pete Hegseth and the U.S. government; however, a consensus of credible reporting may also be used.","keywords":["pete","hegseth","out","secretary","defense","april","30","resolve","yes","ceases","u.s.","period","time","between","creation"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":13065.785368999994,"url":"https://polymarket.com/event/pete-hegseth-out-as-secretary-of-defense-by-april-30","category":"crypto","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"1651389","oneDayPriceChange":-0.0305,"endDate":"2026-04-30"},{"id":"polymarket-0xe57224ba0698435987e8434461b1edd5f32a381c988bbf2609407e9127a8e021","platform":"polymarket","title":"Will the highest temperature in Ankara be 15°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Esenboğa Intl Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Esenboğa Intl Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/tr/%C3%A7ubuk/LTAC.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","ankara","15","april","20","resolve","range","contains","recorded","esenbo","intl","airport","station"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":13052.399152999998,"url":"https://polymarket.com/event/highest-temperature-in-ankara-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"2011185","oneDayPriceChange":-0.0545,"endDate":"2026-04-20"},{"id":"polymarket-0x6468c95a0308394330bf55ae21835c8a341bf7efaeb697964ea5f9107972da2c","platform":"polymarket","title":"Will Trump agree to unfreeze Iranian assets in April?","description":"This market will resolve to “Yes” if the United States agrees to unfreeze any Iranian assets by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No.”\n\nUnfreezing Iranian assets refers to the release, transfer, or restoration of Iranian access to any assets that are frozen, blocked, or otherwise inaccessible due to U.S. sanctions or restrictions. This includes both assets held in the United States and assets held in foreign jurisdictions where access is restricted due to U.S. sanctions. The removal of sanctions which freeze these assets will also be considered to be unfreezing Iranian assets.\n\nThe United States will be considered to have agreed to unfreeze Iranian assets if:\n- Donald Trump or another authorized representative of the Government of the United States publicly announces that the United States has agreed to unfreeze any Iranian assets.\n- The unfreezing of any Iranian assets is included as part of a treaty or deal that is formally established between the United States and Iran, either through signing or other formal means.\n\nAgreement refers to an explicit acceptance, authorization or consent to the specified action. Only announcements of definitive agreement will qualify. Suggestions, negotiations, expressions of openness, or other non-definitive statements will not qualify.\n\nAny definitive agreement or commitment made before the resolution date will be considered, regardless of when or whether the specified action is begun.\n\nThe primary resolution source for this market will be official statements from Donald Trump, the U.S. government, and their official representatives; however, a consensus of credible reporting may also be used to verify the details of an announcement or formal agreement.","keywords":["trump","president","potus","administration","gop","republican","agree","unfreeze","iranian","assets","april","resolve","yes","united","states","agrees","30","2026","11"],"yesPrice":0.42,"noPrice":0.57,"yesAsk":0.42,"noAsk":0.57,"volume24h":13047.79939,"url":"https://polymarket.com/event/what-will-the-us-agree-to","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"1974453","oneDayPriceChange":0.03,"endDate":"2026-04-30"},{"id":"polymarket-0xe9c985b239ff509e08708b0a46f39170939b58fe7b0463326f60fc01b6eecba6","platform":"polymarket","title":"Will MrBeast's next video get between 70 and 80 million views on week 1?","description":"This market will resolve according to the number of views the next YouTube video posted by MrBeast after this market's creation gets in the first 7 days after being posted.\n\nIf MrBeast does not post a YouTube video by May 31, 2026, 11:59 PM ET, this market will resolve to the lowest range bracket.\n\nIf the reported value falls exactly between two brackets, this market will resolve to the higher range bracket.\n\nThe resolution source for this is MrBeast's YouTube channel (https://www.youtube.com/@MrBeast), specifically the 'views' counter for the described video.\n\nNote: This market refers to MrBeast's next video posted. Shorts, previews, or other videos released other than the referenced video will not be considered.","keywords":["mrbeast's","next","video","get","between","70","80","million","views","youtube","tiktok","content creator","week","1","resolve","according","number","posted","mrbeast","youtube","content creator","jimmy donaldson"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":13047.020429,"url":"https://polymarket.com/event/of-views-of-next-mrbeast-video-on-week-1-343","category":"other","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"1970132","oneDayPriceChange":-0.1055,"endDate":"2026-05-31"},{"id":"polymarket-0xc8ea16becb3abd02e986e459dacfc6d580c38af880faa5d5259e4b3702264cde","platform":"polymarket","title":"Will the highest temperature in Buenos Aires be 19°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Minister Pistarini Intl Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Minister Pistarini Intl Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/ar/ezeiza/SAEZ.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","buenos","aires","19","april","20","resolve","range","contains","recorded","minister","pistarini","intl","airport"],"yesPrice":0.91,"noPrice":0.09,"yesAsk":0.91,"noAsk":0.09,"volume24h":13024.426311000003,"url":"https://polymarket.com/event/highest-temperature-in-buenos-aires-on-april-20-2026","category":"technology","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"2011083","oneDayPriceChange":0.907,"endDate":"2026-04-20"},{"id":"polymarket-0x6099e6b30c4ee1d3121e5ebe4760ebff446ec5d7eef1b9c43dd2e9cfd59a556c","platform":"polymarket","title":"Will the San Francisco 49ers win the 2027 NFL league championship?","description":"This market will resolve according to the team that wins the 2027 NFL league championship. \n\nIf at any point it becomes impossible for a listed team to win the 2027 NFL league championship per the rules of the NFL (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2027 NFL league championship game is cancelled, postponed after March 31, 2027 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from NFL (https://www.nfl.com/); however, a consensus of credible reporting may also be used.","keywords":["san","francisco","49ers","win","2027","nfl","football","super bowl","league","championship","49ers win","win the","resolve","according","team","wins","championship.","point","becomes","impossible"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":12992.765649000003,"url":"https://polymarket.com/event/big-game-champion-2027","category":"sports","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"1357398","oneDayPriceChange":0.0025,"endDate":"2027-03-31"},{"id":"polymarket-0xa73a98fdb8ad6d042680dac7f20836dc17156fd7a13c6388957a48e05068fe02","platform":"polymarket","title":"Will Luiz Inácio Lula da Silva be the next leader out before 2027?","description":"This market will resolve according to the first individual who ceases to occupy their listed office.\n\nAn announcement of a resignation/removal, or a scheduled departure from office due to the outcome of an election, will not alone qualify.\n\nOnly permanent removal from office will qualify for resolution. Temporary removals, such as impeachment suspensions (e.g., Yoon Suk Yeol's recent impeachment), temporary invocation of the 25th Amendment, or any similar provisional transfers of power, will not count.\n\nAdditionally, if an individual continues in a caretaker or interim role (e.g., Gabriel Attal remaining as caretaker Prime Minister of France), they will not be considered to have ceased occupying the office for the purposes of this market.\n\nIf this criterion has not been met for any of the listed individuals by December 31, 2026, 11:59 PM ET, this market will resolve to “None before 2027”. No additional individuals will be added to this market after its creation.\n\nThe resolution source for this market will be a consensus of credible reporting.","keywords":["luiz","cio","lula","silva","next","leader","out","before","2027","out before","before 2027","resolve","according","first","individual","ceases","occupy","listed","office."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":12967.577,"url":"https://polymarket.com/event/next-leader-out-of-power-before-2027-795","category":"other","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"1485223","oneDayPriceChange":0,"endDate":"2026-12-31"},{"id":"polymarket-0xe24c3f7d4cd7403f2575445430f8f89f1dc7cdf4e3a275d8cbaf75f5008b2aa5","platform":"polymarket","title":"Will Malta win Eurovision 2026?","description":"This market will resolve to the country whose candidate for Eurovision 2026 wins.\n\nIf at any point it is impossible for the listed candidate to win Eurovision 2026 based on the rules of the competition (i.e. they are eliminated), this market may immediately resolve to \"No\".\n\nIf no winner is announced by July 31, 2026, 11:59 PM ET, this market will resolve \"Other\". All ties will be broken according to EBU's official Eurovision rules.\n\nThe primary resolution source for this market will be official information from Eurovision (https://eurovision.tv/), including live footage of Eurovision 2026, however a consensus of credible reporting will suffice.","keywords":["malta","win","eurovision","2026","malta win","win eurovision","resolve","country","whose","candidate","wins.","point","impossible","listed"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":12939.991989999997,"url":"https://polymarket.com/event/eurovision-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"842025","oneDayPriceChange":-0.0005,"endDate":"2026-05-16"},{"id":"polymarket-0x3b6cdd4f72cef7f29ff7e054444095564dc582266b7230be3c2b5f194d89f37d","platform":"polymarket","title":"Will the Los Angeles Kings win the 2026 NHL Stanley Cup?","description":"This market will resolve to “Yes” if the Los Angeles Kings win the 2026 NHL Stanley Cup. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NHL Stanley Cup based off the rules of the NHL.\n\nThe resolution source for this market will be information from the NHL.\n","keywords":["los","angeles","kings","win","2026","nhl","hockey","stanley","cup","kings win","win the","resolve","yes","cup.","otherwise","no","becomes","impossible","team"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":12902.497852999997,"url":"https://polymarket.com/event/2026-nhl-stanley-cup-champion","category":"sports","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"553831","oneDayPriceChange":0,"endDate":"2026-06-30"},{"id":"polymarket-0x119b6b3b744ac3239c7a71100165d254234eaecea401abde5a3d303bef21d19e","platform":"polymarket","title":"Will Steve Hilton win the California Governor Election in 2026?","description":"This market will resolve to according to the candidate who wins the 2026 California gubernatorial election currently scheduled for November 3, 2026.\n\nIf the results of the election are not confirmed by July 31, 2027, this market will resolve to \"Other\".\n\nThe resolution source for this market is the Associated Press, Fox News, and NBC. This market will resolve once all three sources call the race for the same candidate. If all three sources haven’t called the race in this state for the same candidate, this market will resolve based on official certification.","keywords":["steve","hilton","win","california","governor","election","2026","hilton win","win the","governor election","election in","resolve","according","candidate","wins","gubernatorial","currently","scheduled","november"],"yesPrice":0.06,"noPrice":0.94,"yesAsk":0.06,"noAsk":0.94,"volume24h":12866.041950000008,"url":"https://polymarket.com/event/california-governor-election-2026","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"628940","oneDayPriceChange":-0.002,"endDate":"2026-11-03"},{"id":"polymarket-0xf362ea6dd9e7d0d0878d02c505f73a850be676befcec3724254e52fea0968084","platform":"polymarket","title":"Will Solana reach $120 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for SOL/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final High price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the SOL/USDT High prices available at https://www.binance.com/en/trade/SOL_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance SOL/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["solana","sol","crypto","reach","120","april","solana reach","reach 120","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":12747.595503999999,"url":"https://polymarket.com/event/what-price-will-solana-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"1823885","oneDayPriceChange":0,"endDate":"2026-05-01"},{"id":"polymarket-0x87c696852b80f378ae877a928f2cc62c0ea1a68f0a398ca58d9cdfe853d2d521","platform":"polymarket","title":"Will the Los Angeles Lakers win the NBA Western Conference Finals?","description":"This market will resolve to “Yes” if the Los Angeles Lakers win the 2025–2026 NBA Western Conference Finals. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2025–26 NBA Western Conference Finals based on the rules of the NBA.\n\nIf the 2025-26 NBA Western Conference Finals winner is not announced by June 30, 2026, this market will resolve to “Other”.\n\nThe resolution source for this market will be information from the NBA.","keywords":["los","angeles","lakers","los angeles","nba","basketball","win","western","conference","finals","lakers win","win the","resolve","yes","2025","2026","finals.","otherwise","no","becomes"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":12707.35145,"url":"https://polymarket.com/event/nba-western-conference-champion-933","category":"sports","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"564213","oneDayPriceChange":-0.001,"endDate":"2026-06-16"},{"id":"polymarket-0xf1ed2e6df582b055e94b3ff00b9dce996af9f04c5cc67e9a6fbfef487169c0e7","platform":"polymarket","title":"Will Tesla be the largest company in the world by market cap on June 30?","description":"This market will resolve to the largest company in the world by market cap on June 30, 2026, as of market close.\n\nThe resolution source for this market will be a consensus of credible reporting.","keywords":["tesla","ev","electric vehicle","elon musk","largest","company","world","cap","june","30","resolve","2026","close.","resolution","source","consensus","credible","reporting."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":12699.2915,"url":"https://polymarket.com/event/largest-company-end-of-june-712","category":"technology","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"631185","oneDayPriceChange":0,"endDate":"2026-06-30"},{"id":"polymarket-0xb0dc25ce8888cc89c2639d3b1c4d53aeb81afcbeae79d2450fdd8a6db384223f","platform":"polymarket","title":"Will France send warships through the Strait of Hormuz by April 30, 2026?","description":"This market will resolve to \"Yes\" if a national government, its military, or a broad consensus of credible reporting confirms that the listed country's warships transited through the Strait of Hormuz by April 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nA \"warship transit\" is defined as a military vessel passing through the Strait of Hormuz. Military cargo or support vessels will be considered “warships”; however, commercial or civilian vessels will not qualify.\n\nFor the purposes of this market, only transits through the Strait of Hormuz will be considered, defined as passage through the narrowest portion of the waterway between Iran and Oman. Operations solely in the Persian Gulf, Gulf of Oman, or Arabian Sea without passage through this narrowest section will not qualify.\n\nOfficial confirmation by a national government or its military that its vessels transited through the Strait of Hormuz during the specified timeframe will resolve this market immediately. An overwhelming consensus of credible reporting confirming that such a transit occurred during the specified timeframe will also suffice.\n\nQualifying confirmations include statements such as official announcements that a country has deployed naval vessels to transit or escort shipping through the Strait of Hormuz.\n\nConfirmations referring only to naval presence in the broader region, including the Persian Gulf, Gulf of Oman, or Arabian Sea, without confirmed transit through the Strait itself, as well as aerial operations, cyber operations, or actions by proxies or third parties, will not alone qualify.\n\nThe primary resolution source for this market will be official information by the respective national governments or their militaries; however, an overwhelming consensus of credible reporting will also suffice.","keywords":["france","send","warships","through","strait","hormuz","april","30","2026","resolve","yes","national","government","military","broad","consensus","credible"],"yesPrice":0.07,"noPrice":0.93,"yesAsk":0.07,"noAsk":0.93,"volume24h":12681.064788999998,"url":"https://polymarket.com/event/which-countries-will-send-warships-through-the-strait-of-hormuz-by-april-30","category":"technology","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"1742087","oneDayPriceChange":-0.0065,"endDate":"2026-04-30"},{"id":"polymarket-0x598654e5e8ad06b44107cb541773c459580dfc208fc74e4694d1ada41d679c1d","platform":"polymarket","title":"Will the Pittsburgh Pirates win the 2026 World Series?","description":"This market will resolve according to the team that wins the 2026 MLB World Series. \n\nIf at any point it becomes impossible for a listed team to win the 2026 MLB World Series per the rules of MLB (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2026 MLB season is cancelled, postponed after December 31, 2026 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from MLB (https://www.mlb.com/); however, a consensus of credible reporting may also be used.","keywords":["pittsburgh","pirates","win","2026","world","series","pirates win","win the","resolve","according","team","wins","mlb","baseball","series.","point"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":12639.415313000001,"url":"https://polymarket.com/event/mlb-world-series-champion-2026","category":"economics","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"1235571","oneDayPriceChange":0.0035,"endDate":"2026-10-31"},{"id":"polymarket-0x358a4c706ce29a1847d26244857c6272e5359a17aad079f5672c8fb40d50d66c","platform":"polymarket","title":"Will Sergio Fajardo win the 2026 Colombian presidential election?","description":"Colombia's presidential elections are scheduled for May 31, 2026, and a second round (if required) on June 21, 2026, in case no candidate secures more than 50% of the valid votes in the first round.\n\nThis market will resolve according to the listed candidate that wins this election. \n\nThis market includes any potential second round. If the result of this election isn't known by December 31, 2026, 11:59 PM ET, the market will resolve to \"Other\".\n\nThis market will resolve based on the election results, as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by Colombia's National Civil Registry (Registraduría Nacional del Estado Civil) (https://registraduria.gov.co).","keywords":["sergio","fajardo","win","2026","colombian","presidential","election","fajardo win","win the","presidential election","colombia's","elections","scheduled","31","second","round","required","june"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":12637.766080999998,"url":"https://polymarket.com/event/colombia-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"569363","oneDayPriceChange":-0.001,"endDate":"2026-06-21"},{"id":"polymarket-0x4a67e1270a2ed86be8fc524b6114640e41b0c56303ecaa9584deacd62402650a","platform":"polymarket","title":"Will the Edmonton Oilers win the 2026 NHL Stanley Cup?","description":"This market will resolve to “Yes” if the Edmonton Oilers win the 2026 NHL Stanley Cup. Otherwise, this market will resolve to “No”.\n\nThis market will resolve to “No” if it becomes impossible for this team to win the 2026 NHL Stanley Cup based off the rules of the NHL.\n\nThe resolution source for this market will be information from the NHL.\n","keywords":["edmonton","oilers","win","2026","nhl","hockey","stanley","cup","oilers win","win the","resolve","yes","cup.","otherwise","no","becomes","impossible","team"],"yesPrice":0.1,"noPrice":0.91,"yesAsk":0.1,"noAsk":0.91,"volume24h":12592.120993,"url":"https://polymarket.com/event/2026-nhl-stanley-cup-champion","category":"sports","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"553826","oneDayPriceChange":0.02,"endDate":"2026-06-30"},{"id":"polymarket-0xa75a3ff8de21dd35fa5550a886713949f326375ba98aac2fa838f9d600dab603","platform":"polymarket","title":"Will CA Barracas Central win on 2026-04-20?","description":"In the upcoming game, scheduled for April 20, 2026\nIf CA Barracas Central wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["barracas","central","win","2026-04-20","central win","win on","upcoming","game","scheduled","april","20","2026","wins","resolve"],"yesPrice":0.13,"noPrice":0.87,"yesAsk":0.13,"noAsk":0.87,"volume24h":12545.624543000002,"url":"https://polymarket.com/event/arg-bar-bel-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"1744775","oneDayPriceChange":-0.145,"endDate":"2026-04-20"},{"id":"polymarket-0x305092ad3d8d41bb031c7aaeac523ff47feed0c2e4fc4f92940fdaf732d54238","platform":"polymarket","title":"Will the highest temperature in Madrid be 28°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Adolfo Suárez Madrid-Barajas Airport Station in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Adolfo Suárez Madrid-Barajas Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/es/madrid/LEMD.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","madrid","28","april","20","resolve","range","contains","recorded","adolfo","rez","madrid-barajas","airport"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":12528.343047,"url":"https://polymarket.com/event/highest-temperature-in-madrid-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"2011295","oneDayPriceChange":0.5445,"endDate":"2026-04-20"},{"id":"polymarket-0xf57d8e6f12d9e95f045eda34bab5957a6101dd05eabcda5a589096d2ff39c926","platform":"polymarket","title":"Will the highest temperature in Seoul be 13°C on April 21?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Incheon Intl Airport Station in degrees Celsius on 21 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Incheon Intl Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/kr/incheon/RKSI.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Celsius (eg, 9°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","seoul","13","april","21","resolve","range","contains","recorded","incheon","intl","airport","station"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":12525.169453,"url":"https://polymarket.com/event/highest-temperature-in-seoul-on-april-21-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.275Z","numericId":"2019159","oneDayPriceChange":-0.008,"endDate":"2026-04-21"},{"id":"polymarket-0x6c9407f7841e7507ba435d540af237d742674ba05bac48998cf94f4b7ef5d909","platform":"polymarket","title":"Will the Los Angeles Chargers win the 2027 NFL league championship?","description":"This market will resolve according to the team that wins the 2027 NFL league championship. \n\nIf at any point it becomes impossible for a listed team to win the 2027 NFL league championship per the rules of the NFL (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2027 NFL league championship game is cancelled, postponed after March 31, 2027 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from NFL (https://www.nfl.com/); however, a consensus of credible reporting may also be used.","keywords":["los","angeles","chargers","win","2027","nfl","football","super bowl","league","championship","chargers win","win the","resolve","according","team","wins","championship.","point","becomes","impossible"],"yesPrice":0.05,"noPrice":0.95,"yesAsk":0.05,"noAsk":0.95,"volume24h":12516.232915,"url":"https://polymarket.com/event/big-game-champion-2027","category":"sports","lastUpdated":"2026-04-20T19:49:46.276Z","numericId":"1357388","oneDayPriceChange":0.0005,"endDate":"2027-03-31"},{"id":"polymarket-0x61792d911f30d62effcc9f948700c3b29b07da11ac16e64fcbeb37a24311e297","platform":"polymarket","title":"Will the highest temperature in Hong Kong be 26°C on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded by the Hong Kong Observatory in degrees Celsius on 20 Apr '26.\n\nThe resolution source for this market will be information from the Hong Kong Observatory, specifically the \"Absolute Daily Max (deg. C)\" the specified date once information is finalized in the relevant \"Daily Extract\", available here: https://www.weather.gov.hk/en/cis/climat.htm\n\nThis market can not resolve to \"Yes\" until data for this date has been finalized.\n\nThe resolution source for this market measures temperatures in Celsius to one decimal place (eg, 9.1°C). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","hong","kong","26","april","20","resolve","range","contains","recorded","observatory","degrees","celsius","apr"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":12484.751613,"url":"https://polymarket.com/event/highest-temperature-in-hong-kong-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.276Z","numericId":"2011249","oneDayPriceChange":-0.032,"endDate":"2026-04-20"},{"id":"polymarket-0x6eec2b6b1c8d62aaacda46471e8caf7320f4ea9235f5ee87cba970a32a4e6985","platform":"polymarket","title":"Will Lando Norris be the 2026 F1 Drivers' Champion?","description":"This market will resolve according to the listed driver that finishes 1st in the driver standings for the 2026 F1 season.\n\nThis market will resolve as soon as the official results of the final scheduled race of the 2026 F1 season are known.\n\nIf multiple drivers tie for first place in the drivers standings, this market will resolve according to the tiebreak procedure used by F1 to determine the 2026 F1 Drivers’ champion.\n\nIf at any point it becomes impossible for a listed driver to win the 2026 F1 Drivers Championship based on the rules of F1 (e.g., they are mathematically eliminated from contention), the corresponding market will resolve to “No”.\n\nIf the F1 season is permanently canceled or has not been completed by March 31, 2027, 11:59 PM ET, this market will resolve to “Other”.\n\nThe primary resolution source for this market will be official information from Formula 1.","keywords":["lando","norris","2026","drivers'","champion","resolve","according","listed","driver","finishes","1st","standings","season."],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":12476.626493,"url":"https://polymarket.com/event/2026-f1-drivers-champion","category":"other","lastUpdated":"2026-04-20T19:49:46.276Z","numericId":"898409","oneDayPriceChange":-0.004,"endDate":"2026-12-06"},{"id":"polymarket-0xba8af64c1b08f322ca7f66f3cfdbdfd50c0eae6fc88d2fcf29c30ceb62682421","platform":"polymarket","title":"Will Crude Oil (CL) hit (HIGH) $120 by end of June?","description":"This market will resolve to \"Yes\" if, on any trading day, the official CME settlement price for the Active Month (front month) of Crude Oil (CL) futures is equal to or above the listed price between market creation and the final trading day of June 2026. Otherwise, the market will resolve to \"No\".\n\nFor CME Crude Oil (CL) futures contracts, the active month is the nearest of the contract months listed. The active month becomes a non-active month effective two business days prior to the spot month expiration. For example; if the spot month expires on a Friday the next listed contract will be considered the Active Month on the Wednesday prior to the spot month expiration.\n\nOnly the Active Month's official settlement price published by CME Group will be considered. Intraday trades, highs, lows, bids, offers, midpoint values, or indicative prices do not count.\n\nNote that the settlement price may differ from the last traded price. CME's methodology to determine the settlement price can vary by commodity and contract.\n\nOnly days on which CME publishes an official settlement price for the Active Month will be included. Days without settlement prices (weekends, holidays, or market closures) are ignored.\n\nThis market will resolve based on the settlement price as it appears on the CME settlement page at the time it is first published for that trading day, regardless of any later corrections or updates.\n\nThe resolution source for this market is the CME Group website — specifically, the daily \"Settlement\" price for the Active Month of Crude Oil (CL) futures.","keywords":["crude","oil","wti","energy","hit","high","120","end","june","cl hit","hit high","resolve","yes","trading","day","official","cme","settlement","active"],"yesPrice":0.27,"noPrice":0.73,"yesAsk":0.27,"noAsk":0.73,"volume24h":12459.206831000001,"url":"https://polymarket.com/event/cl-hit-jun-2026","category":"climate","lastUpdated":"2026-04-20T19:49:46.276Z","numericId":"1652677","oneDayPriceChange":-0.03,"endDate":"2026-06-30"},{"id":"polymarket-0x45514e0fcd922a740e67ab064a9042d3e964006712f9540947808ae82067ed23","platform":"polymarket","title":"Extended FDV above $150M one day after launch?","description":"This market will resolve to \"Yes\" if the Fully Diluted Valuation of Extended's token is greater than the value specified in the title 1 day after launch. Otherwise, the market will resolve to \"No.\"\n\nThe token must be actively, publicly transferable and tradable to be considered a launch.\n\nThe FDV will be determined using the total token supply multiplied by the token price.\n\n\"1 day after launch\" is defined as 4:00 PM ET on the calendar day following launch. The resolution source for this market is the most liquid price source available. If Extended (https://x.com/extendedapp) doesn't launch a token by December 31, 2026, 11:59 PM ET, this market will resolve to \"No\".","keywords":["extended","fdv","above","150m","one","day","after","launch","fdv above","above 150m","day after","after launch","resolve","yes","fully","diluted","valuation","extended's","token","greater"],"yesPrice":0.63,"noPrice":0.38,"yesAsk":0.63,"noAsk":0.38,"volume24h":12456.534627000001,"url":"https://polymarket.com/event/extended-fdv-above-one-day-after-launch","category":"other","lastUpdated":"2026-04-20T19:49:46.276Z","numericId":"1383905","oneDayPriceChange":0,"endDate":"2027-01-01"},{"id":"polymarket-0x3a90c642305394d6aab1ddb83bb05fadb1c1f95f07644847bbafe5eb69e2fbba","platform":"polymarket","title":"Will Bitcoin reach $78,000 on April 20?","description":"This market will immediately resolve to \"Yes\" if any Binance 1-minute candle for Bitcoin (BTC/USDT) on the date specified in the title, between 12:00 AM ET and 11:59 PM ET has a final \"High\" price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"High\" prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","reach","78000","april","20","bitcoin reach","reach 78000","immediately","resolve","yes","binance","crypto","exchange","1-minute","candle"],"yesPrice":0.04,"noPrice":0.96,"yesAsk":0.04,"noAsk":0.96,"volume24h":12340.676284,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-on-april-20","category":"crypto","lastUpdated":"2026-04-20T19:49:46.276Z","numericId":"2029329","oneDayPriceChange":0,"endDate":"2026-04-21"},{"id":"polymarket-0x8ae87759a6bbe5e9d4688d594a5215081414eeac9d457f9c44e10242cbbc8153","platform":"polymarket","title":"Will FCSB win on 2026-04-20?","description":"In the upcoming game, scheduled for April 20, 2026\nIf FCSB wins, this market will resolve to \"Yes\".\nOtherwise, this market will resolve to \"No\".\nIf the game is postponed, this market will remain open until the game has been completed.\nIf the game is canceled entirely, with no make-up game, this market will resolve \"No\".\nThis market refers only to the outcome within the first 90 minutes of regular play plus stoppage time.\n\nThe primary resolution source for this market is the official statistics of the event as recognized by the governing body or event organizers. However, if the governing body or event organizers have not published final match statistics within 2 hours after the event's conclusion, a consensus of credible reporting may be used instead.","keywords":["fcsb","win","2026-04-20","fcsb win","win on","upcoming","game","scheduled","april","20","2026","wins","resolve"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":12328.400683000003,"url":"https://polymarket.com/event/rou1-ffc-fcs-2026-04-20","category":"other","lastUpdated":"2026-04-20T19:49:46.276Z","numericId":"1833405","oneDayPriceChange":0.4395,"endDate":"2026-04-20"},{"id":"polymarket-0xeda0e0633f131b761cbe6c6e5e16ae347c48d9448a08c5826bfc2c794b63758e","platform":"polymarket","title":"Will Crude Oil (CL) hit (HIGH) $150 by end of June?","description":"This market will resolve to \"Yes\" if, on any trading day, the official CME settlement price for the Active Month (front month) of Crude Oil (CL) futures is equal to or above the listed price by the final trading day of June 2026. Otherwise, the market will resolve to \"No\".\n\nFor CME Crude Oil (CL) futures contracts, the active month is the nearest of the contract months listed. The active month becomes a non-active month effective two business days prior to the spot month expiration. For example; if the spot month expires on a Friday the next listed contract will be considered the Active Month on the Wednesday prior to the spot month expiration.\n\nOnly the Active Month's official settlement price published by CME Group will be considered. Intraday trades, highs, lows, bids, offers, midpoint values, or indicative prices do not count.\n\nNote that the settlement price may differ from the last traded price. CME's methodology to determine the settlement price can vary by commodity and contract.\n\nOnly days on which CME publishes an official settlement price for the Active Month will be included. Days without settlement prices (weekends, holidays, or market closures) are ignored.\n\nThis market will resolve based on the settlement price as it appears on the CME settlement page at the time it is first published for that trading day, regardless of any later corrections or updates.\n\nThe resolution source for this market is the CME Group website — specifically, the daily \"Settlement\" price for the Active Month of Crude Oil (CL) futures.","keywords":["crude","oil","wti","energy","hit","high","150","end","june","cl hit","hit high","resolve","yes","trading","day","official","cme","settlement","active"],"yesPrice":0.09,"noPrice":0.92,"yesAsk":0.09,"noAsk":0.92,"volume24h":12287.809067,"url":"https://polymarket.com/event/cl-hit-jun-2026","category":"climate","lastUpdated":"2026-04-20T19:49:46.276Z","numericId":"1494702","oneDayPriceChange":-0.095,"endDate":"2026-06-30"},{"id":"polymarket-0x0a1dae2f2b3eb1ec0b8ae721cfb6c021da85cf129ccd1b573c8a0e636f7f7920","platform":"polymarket","title":"Will MegaETH launch a token by May 31, 2026?","description":"This market will resolve to “Yes” if MegaETH officially launches a governance token by 11:59 PM ET on the date specified in the title. Otherwise, this market will resolve to “No”.\n\nThe token must be actively and publicly transferable and tradable. Announcements alone do not qualify.\n\nThe primary resolution source for this market will be information from MegaETH, however a consensus of credible reporting will also be used.","keywords":["megaeth","launch","token","31","2026","resolve","yes","officially","launches","governance","11","59","date"],"yesPrice":0.93,"noPrice":0.07,"yesAsk":0.93,"noAsk":0.07,"volume24h":12285.524777999999,"url":"https://polymarket.com/event/will-megaeth-launch-a-token-by","category":"crypto","lastUpdated":"2026-04-20T19:49:46.276Z","numericId":"1895335","oneDayPriceChange":0.085,"endDate":"2027-01-01"},{"id":"polymarket-0xc8f1cf5d4f26e0fd9c8fe89f2a7b3263b902cf14fde7bfccef525753bb492e47","platform":"polymarket","title":"Will Stephen A. Smith win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["stephen","smith","win","2028","democratic","presidential","nomination","smith win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":12254.319556,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.276Z","numericId":"559657","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0xf0bad24cb955a911d406cc8b5c099e29c6874afa2ec69452669ac409a986951c","platform":"polymarket","title":"Will XRP reach $2.80 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for XRP/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final High price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the XRP/USDT High prices available at https://www.binance.com/en/trade/XRP_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance XRP/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["xrp","ripple","reach","2.80","april","xrp reach","reach 2.80","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":12243.923796,"url":"https://polymarket.com/event/what-price-will-xrp-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:46.276Z","numericId":"1823898","oneDayPriceChange":-0.0005,"endDate":"2026-05-01"},{"id":"polymarket-0xb6fbcf89aba1425be426b04cc001cdee86672e181ef4d665a39ed980300e4f45","platform":"polymarket","title":"Will the Detroit Tigers win the 2026 World Series?","description":"This market will resolve according to the team that wins the 2026 MLB World Series. \n\nIf at any point it becomes impossible for a listed team to win the 2026 MLB World Series per the rules of MLB (e.g., they are eliminated in the playoffs), the corresponding market will resolve to “No”.\n\nIf the 2026 MLB season is cancelled, postponed after December 31, 2026 ET, or there is otherwise no winner declared within that timeframe, this market will resolve to “Other”.\n\nThe primary resolution source will be official information from MLB (https://www.mlb.com/); however, a consensus of credible reporting may also be used.","keywords":["detroit","tigers","win","2026","world","series","tigers win","win the","resolve","according","team","wins","mlb","baseball","series.","point"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":12243.223872999999,"url":"https://polymarket.com/event/mlb-world-series-champion-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.276Z","numericId":"1235555","oneDayPriceChange":-0.0005,"endDate":"2026-10-31"},{"id":"polymarket-0x2a46c848684015a0e27024ff7dcce1674fa0f24df8e713d55097c0f5a0b1a384","platform":"polymarket","title":"Will the price of Ethereum be above $2,100 on April 21?","description":"This market will resolve to \"Yes\" if the Binance 1 minute candle for ETH/USDT 12:00 in the ET timezone (noon) on the date specified in the title has a final \"Close\" price higher than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the ETH/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/ETH_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nPlease note that this market is about the price according to Binance ETH/USDT, not according to other exchanges or trading pairs.\n\nPrice precision is determined by the number of decimal places in the source.","keywords":["ethereum","eth","crypto","above","2100","april","21","be above","above 2100","resolve","yes","binance","crypto","exchange","1","minute","candle"],"yesPrice":0.99,"noPrice":0.01,"yesAsk":0.99,"noAsk":0.01,"volume24h":12166.259377,"url":"https://polymarket.com/event/ethereum-above-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:46.276Z","numericId":"1981764","oneDayPriceChange":0.033,"endDate":"2026-04-21"},{"id":"polymarket-0x0552dc6ed9bb9edbf8a325f10671714e53cf1b437901a8590cf05884ceffd909","platform":"polymarket","title":"Will the highest temperature in Atlanta be between 72-73°F on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Hartsfield-Jackson International Airport Station in degrees Fahrenheit on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Hartsfield-Jackson International Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/us/ga/atlanta/KATL.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Fahrenheit (eg, 21°F). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","atlanta","between","72-73","april","20","resolve","range","contains","recorded","hartsfield-jackson","international","airport","station"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":12143.942381000003,"url":"https://polymarket.com/event/highest-temperature-in-atlanta-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.276Z","numericId":"2011147","oneDayPriceChange":-0.148,"endDate":"2026-04-20"},{"id":"polymarket-0xca1d1139b0c3a29983407f499476ae642482788e841a277eb86faeeb9fa4a85c","platform":"polymarket","title":"Will John Fetterman win the 2028 Democratic presidential nomination?","description":"This market will resolve to “Yes” if the named individual wins and accepts the 2028 nomination of the Democratic Party for U.S. president. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market will be a consensus of official Democratic Party sources.\n\nAny replacement of the democratic nominee before election day will not change the resolution of the market.","keywords":["john","fetterman","win","2028","democratic","presidential","nomination","fetterman win","win the","presidential nomination","resolve","yes","named","individual","wins","accepts","party","u.s."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":12097.345104999999,"url":"https://polymarket.com/event/democratic-presidential-nominee-2028","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.276Z","numericId":"559673","oneDayPriceChange":0,"endDate":"2028-11-07"},{"id":"polymarket-0x3ab780b81ecd276c4e3694b030ba41076edc35c21af08efce47e79761808f4d9","platform":"polymarket","title":"Will Bitcoin reach $78,000 April 20-26?","description":"This market will immediately resolve to \"Yes\" if any Binance 1-minute candle for BTC/USDT during the date range specified in the title (from 12:00 AM ET on the first date to 11:59 PM ET on the last) has a final \"High\" price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"High\" prices available at https://www.binance.com/en/trade/BTC_USDT, with the chart settings on \"1m\" candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance BTC/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["bitcoin","btc","crypto","reach","78000","april","20-26","bitcoin reach","reach 78000","immediately","resolve","yes","binance","crypto","exchange","1-minute","candle"],"yesPrice":0.66,"noPrice":0.34,"yesAsk":0.66,"noAsk":0.34,"volume24h":12064.790015999999,"url":"https://polymarket.com/event/what-price-will-bitcoin-hit-april-20-26","category":"crypto","lastUpdated":"2026-04-20T19:49:46.276Z","numericId":"2029348","oneDayPriceChange":0,"endDate":"2026-04-27"},{"id":"polymarket-0x8ed9ef25fbd07f6447cf8677b825b333df5daf684c95cbea6570e079b952b642","platform":"polymarket","title":"Will Trump declare war on Iran by April 30, 2026?","description":"This market will resolve to \"Yes\" if President Donald Trump or an official representative of his administration (such as the White House Press Secretary, National Security Advisor, or Secretary of Defense) issues a formal public statement declaring that the United States is at war with Iran by the specified date (ET). Otherwise, this market will resolve to \"No\". \n\nThe statement must clearly and explicitly use language equivalent to a declaration of war—for example, stating that \"the United States is now at war with Iran\" or \"we are declaring war on Iran.\"\n\nGeneral statements about military action, retaliation, force, or operations will not qualify unless they include an unambiguous declaration of war.\n\nExecutive orders or official memoranda may qualify only if they contain clear language declaring war.\n\nThe primary resolution source will be official government communications, including White House press releases, presidential speeches, or public statements by senior administration officials; however, a consensus of credible reporting may also be used.","keywords":["trump","president","potus","administration","gop","republican","declare","war","iran","nuclear","sanctions","middle east","april","30","2026","resolve","yes","donald","official","representative","his","white","house"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":12053.237362000002,"url":"https://polymarket.com/event/will-trump-declare-war-on-iran-by","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.277Z","numericId":"1707608","oneDayPriceChange":-0.02,"endDate":"2026-04-30"},{"id":"polymarket-0x1166388a24a3f2a9bb0a45956bdb205c70f0ecafb8539e277a57adf022e306be","platform":"polymarket","title":"Will Jordan Bardella win the 2027 French presidential election?","description":"The next French presidential election is currently expected to be held around April 2027. This market pertains to the outcome of the next French presidential election, regardless of whether it follows the scheduled end of the current term or is held earlier. \n\nThe President of France is elected via a two-round system; a candidate must secure over 50% of the vote to win outright in the first round. If no candidate achieves this, the top two contenders advance to a runoff.\n\nThis market will resolve according to the candidate who wins this election.\n\nThis market includes any potential second round. If, for any reason, the results of the election are not known by December 31, 2027, 11:59 PM ET, this market will resolve to \"Other\".\n\nThis market will resolve based on the result of the election as indicated by a consensus of credible reporting. If there is ambiguity, this market will resolve based solely on the official results as reported by the French Government, specifically the Ministry of the Interior (https://www.interieur.gouv.fr/).","keywords":["jordan","bardella","win","2027","french","presidential","election","bardella win","win the","presidential election","next","currently","expected","held","around","april","2027.","pertains"],"yesPrice":0.23,"noPrice":0.78,"yesAsk":0.23,"noAsk":0.78,"volume24h":12041.760586,"url":"https://polymarket.com/event/next-french-presidential-election","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.277Z","numericId":"679019","oneDayPriceChange":0.01,"endDate":"2027-04-30"},{"id":"polymarket-0x03d55c2ae630de0bc83069e84cd2c9e26d9c03e313955cadce247a3d0ea9e378","platform":"polymarket","title":"Will Elon Musk post 0-19 tweets from April 21 to April 28, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 21 12:00 PM ET to April 28, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","0-19","tweets","april","21","28","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":12017.86,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-21-april-28","category":"other","lastUpdated":"2026-04-20T19:49:46.277Z","numericId":"2010907","oneDayPriceChange":0,"endDate":"2026-04-28"},{"id":"polymarket-0x94d7348c61b0eea4c3f76be08a87fdef098aeab83eace6f27f58d2a649f90966","platform":"polymarket","title":"Will the highest temperature in Atlanta be between 70-71°F on April 20?","description":"This market will resolve to the temperature range that contains the highest temperature recorded at the Hartsfield-Jackson International Airport Station in degrees Fahrenheit on 20 Apr '26.\n\nThe resolution source for this market will be information from Wunderground, specifically the highest temperature recorded for all times on this day by the Forecast for the Hartsfield-Jackson International Airport Station once information is finalized, available here: https://www.wunderground.com/history/daily/us/ga/atlanta/KATL.\n\nTo toggle between Fahrenheit and Celsius, click the gear icon next to the search bar and switch the Temperature setting between °F and °C.\n\nThis market can not resolve to \"Yes\" until all data for this date has been finalized.\n\nThe resolution source for this market measures temperatures to whole degrees Fahrenheit (eg, 21°F). Thus, this is the level of precision that will be used when resolving the market.\n\nAny revisions to temperatures recorded after data is finalized for this market's timeframe will not be considered for this market's resolution.","keywords":["highest","temperature","atlanta","between","70-71","april","20","resolve","range","contains","recorded","hartsfield-jackson","international","airport","station"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":12015.034056999999,"url":"https://polymarket.com/event/highest-temperature-in-atlanta-on-april-20-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.277Z","numericId":"2011146","oneDayPriceChange":-0.0245,"endDate":"2026-04-20"},{"id":"polymarket-0x6fe887150a7a662dda65bc3d70a040990bbfd60ee611775b1102bad17e27d19e","platform":"polymarket","title":"Will the price of Bitcoin be between $66,000 and $68,000 on April 21?","description":"This market will resolve according to the final \"Close\" price of the Binance 1 minute candle for BTC/USDT 12:00 in the ET timezone (noon) on the date specified in the title. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market is Binance, specifically the BTC/USDT \"Close\" prices currently available at https://www.binance.com/en/trade/BTC_USDT with \"1m\" and \"Candles\" selected on the top bar.\n\nIf the reported value falls exactly between two brackets, then this market will resolve to the higher range bracket.\n\nPlease note that this market is about the price according to Binance BTC/USDT, not according to other exchanges or trading pairs.","keywords":["bitcoin","btc","crypto","between","66000","68000","april","21","resolve","according","final","close","binance","crypto","exchange","1"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":12006.846373,"url":"https://polymarket.com/event/bitcoin-price-on-april-21","category":"crypto","lastUpdated":"2026-04-20T19:49:46.277Z","numericId":"1981763","oneDayPriceChange":-0.004,"endDate":"2026-04-21"},{"id":"polymarket-0xd7d70b7cd1208c6fb3965c69cad749f5d698487e932006494412aff6b11c159d","platform":"polymarket","title":"Will Elon Musk post 40-59 tweets from April 21 to April 28, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 21 12:00 PM ET to April 28, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","40-59","tweets","april","21","28","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":12000,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-21-april-28","category":"other","lastUpdated":"2026-04-20T19:49:46.277Z","numericId":"2010924","oneDayPriceChange":0,"endDate":"2026-04-28"},{"id":"polymarket-0x87091dc5932f015d80c40e71e47cb043c3f8b6098484eb5bc3943cf35ee9afc1","platform":"polymarket","title":"Will Kylian Mbappé win the 2026 Ballon d'Or?","description":"This market will resolve according to the winner of the 2026 Ballon d’Or.\n\nIf no 2026 Ballon d’Or winner is declared by December 31, 2026, 11:59 PM ET, this market will resolve to \"Other\".\n\nThe primary resolution source for this market is official information from France Football (https://www.francefootball.fr/).","keywords":["kylian","mbapp","win","2026","ballon","d'or","mbapp win","win the","resolve","according","winner","or.","no","declared","december","31"],"yesPrice":0.14,"noPrice":0.86,"yesAsk":0.14,"noAsk":0.86,"volume24h":11984.133093999999,"url":"https://polymarket.com/event/ballon-dor-winner-2026","category":"other","lastUpdated":"2026-04-20T19:49:46.277Z","numericId":"608540","oneDayPriceChange":0,"endDate":"2026-10-31"},{"id":"polymarket-0xb3918a794761ba9f5f0235ae62291a9787261025b88fd6069227cfda443e6bca","platform":"polymarket","title":"Will Solana reach $160 in April?","description":"This market will immediately resolve to \"Yes\" if any Binance 1 minute candle for SOL/USDT during the month specified in the title (from 00:00 AM ET on the first day to 11:59 PM ET on the last), has a final High price equal to or greater than the price specified in the title. Otherwise, this market will resolve to \"No.\"\n\nThe resolution source for this market is Binance, specifically the SOL/USDT High prices available at https://www.binance.com/en/trade/SOL_USDT, with the chart settings on \"1m\" for one-minute candles selected on the top bar.\n\nPlease note that the outcome of this market depends solely on the price data from the Binance SOL/USDT trading pair. Prices from other exchanges, different trading pairs, or spot markets will not be considered for the resolution of this market.","keywords":["solana","sol","crypto","reach","160","april","solana reach","reach 160","immediately","resolve","yes","binance","crypto","exchange","1","minute"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":11954.311086999987,"url":"https://polymarket.com/event/what-price-will-solana-hit-in-april-2026","category":"crypto","lastUpdated":"2026-04-20T19:49:46.277Z","numericId":"1823881","oneDayPriceChange":0,"endDate":"2026-05-01"},{"id":"polymarket-0xd141449a066191a2d5da1bf3592b03166f44b117040d1bf654af9aa786d47a65","platform":"polymarket","title":"Will Scott Stringer be the democratic nominee for NY-12?","description":"This market will resolve according to the candidate who wins the nomination for the Democratic Party to contest the NY-12 congressional district seat in the U.S. House of Representatives in the 2026 midterm elections. The Democratic primary will take place on June 23, 2026.\n\nIf no nominee is announced by November 3, 2026, 11:59PM ET, this market will resolve to \"Other\".\n\nThe resolution source for this market will be a consensus of official Democrat sources, including https://democrats.org/.\n\nAny replacement of the nominee before election day will not change the resolution of the market.","keywords":["scott","stringer","democratic","nominee","ny-12","democratic nominee","nominee for","resolve","according","candidate","wins","nomination","party","contest","congressional"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":11941.625,"url":"https://polymarket.com/event/who-will-be-the-democratic-nominee-for-ny-12","category":"us_politics","lastUpdated":"2026-04-20T19:49:46.277Z","numericId":"695094","oneDayPriceChange":-0.005,"endDate":"2026-06-23"},{"id":"polymarket-0xff58186c67a714e7278b3878c750553a1e77d87076b4e50de0bd9d056554fad1","platform":"polymarket","title":"Will JPMorgan Chase fail by June 30, 2026?","description":"This market will resolve to “Yes” if the listed bank fails between market creation and June 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No.”\n\nFor the purposes of this market, the listed bank will be considered to have “failed” if, within the listed date range, any of the following occurs under the bank’s applicable legal or regulatory framework:\n\n- The listed bank’s primary banking regulator formally declares the institution insolvent or non-viable, or withdraws or revokes the bank’s license or authorization, and such determination initiates or directly results in resolution, liquidation, wind-down, or transfer actions.\n- The listed bank enters a court-ordered liquidation, statutory resolution regime, or regulator-mandated wind-down, including the use of resolution tools such as bail-ins, forced asset transfers, or the establishment of a bridge bank.\n- A government or resolution authority intervenes in a manner that wipes out or subordinates existing equity of the listed bank and transfers effective control of the bank to the state or a designated resolution authority, with continued operations dependent on official intervention.\n- The listed bank publicly defaults on a payment obligation, including derivatives margin, repo, or physical commodity delivery, and such default is formally acknowledged by the bank’s primary regulator or resolution authority and directly results in the initiation of resolution, liquidation, license withdrawal, or regulator-mandated transfer of the bank.\n- The listed bank is subject to a compulsory merger, acquisition, or transfer of all or substantially all of its assets and liabilities ordered or directed by its primary banking regulator or resolution authority due to the bank’s financial condition or to prevent failure, regardless of whether a formal insolvency declaration or immediate equity wipeout is publicly announced at the time of transfer.\n\nIf there is a potential failure of the listed bank within this market’s date range and a qualifying regulatory or court action has occurred but has not yet been fully published by the relevant authority, this market may remain open to allow for confirmation. If no qualifying failure is confirmed by that date, this market will resolve to “No.”\n\nThe primary resolution source for this market will be official statements, filings, or actions by the listed bank’s primary banking regulator or resolution authority; however, a consensus of credible reporting may also be used.","keywords":["jpmorgan","bank","jamie dimon","financial","wall street","chase","fail","june","30","2026","resolve","yes","listed","fails","between","creation","11","59"],"yesPrice":0.02,"noPrice":0.98,"yesAsk":0.02,"noAsk":0.98,"volume24h":11916.41,"url":"https://polymarket.com/event/which-banks-will-fail-by-june-30","category":"technology","lastUpdated":"2026-04-20T19:49:46.277Z","numericId":"1067175","oneDayPriceChange":0.001,"endDate":"2026-06-30"},{"id":"polymarket-0xc064713aaa1d127fb6fddd052bf06f97724dd65e23699e45d0ae101502205d95","platform":"polymarket","title":"Will Elon Musk post 360-379 tweets from April 17 to April 24, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 17 12:00 PM ET to April 24, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","360-379","tweets","april","17","24","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":11850.213572,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-17-april-24","category":"other","lastUpdated":"2026-04-20T19:49:46.277Z","numericId":"1977010","oneDayPriceChange":-0.01,"endDate":"2026-04-24"},{"id":"polymarket-0xd69e599bc966916fd20265b6bdc02b2eddba2bab01a109ae5ed7c18fb0c6ea69","platform":"polymarket","title":"Will BRION win the LCK 2026 season playoffs?","description":"This market will resolve according to the winner of the League of Legends Champions Korea (LCK) 2026 season playoffs.\n\nIf the 2026 LCK season is postponed after December 31, 2026 11:59 PM ET, canceled, or a winner has not been declared in this timeframe, this market will resolve to “Other”.\n\nIf multiple teams are declared winner, this market will resolve in favor of the team whose listed team name comes first alphabetically.\n\nThe resolution source for this market will be official information from Riot Games (https://lolesports.com/); however, a consensus of credible reporting may also be used.","keywords":["brion","win","lck","2026","season","playoffs","brion win","win the","resolve","according","winner","league","legends","champions","korea","playoffs."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":11824.707332999998,"url":"https://polymarket.com/event/lol-lck-2026-season-winner","category":"esports","lastUpdated":"2026-04-20T19:49:46.277Z","numericId":"693573","oneDayPriceChange":-0.002,"endDate":"2026-12-31"},{"id":"polymarket-0xc5442c51e3a718bcefe46aecc7707b165e8e8c4efe218a115dd8aee59ca32e7d","platform":"polymarket","title":"Will Elon Musk post 215-239 tweets from April 20 to April 22, 2026?","description":"This market will resolve according to the number of times Elon Musk (@elonmusk), posts on X from April 20 12:00 PM ET to April 22, 2026 12:00 PM ET.\n\nFor the purposes of this market, only main feed posts, quote posts and reposts will count.\n\nReplies will NOT count towards the total - however, replies on the main feed such as https://x.com/elonmusk/status/1786073478711353576 will be counted by the tracker.\n\nDeleted posts will count as long as they remain available long enough to be captured by the tracker (~5 minutes).\n\nCommunity reposts which are not counted by the tracker not count toward the total.\n\nThe resolution source for this market is the 'Post Counter' figure for posts found at https://xtracker.polymarket.com. Individual posts can be viewed by clicking \"Export Data\". If the tracker does not update correctly in accordance with the rules, X itself may be used as a secondary resolution source.","keywords":["elon","elon musk","tesla","spacex","doge","musk","post","215-239","tweets","april","20","22","2026","twitter","x","resolve","according","number","times","elonmusk","posts","12","00"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":11781.488985000002,"url":"https://polymarket.com/event/elon-musk-of-tweets-april-20-april-22","category":"other","lastUpdated":"2026-04-20T19:49:46.277Z","numericId":"2015060","oneDayPriceChange":-0.002,"endDate":"2026-04-22"},{"id":"polymarket-0xfdc73f10edf0266756686f35b5712cffa828b0940fc015e0426c76c934c2105d","platform":"polymarket","title":"US recession by end of 2026?","description":"This market will resolve to “Yes” if either of the following conditions is met:\n\n1. The seasonally adjusted annualized percent change in quarterly U.S. real GDP from the previous quarter is less than 0.0 for two consecutive quarters between Q2 2025 and Q4 2026 (inclusive), as reported by the Bureau of Economic Analysis (BEA). \n\n2. The National Bureau of Economic Research (NBER) publicly announces that a recession has occurred in the United States, at any point during 2025 or 2026, with the announcement made by the time the BEA releases the advance estimate for Q4 2026.\n\nOtherwise, this market will resolve to \"No\". \n\nNote that advance estimates will be considered. For example, if upon release, the advance estimate for Q3 2025 was negative, and the Q2 2025's most recent, up-to-date estimate was also negative, this market would resolve to \"Yes\". If on December 31, 2026 the latest estimate for quarterly GDP in Q3 2025 was negative, this market will stay open until the Advance estimate of Q4 2026 is published, at which point it will resolve to \"Yes\" if Q4 2026 was negative or if the NBER declares a recession by then.\n\nThe resolution source will be the official announcements from the NBER and the BEA’s estimate of seasonally adjusted annualized percent change in quarterly US real GDP from previous quarters as released by the Bureau of Economic Analysis (BEA), https://www.bea.gov/data/gdp/gross-domestic-product","keywords":["recession","gdp","economic downturn","contraction","end","2026","resolve","yes","either","following","conditions","met","seasonally","adjusted"],"yesPrice":0.26,"noPrice":0.74,"yesAsk":0.26,"noAsk":0.74,"volume24h":11744.87623499999,"url":"https://polymarket.com/event/us-recession-by-end-of-2026","category":"economics","lastUpdated":"2026-04-20T19:49:46.277Z","numericId":"609655","oneDayPriceChange":0,"endDate":"2027-01-31"},{"id":"polymarket-0x16df76a155e148ef925c2a808204d5f2e2ac68d9585363616b82a6c6df765e84","platform":"polymarket","title":"10.0 or above earthquake before 2027?","description":"This market will resolve to “Yes” if 1 or more earthquakes with a magnitude of 10.0 or higher occur anywhere on Earth between December 8, 2025 12:00 PM ET, and December 31, 2026, 11:59PM ET. Otherwise, this market will resolve to “No”.\n\nThe resolution source for this market is the United States Geological Survey (USGS) Earthquake Hazards Program (https://earthquake.usgs.gov/earthquakes/browse/significant.php#sigdef).\n\nIf an earthquake of substantial size has occurred within this market's timeframe but not yet appeared on the resolution source, this market may remain open until January 31, 2027, 11:59 PM ET, or until the earthquake in question otherwise appears on the resolution source. If such an earthquake has not appeared on the resolution source by that date, another credible resolution source will be used. \n\nAfter a qualifying earthquake is registered, this market will remain open for 24 hours to account for any revisions to its recorded magnitude. After 24 hours, this market will resolve according to the latest provided data.","keywords":["10.0","above","earthquake","before","2027","or above","above earthquake","earthquake before","before 2027","resolve","yes","1","more","earthquakes","magnitude","higher","occur"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":11716.404443,"url":"https://polymarket.com/event/10pt0-or-above-earthquake-before-2027","category":"other","lastUpdated":"2026-04-20T19:49:46.277Z","numericId":"897844","oneDayPriceChange":-0.014,"endDate":"2026-12-31"},{"id":"polymarket-0xa65e9c75c4ad990e97e598f4c279887da5d51e0dddb781fcca0691c1c2798d9e","platform":"polymarket","title":"Will Marco Rubio attend the next US x Iran diplomatic meeting?","description":"This market will resolve to \"Yes\" if the listed individual attends the next diplomatic meeting between representatives of the United States and Iran by June 30, 2026, 11:59 PM ET. Otherwise, this market will resolve to “No”.\n\nA diplomatic meeting refers to a deliberate meeting between representatives of the listed countries who are acting in an official capacity and are authorized to engage in negotiation or diplomacy regarding US-Iranian relations on behalf of their governments. Meetings conducted indirectly, for example, through designated mediators, facilitators, or interlocutors acting with the knowledge and authorization of the relevant governments, will qualify.\n\nBrief greetings, chance encounters, or talks otherwise not deliberately aimed at diplomacy or negotiation will not qualify as diplomatic meetings.\n\nThe meeting must be in-person (including indirect in-person meetings) and must be publicly acknowledged by either government or reported by a consensus of credible media. Remote meetings, phone calls, or other meetings where the relevant parties are not present will not count.\n\nAttendance refers to the listed individual being physically present and actively participating in negotiations at the meeting.\n\nIf the next diplomatic meeting between representatives of the United States and Iran takes place over multiple days, attendance at any part of the meeting will qualify.\n\nThe primary resolution source for this market will be official information from the listed individual and the governments of the United States and Iran; however, a consensus of credible reporting will also be used.","keywords":["marco","rubio","attend","next","iran","nuclear","sanctions","middle east","diplomatic","meeting","marco rubio","senate","republican","secretary of state","resolve","yes","listed","individual","attends","between","representatives","united"],"yesPrice":0.03,"noPrice":0.97,"yesAsk":0.03,"noAsk":0.97,"volume24h":11678.529027999999,"url":"https://polymarket.com/event/who-will-attend-the-next-us-x-iran-diplomatic-meeting","category":"geopolitics","lastUpdated":"2026-04-20T19:49:46.277Z","numericId":"1986505","oneDayPriceChange":-0.062,"endDate":"2026-06-30"},{"id":"polymarket-0xcf3254930341a17b6741b917377c39851f4e71eeece8aa125b20a3c15d80ad5a","platform":"polymarket","title":"Will Google reach $400 in April?","description":"This market will resolve to \"Yes\" if, at any point during April 2026 (ET), any 1-minute candle for Alphabet Inc. (GOOGL) has a final \"High\" price equal to or above the listed price. Otherwise, this market will resolve to \"No\".\n\nOnly prices achieved during regular trading hours (ET) will be considered.\n\nThe resolution source for this market is Yahoo Finance — specifically, the Alphabet Inc. (GOOGL) \"High\" prices available at https://finance.yahoo.com/quote/GOOGL/, with the chart settings on \"1m\" for candle intervals.\n\nIn the event of a stock split, reverse stock split, or similar corporate action affecting the listed company during the listed time frame, this market will resolve based on split-adjusted prices as displayed on Yahoo Finance.","keywords":["google","googl","alphabet","reach","400","april","google reach","reach 400","resolve","yes","point","during","2026","1-minute","candle","inc."],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":11604.295100000001,"url":"https://polymarket.com/event/what-price-will-googl-hit-in-april-2026","category":"technology","lastUpdated":"2026-04-20T19:49:46.278Z","numericId":"1542552","oneDayPriceChange":-0.005,"endDate":"2026-05-01"},{"id":"polymarket-0xb5bc0c62cc121183fab3645197b346b474396f52cd67622ca1010a541b955411","platform":"polymarket","title":"Will Mistral have the best AI model at the end of June 2026?","description":"This market will resolve according to the company which owns the model which has the highest arena score based off the Chatbot Arena LLM Leaderboard (https://lmarena.ai/) when the table under the \"Leaderboard\" tab is checked on June 30, 2026, 12:00 PM ET.\n\nResults from the \"Arena Score\" section on the Leaderboard tab of https://lmarena.ai/leaderboard/text with the style control off will be used to resolve this market.\n\nIf two models are tied for the top arena score at this market's check time, resolution will be based on whichever company's name, as it is described in this market group, comes first in alphabetical order (e.g., if both were tied, \"Google\" would resolve to \"Yes\", and \"xAI\" would resolve to \"No\")\n\nThe resolution source for this market is the Chatbot Arena LLM Leaderboard found at https://lmarena.ai/. If this resolution source is unavailable at check time, this market will remain open until the leaderboard comes back online and resolve based on the first check after it becomes available. If it becomes permanently unavailable, this market will resolve based on another resolution source.","keywords":["mistral","ai","llm","artificial intelligence","best","model","end","june","2026","resolve","according","company","which","owns","highest","arena","score"],"yesPrice":0.01,"noPrice":0.99,"yesAsk":0.01,"noAsk":0.99,"volume24h":11550.306000000002,"url":"https://polymarket.com/event/which-company-has-best-ai-model-end-of-june","category":"technology","lastUpdated":"2026-04-20T19:49:46.278Z","numericId":"631147","oneDayPriceChange":0,"endDate":"2026-06-30"},{"id":"polymarket-0x2dd963e037878e2cafe2670129b0e742238d9522ac77cc797fea42742f7045cd","platform":"polymarket","title":"Will Deni Avdija win the 2025–2026 NBA Most Improved Player?","description":"This market will resolve according to the player who is awarded the 2025–26 NBA Most Improved Player.\n\nIf the listed player is not announced as a finalist for the 2025–26 Most Improved Player, this market will resolve to \"No\".\n\nThe primary resolution source for this market will be official information from the NBA. However, a consensus of credible reporting may also be used.","keywords":["deni","avdija","win","2025","2026","nba","basketball","most","improved","player","avdija win","win the","resolve","according","awarded","26","player.","listed","not","announced"],"yesPrice":0.06,"noPrice":0.94,"yesAsk":0.06,"noAsk":0.94,"volume24h":11547.282976,"url":"https://polymarket.com/event/nba-2025-26-most-improved-player","category":"sports","lastUpdated":"2026-04-20T19:49:46.278Z","numericId":"643664","oneDayPriceChange":0.01,"endDate":"2026-06-30"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-ATLMYASTRZEMSKI18-4","platform":"kalshi","title":"Mike Yastrzemski: 4+ hits + runs + RBIs?","description":"","keywords":["mike","yastrzemski","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.01,"noAsk":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/mike-yastrzemski-4-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:45.990Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-ATLMYASTRZEMSKI18-3","platform":"kalshi","title":"Mike Yastrzemski: 3+ hits + runs + RBIs?","description":"","keywords":["mike","yastrzemski","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/mike-yastrzemski-3-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:45.990Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-ATLMYASTRZEMSKI18-2","platform":"kalshi","title":"Mike Yastrzemski: 2+ hits + runs + RBIs?","description":"","keywords":["mike","yastrzemski","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.39,"noPrice":0.61,"yesBid":0.32,"yesAsk":0.45,"noBid":0.55,"noAsk":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/mike-yastrzemski-2-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:45.990Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUYDIAZ21-5","platform":"kalshi","title":"Yainer Diaz: 5+ hits + runs + RBIs?","description":"","keywords":["yainer","diaz","5","hits","runs","rbis","5 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/yainer-diaz-5-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.990Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUYDIAZ21-4","platform":"kalshi","title":"Yainer Diaz: 4+ hits + runs + RBIs?","description":"","keywords":["yainer","diaz","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.91,"noBid":0.09,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/yainer-diaz-4-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.990Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUYDIAZ21-3","platform":"kalshi","title":"Yainer Diaz: 3+ hits + runs + RBIs?","description":"","keywords":["yainer","diaz","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.3,"noBid":0.7,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/yainer-diaz-3-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.990Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20CHUTSA-TSA","platform":"kalshi","title":"Will Chia Yi Tsao win the Chua vs Tsao: W15 Singapore Round of 32 match?","description":"","keywords":["chia","tsao","win","chua","w15","singapore","round","32","match","tsao win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.04,"yesAsk":0.96,"noBid":0.04,"noAsk":0.96,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-chia-yi-tsao-win-the-chua-vs-tsao-w15-singapore-round-of-32-match/kxitfwmatch-26apr20chutsa","category":"sports","lastUpdated":"2026-04-20T19:49:45.990Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20CHUTSA-CHU","platform":"kalshi","title":"Will Sophie Ashley Chua win the Chua vs Tsao: W15 Singapore Round of 32 match?","description":"","keywords":["sophie","ashley","chua","win","tsao","w15","singapore","round","32","match","chua win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.04,"yesAsk":0.96,"noBid":0.04,"noAsk":0.96,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-sophie-ashley-chua-win-the-chua-vs-tsao-w15-singapore-round-of-32-match/kxitfwmatch-26apr20chutsa","category":"sports","lastUpdated":"2026-04-20T19:49:45.990Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20OHAKIM-OHA","platform":"kalshi","title":"Will Remika Ohashi win the Ohashi vs Kim: W15 Singapore Round of 32 match?","description":"","keywords":["remika","ohashi","win","kim","north korea","nuclear","w15","singapore","round","32","match","ohashi win","win the"],"yesPrice":0.29,"noPrice":0.71,"yesBid":0.26,"yesAsk":0.32,"noBid":0.68,"noAsk":0.74,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-remika-ohashi-win-the-ohashi-vs-kim-w15-singapore-round-of-32-match/kxitfwmatch-26apr20ohakim","category":"sports","lastUpdated":"2026-04-20T19:49:45.990Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20OHAKIM-KIM","platform":"kalshi","title":"Will Yujin Kim win the Ohashi vs Kim: W15 Singapore Round of 32 match?","description":"","keywords":["yujin","kim","north korea","nuclear","win","ohashi","w15","singapore","round","32","match","kim win","win the"],"yesPrice":0.71,"noPrice":0.29,"yesBid":0.68,"yesAsk":0.74,"noBid":0.26,"noAsk":0.32,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-yujin-kim-win-the-ohashi-vs-kim-w15-singapore-round-of-32-match/kxitfwmatch-26apr20ohakim","category":"sports","lastUpdated":"2026-04-20T19:49:45.990Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20SATNAG-SAT","platform":"kalshi","title":"Will Naho Sato win the Sato vs Nagata: W35 Miyazaki Round of 16 match?","description":"","keywords":["naho","sato","win","nagata","w35","miyazaki","hayao miyazaki","studio ghibli","anime","round","16","match","sato win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.06,"yesAsk":0.94,"noBid":0.06,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-naho-sato-win-the-sato-vs-nagata-w35-miyazaki-round-of-16-match/kxitfwmatch-26apr20satnag","category":"sports","lastUpdated":"2026-04-20T19:49:45.990Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20SATNAG-NAG","platform":"kalshi","title":"Will Anri Nagata win the Sato vs Nagata: W35 Miyazaki Round of 16 match?","description":"","keywords":["anri","nagata","win","sato","w35","miyazaki","hayao miyazaki","studio ghibli","anime","round","16","match","nagata win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.06,"yesAsk":0.94,"noBid":0.06,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-anri-nagata-win-the-sato-vs-nagata-w35-miyazaki-round-of-16-match/kxitfwmatch-26apr20satnag","category":"sports","lastUpdated":"2026-04-20T19:49:45.990Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20LINLIU-LIU","platform":"kalshi","title":"Will Yuhan Liu win the Lin vs Liu: W15 Singapore Round of 32 match?","description":"","keywords":["yuhan","liu","win","lin","w15","singapore","round","32","match","liu win","win the"],"yesPrice":0.49,"noPrice":0.51,"yesBid":0.46,"yesAsk":0.52,"noBid":0.48,"noAsk":0.54,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-yuhan-liu-win-the-lin-vs-liu-w15-singapore-round-of-32-match/kxitfwmatch-26apr20linliu","category":"sports","lastUpdated":"2026-04-20T19:49:45.990Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20LINLIU-LIN","platform":"kalshi","title":"Will Fang An Lin win the Lin vs Liu: W15 Singapore Round of 32 match?","description":"","keywords":["fang","lin","win","liu","w15","singapore","round","32","match","lin win","win the"],"yesPrice":0.51,"noPrice":0.49,"yesBid":0.48,"yesAsk":0.54,"noBid":0.46,"noAsk":0.52,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-fang-an-lin-win-the-lin-vs-liu-w15-singapore-round-of-32-match/kxitfwmatch-26apr20linliu","category":"sports","lastUpdated":"2026-04-20T19:49:45.990Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20ICHDEN-ICH","platform":"kalshi","title":"Will Azuna Ichioka win the Ichioka vs Deng: W35 Miyazaki Round of 16 match?","description":"","keywords":["azuna","ichioka","win","deng","w35","miyazaki","hayao miyazaki","studio ghibli","anime","round","16","match","ichioka win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.06,"yesAsk":0.94,"noBid":0.06,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-azuna-ichioka-win-the-ichioka-vs-deng-w35-miyazaki-round-of-16-match/kxitfwmatch-26apr20ichden","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20ICHDEN-DEN","platform":"kalshi","title":"Will Tiana Tian Deng win the Ichioka vs Deng: W35 Miyazaki Round of 16 match?","description":"","keywords":["tiana","tian","deng","win","ichioka","w35","miyazaki","hayao miyazaki","studio ghibli","anime","round","16","match","deng win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.06,"yesAsk":0.94,"noBid":0.06,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-tiana-tian-deng-win-the-ichioka-vs-deng-w35-miyazaki-round-of-16-match/kxitfwmatch-26apr20ichden","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20YOSNEG-YOS","platform":"kalshi","title":"Will Sara Yoshida win the Yoshida vs Negishi: W35 Miyazaki Round of 16 match?","description":"","keywords":["sara","yoshida","win","negishi","w35","miyazaki","hayao miyazaki","studio ghibli","anime","round","16","match","yoshida win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.06,"yesAsk":0.94,"noBid":0.06,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-sara-yoshida-win-the-yoshida-vs-negishi-w35-miyazaki-round-of-16-match/kxitfwmatch-26apr20yosneg","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20YOSNEG-NEG","platform":"kalshi","title":"Will Yuzuha Negishi win the Yoshida vs Negishi: W35 Miyazaki Round of 16 match?","description":"","keywords":["yuzuha","negishi","win","yoshida","w35","miyazaki","hayao miyazaki","studio ghibli","anime","round","16","match","negishi win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.06,"yesAsk":0.94,"noBid":0.06,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-yuzuha-negishi-win-the-yoshida-vs-negishi-w35-miyazaki-round-of-16-match/kxitfwmatch-26apr20yosneg","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20HANSUZ-SUZ","platform":"kalshi","title":"Will Nagisa Suzuki win the Hanatani vs Suzuki: W35 Miyazaki Round of 16 match?","description":"","keywords":["nagisa","suzuki","win","hanatani","w35","miyazaki","hayao miyazaki","studio ghibli","anime","round","16","match","suzuki win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.06,"yesAsk":0.94,"noBid":0.06,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-nagisa-suzuki-win-the-hanatani-vs-suzuki-w35-miyazaki-round-of-16-match/kxitfwmatch-26apr20hansuz","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20HANSUZ-HAN","platform":"kalshi","title":"Will Nagi Hanatani win the Hanatani vs Suzuki: W35 Miyazaki Round of 16 match?","description":"","keywords":["nagi","hanatani","win","suzuki","w35","miyazaki","hayao miyazaki","studio ghibli","anime","round","16","match","hanatani win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.06,"yesAsk":0.94,"noBid":0.06,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-nagi-hanatani-win-the-hanatani-vs-suzuki-w35-miyazaki-round-of-16-match/kxitfwmatch-26apr20hansuz","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFMATCH-26APR20SUMSAI-SUM","platform":"kalshi","title":"Will Matthew Summers win the Summers vs Saitoh: M15 Singapore Round of 32 match?","description":"","keywords":["matthew","summers","win","saitoh","m15","singapore","round","32","match","summers win","win the"],"yesPrice":0.42,"noPrice":0.58,"yesBid":0.38,"yesAsk":0.45,"noBid":0.55,"noAsk":0.62,"volume24h":0,"url":"https://kalshi.com/markets/kxitfmatch/will-matthew-summers-win-the-summers-vs-saitoh-m15-singapore-round-of-32-match/kxitfmatch-26apr20sumsai","category":"technology","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFMATCH-26APR20SUMSAI-SAI","platform":"kalshi","title":"Will Keisuke Saitoh win the Summers vs Saitoh: M15 Singapore Round of 32 match?","description":"","keywords":["keisuke","saitoh","win","summers","m15","singapore","round","32","match","saitoh win","win the"],"yesPrice":0.58,"noPrice":0.42,"yesBid":0.55,"yesAsk":0.62,"noBid":0.38,"noAsk":0.45,"volume24h":0,"url":"https://kalshi.com/markets/kxitfmatch/will-keisuke-saitoh-win-the-summers-vs-saitoh-m15-singapore-round-of-32-match/kxitfmatch-26apr20sumsai","category":"technology","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFMATCH-26APR20ICHLEE-LEE","platform":"kalshi","title":"Will Duckhee Lee win the Ichikawa vs Lee: M15 Singapore Round of 32 match?","description":"","keywords":["duckhee","lee","win","ichikawa","m15","singapore","round","32","match","lee win","win the"],"yesPrice":0.59,"noPrice":0.41,"yesBid":0.24,"yesAsk":0.94,"noBid":0.06,"noAsk":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxitfmatch/will-duckhee-lee-win-the-ichikawa-vs-lee-m15-singapore-round-of-32-match/kxitfmatch-26apr20ichlee","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFMATCH-26APR20ICHLEE-ICH","platform":"kalshi","title":"Will Taisei Ichikawa win the Ichikawa vs Lee: M15 Singapore Round of 32 match?","description":"","keywords":["taisei","ichikawa","win","lee","m15","singapore","round","32","match","ichikawa win","win the"],"yesPrice":0.8,"noPrice":0.2,"yesBid":0.66,"yesAsk":0.94,"noBid":0.06,"noAsk":0.34,"volume24h":0,"url":"https://kalshi.com/markets/kxitfmatch/will-taisei-ichikawa-win-the-ichikawa-vs-lee-m15-singapore-round-of-32-match/kxitfmatch-26apr20ichlee","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20SHIKAW-SHI","platform":"kalshi","title":"Will Eri Shimizu win the Shimizu vs Kawaguchi: W100 Tokyo Round of 16 match?","description":"","keywords":["eri","shimizu","win","kawaguchi","w100","tokyo","round","16","match","shimizu win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.06,"yesAsk":0.94,"noBid":0.06,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-eri-shimizu-win-the-shimizu-vs-kawaguchi-w100-tokyo-round-of-16-match/kxitfwmatch-26apr20shikaw","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20SHIKAW-KAW","platform":"kalshi","title":"Will Natsumi Kawaguchi win the Shimizu vs Kawaguchi: W100 Tokyo Round of 16 match?","description":"","keywords":["natsumi","kawaguchi","win","shimizu","w100","tokyo","round","16","match","kawaguchi win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.06,"yesAsk":0.94,"noBid":0.06,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-natsumi-kawaguchi-win-the-shimizu-vs-kawaguchi-w100-tokyo-round-of-16-match/kxitfwmatch-26apr20shikaw","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20KAJSID-SID","platform":"kalshi","title":"Will Kristiana Sidorova win the Kaji vs Sidorova: W100 Tokyo Round of 16 match?","description":"","keywords":["kristiana","sidorova","win","kaji","w100","tokyo","round","16","match","sidorova win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.06,"yesAsk":0.94,"noBid":0.06,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-kristiana-sidorova-win-the-kaji-vs-sidorova-w100-tokyo-round-of-16-match/kxitfwmatch-26apr20kajsid","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20KAJSID-KAJ","platform":"kalshi","title":"Will Haruka Kaji win the Kaji vs Sidorova: W100 Tokyo Round of 16 match?","description":"","keywords":["haruka","kaji","win","sidorova","w100","tokyo","round","16","match","kaji win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.06,"yesAsk":0.94,"noBid":0.06,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-haruka-kaji-win-the-kaji-vs-sidorova-w100-tokyo-round-of-16-match/kxitfwmatch-26apr20kajsid","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20WATNAI-WAT","platform":"kalshi","title":"Will Heather Watson win the Watson vs Naito: W100 Tokyo Round of 16 match?","description":"","keywords":["heather","watson","win","naito","w100","tokyo","round","16","match","watson win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.06,"yesAsk":0.94,"noBid":0.06,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-heather-watson-win-the-watson-vs-naito-w100-tokyo-round-of-16-match/kxitfwmatch-26apr20watnai","category":"technology","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20WATNAI-NAI","platform":"kalshi","title":"Will Yuki Naito win the Watson vs Naito: W100 Tokyo Round of 16 match?","description":"","keywords":["yuki","naito","win","watson","w100","tokyo","round","16","match","naito win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.06,"yesAsk":0.94,"noBid":0.06,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-yuki-naito-win-the-watson-vs-naito-w100-tokyo-round-of-16-match/kxitfwmatch-26apr20watnai","category":"technology","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20STOARS-STO","platform":"kalshi","title":"Will Mika Stojsavljevic win the Stojsavljevic vs Arseneault: W100 Tokyo Round of 16 match?","description":"","keywords":["mika","stojsavljevic","win","arseneault","w100","tokyo","round","16","match","stojsavljevic win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.06,"yesAsk":0.94,"noBid":0.06,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-mika-stojsavljevic-win-the-stojsavljevic-vs-arseneault-w100-tokyo-round-of-16-match/kxitfwmatch-26apr20stoars","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXITFWMATCH-26APR20STOARS-ARS","platform":"kalshi","title":"Will Ariana Arseneault win the Stojsavljevic vs Arseneault: W100 Tokyo Round of 16 match?","description":"","keywords":["ariana","arseneault","win","stojsavljevic","w100","tokyo","round","16","match","arseneault win","win the"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.06,"yesAsk":0.94,"noBid":0.06,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxitfwmatch/will-ariana-arseneault-win-the-stojsavljevic-vs-arseneault-w100-tokyo-round-of-16-match/kxitfwmatch-26apr20stoars","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-05-05T01:30:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBYDIAZ2-5","platform":"kalshi","title":"Yandy Díaz: 5+ total bases?","description":"","keywords":["yandy","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.95,"noBid":0.05,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/yandy-daz-5-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBYDIAZ2-4","platform":"kalshi","title":"Yandy Díaz: 4+ total bases?","description":"","keywords":["yandy","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/yandy-daz-4-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUTTRAMMELL26-5","platform":"kalshi","title":"Taylor Trammell: 5+ hits + runs + RBIs?","description":"","keywords":["taylor","trammell","5","hits","runs","rbis","5 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/taylor-trammell-5-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUTTRAMMELL26-4","platform":"kalshi","title":"Taylor Trammell: 4+ hits + runs + RBIs?","description":"","keywords":["taylor","trammell","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/taylor-trammell-4-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUBMATTHEWS0-5","platform":"kalshi","title":"Brice Matthews: 5+ hits + runs + RBIs?","description":"","keywords":["brice","matthews","5","hits","runs","rbis","5 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/brice-matthews-5-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUTTRAMMELL26-3","platform":"kalshi","title":"Taylor Trammell: 3+ hits + runs + RBIs?","description":"","keywords":["taylor","trammell","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.28,"noBid":0.72,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/taylor-trammell-3-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUBMATTHEWS0-4","platform":"kalshi","title":"Brice Matthews: 4+ hits + runs + RBIs?","description":"","keywords":["brice","matthews","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/brice-matthews-4-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-TBYDIAZ2-2","platform":"kalshi","title":"Yandy Díaz: 2+ home runs?","description":"","keywords":["yandy","2","home","runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.02,"noBid":0.98,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/yandy-daz-2-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUBMATTHEWS0-3","platform":"kalshi","title":"Brice Matthews: 3+ hits + runs + RBIs?","description":"","keywords":["brice","matthews","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.91,"noBid":0.09,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/brice-matthews-3-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-TBYDIAZ2-1","platform":"kalshi","title":"Yandy Díaz: 1+ home runs?","description":"","keywords":["yandy","1","home","runs"],"yesPrice":0.11,"noPrice":0.9,"yesBid":0.1,"yesAsk":0.11,"noBid":0.89,"noAsk":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/yandy-daz-1-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-CINTSTEPHENSON37-2","platform":"kalshi","title":"Tyler Stephenson: 2+ home runs?","description":"","keywords":["tyler","stephenson","2","home","runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.01,"noBid":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/tyler-stephenson-2-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-CINTSTEPHENSON37-1","platform":"kalshi","title":"Tyler Stephenson: 1+ home runs?","description":"","keywords":["tyler","stephenson","1","home","runs"],"yesPrice":0.1,"noPrice":0.9,"yesBid":0.09,"yesAsk":0.12,"noBid":0.88,"noAsk":0.91,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/tyler-stephenson-1-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLERHOSKINS8-5","platform":"kalshi","title":"Rhys Hoskins: 5+ hits + runs + RBIs?","description":"","keywords":["rhys","hoskins","5","hits","runs","rbis","5 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/rhys-hoskins-5-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUBMATTHEWS0-4","platform":"kalshi","title":"Brice Matthews: 4+ total bases?","description":"","keywords":["brice","matthews","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.91,"noBid":0.09,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/brice-matthews-4-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-TBTWALLS6-1","platform":"kalshi","title":"Taylor Walls: 1+ home runs?","description":"","keywords":["taylor","walls","1","home","runs"],"yesPrice":0.06,"noPrice":0.94,"yesBid":0.04,"yesAsk":0.07,"noBid":0.93,"noAsk":0.96,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/taylor-walls-1-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLERHOSKINS8-4","platform":"kalshi","title":"Rhys Hoskins: 4+ hits + runs + RBIs?","description":"","keywords":["rhys","hoskins","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/rhys-hoskins-4-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUBMATTHEWS0-3","platform":"kalshi","title":"Brice Matthews: 3+ total bases?","description":"","keywords":["brice","matthews","3","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.18,"noBid":0.82,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/brice-matthews-3-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-CINTFRIEDL29-1","platform":"kalshi","title":"TJ Friedl: 1+ home runs?","description":"","keywords":["friedl","1","home","runs"],"yesPrice":0.05,"noPrice":0.95,"yesBid":0.03,"yesAsk":0.07,"noBid":0.93,"noAsk":0.97,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/tj-friedl-1-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLERHOSKINS8-3","platform":"kalshi","title":"Rhys Hoskins: 3+ hits + runs + RBIs?","description":"","keywords":["rhys","hoskins","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.34,"noBid":0.66,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/rhys-hoskins-3-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUBMATTHEWS0-2","platform":"kalshi","title":"Brice Matthews: 2+ total bases?","description":"","keywords":["brice","matthews","2","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.31,"noBid":0.69,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/brice-matthews-2-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-CINSSTEER7-2","platform":"kalshi","title":"Spencer Steer: 2+ home runs?","description":"","keywords":["spencer","steer","2","home","runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.01,"noBid":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/spencer-steer-2-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHIT-26APR201810HOUCLE-HOUBMATTHEWS0-3","platform":"kalshi","title":"Brice Matthews: 3+ hits?","description":"","keywords":["brice","matthews","3","hits","3 hits"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/brice-matthews-3-hits/kxmlbhit-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-CINSSTEER7-1","platform":"kalshi","title":"Spencer Steer: 1+ home runs?","description":"","keywords":["spencer","steer","1","home","runs"],"yesPrice":0.11,"noPrice":0.9,"yesBid":0.1,"yesAsk":0.11,"noBid":0.89,"noAsk":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/spencer-steer-1-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHIT-26APR201810HOUCLE-HOUBMATTHEWS0-2","platform":"kalshi","title":"Brice Matthews: 2+ hits?","description":"","keywords":["brice","matthews","2","hits","2 hits"],"yesPrice":0.13,"noPrice":0.88,"yesBid":0.08,"yesAsk":0.17,"noBid":0.83,"noAsk":0.92,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/brice-matthews-2-hits/kxmlbhit-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-CINSSTEWART27-2","platform":"kalshi","title":"Sal Stewart: 2+ home runs?","description":"","keywords":["sal","stewart","2","home","runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.02,"noBid":0.98,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/sal-stewart-2-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEKMANZARDO9-5","platform":"kalshi","title":"Kyle Manzardo: 5+ hits + runs + RBIs?","description":"","keywords":["kyle","manzardo","5","hits","runs","rbis","5 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/kyle-manzardo-5-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHIT-26APR201810HOUCLE-HOUBMATTHEWS0-1","platform":"kalshi","title":"Brice Matthews: 1+ hits?","description":"","keywords":["brice","matthews","1","hits","1 hits"],"yesPrice":0.48,"noPrice":0.52,"yesBid":0.45,"yesAsk":0.52,"noBid":0.48,"noAsk":0.55,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/brice-matthews-1-hits/kxmlbhit-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-CINSSTEWART27-1","platform":"kalshi","title":"Sal Stewart: 1+ home runs?","description":"","keywords":["sal","stewart","1","home","runs"],"yesPrice":0.14,"noPrice":0.86,"yesBid":0.13,"yesAsk":0.15,"noBid":0.85,"noAsk":0.87,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/sal-stewart-1-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEKMANZARDO9-4","platform":"kalshi","title":"Kyle Manzardo: 4+ hits + runs + RBIs?","description":"","keywords":["kyle","manzardo","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/kyle-manzardo-4-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUYDIAZ21-2","platform":"kalshi","title":"Yainer Diaz: 2+ hits + runs + RBIs?","description":"","keywords":["yainer","diaz","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.47,"noPrice":0.53,"yesBid":0.47,"yesAsk":0.48,"noBid":0.52,"noAsk":0.53,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/yainer-diaz-2-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-TBRPALACIOS1-2","platform":"kalshi","title":"Richie Palacios: 2+ home runs?","description":"","keywords":["richie","palacios","2","home","runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.01,"noBid":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/richie-palacios-2-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEKMANZARDO9-3","platform":"kalshi","title":"Kyle Manzardo: 3+ hits + runs + RBIs?","description":"","keywords":["kyle","manzardo","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.32,"noBid":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/kyle-manzardo-3-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUYDIAZ21-1","platform":"kalshi","title":"Yainer Diaz: 1+ hits + runs + RBIs?","description":"","keywords":["yainer","diaz","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.71,"noBid":0.29,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/yainer-diaz-1-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-TBRPALACIOS1-1","platform":"kalshi","title":"Richie Palacios: 1+ home runs?","description":"","keywords":["richie","palacios","1","home","runs"],"yesPrice":0.06,"noPrice":0.94,"yesBid":0.04,"yesAsk":0.08,"noBid":0.92,"noAsk":0.96,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/richie-palacios-1-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUTTRAMMELL26-2","platform":"kalshi","title":"Taylor Trammell: 2+ hits + runs + RBIs?","description":"","keywords":["taylor","trammell","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.41,"noBid":0.59,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/taylor-trammell-2-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-CINRHINDS57-2","platform":"kalshi","title":"Rece Hinds: 2+ home runs?","description":"","keywords":["rece","hinds","2","home","runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.02,"noBid":0.98,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/rece-hinds-2-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-CINRHINDS57-1","platform":"kalshi","title":"Rece Hinds: 1+ home runs?","description":"","keywords":["rece","hinds","1","home","runs"],"yesPrice":0.13,"noPrice":0.87,"yesBid":0.12,"yesAsk":0.14,"noBid":0.86,"noAsk":0.88,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/rece-hinds-1-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUTTRAMMELL26-1","platform":"kalshi","title":"Taylor Trammell: 1+ hits + runs + RBIs?","description":"","keywords":["taylor","trammell","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.63,"noBid":0.37,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/taylor-trammell-1-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-ATLOALBIES1-5","platform":"kalshi","title":"Ozzie Albies: 5+ hits + runs + RBIs?","description":"","keywords":["ozzie","albies","5","hits","runs","rbis","5 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/ozzie-albies-5-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEJBRITO74-5","platform":"kalshi","title":"Juan Brito: 5+ hits + runs + RBIs?","description":"","keywords":["juan","brito","5","hits","runs","rbis","5 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/juan-brito-5-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-TBNFORTES40-2","platform":"kalshi","title":"Nick Fortes: 2+ home runs?","description":"","keywords":["nick","fortes","2","home","runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.01,"noBid":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/nick-fortes-2-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLERHOSKINS8-2","platform":"kalshi","title":"Rhys Hoskins: 2+ hits + runs + RBIs?","description":"","keywords":["rhys","hoskins","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.47,"noBid":0.53,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/rhys-hoskins-2-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-ATLOALBIES1-4","platform":"kalshi","title":"Ozzie Albies: 4+ hits + runs + RBIs?","description":"","keywords":["ozzie","albies","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.91,"noBid":0.09,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/ozzie-albies-4-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEJBRITO74-4","platform":"kalshi","title":"Juan Brito: 4+ hits + runs + RBIs?","description":"","keywords":["juan","brito","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/juan-brito-4-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-TBNFORTES40-1","platform":"kalshi","title":"Nick Fortes: 1+ home runs?","description":"","keywords":["nick","fortes","1","home","runs"],"yesPrice":0.07,"noPrice":0.93,"yesBid":0.06,"yesAsk":0.09,"noBid":0.91,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/nick-fortes-1-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLERHOSKINS8-1","platform":"kalshi","title":"Rhys Hoskins: 1+ hits + runs + RBIs?","description":"","keywords":["rhys","hoskins","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.69,"noBid":0.31,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/rhys-hoskins-1-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-ATLOALBIES1-3","platform":"kalshi","title":"Ozzie Albies: 3+ hits + runs + RBIs?","description":"","keywords":["ozzie","albies","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.56,"noPrice":0.44,"yesBid":0.29,"yesAsk":0.83,"noBid":0.17,"noAsk":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/ozzie-albies-3-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEJBRITO74-3","platform":"kalshi","title":"Juan Brito: 3+ hits + runs + RBIs?","description":"","keywords":["juan","brito","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.27,"noBid":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/juan-brito-3-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-CINMMCLAIN9-2","platform":"kalshi","title":"Matt McLain: 2+ home runs?","description":"","keywords":["matt","mclain","2","home","runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.01,"noBid":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/matt-mclain-2-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEKMANZARDO9-2","platform":"kalshi","title":"Kyle Manzardo: 2+ hits + runs + RBIs?","description":"","keywords":["kyle","manzardo","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.42,"noPrice":0.57,"yesBid":0.42,"yesAsk":0.43,"noBid":0.57,"noAsk":0.58,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/kyle-manzardo-2-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEJBRITO74-2","platform":"kalshi","title":"Juan Brito: 2+ hits + runs + RBIs?","description":"","keywords":["juan","brito","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.41,"noBid":0.59,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/juan-brito-2-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-CINMMCLAIN9-1","platform":"kalshi","title":"Matt McLain: 1+ home runs?","description":"","keywords":["matt","mclain","1","home","runs"],"yesPrice":0.11,"noPrice":0.9,"yesBid":0.1,"yesAsk":0.11,"noBid":0.89,"noAsk":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/matt-mclain-1-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEKMANZARDO9-1","platform":"kalshi","title":"Kyle Manzardo: 1+ hits + runs + RBIs?","description":"","keywords":["kyle","manzardo","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.64,"noBid":0.36,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/kyle-manzardo-1-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-CINKHAYES3-1","platform":"kalshi","title":"Ke'Bryan Hayes: 1+ home runs?","description":"","keywords":["ke'bryan","hayes","1","home","runs"],"yesPrice":0.06,"noPrice":0.94,"yesBid":0.04,"yesAsk":0.07,"noBid":0.93,"noAsk":0.96,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/kebryan-hayes-1-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEJBRITO74-1","platform":"kalshi","title":"Juan Brito: 1+ hits + runs + RBIs?","description":"","keywords":["juan","brito","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.58,"noPrice":0.42,"yesBid":0.51,"yesAsk":0.66,"noBid":0.34,"noAsk":0.49,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/juan-brito-1-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-WSHNNUEZ26-4","platform":"kalshi","title":"Nasim Nuñez: 4+ hits + runs + RBIs?","description":"","keywords":["nasim","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.98,"noBid":0.02,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/nasim-nuez-4-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUIPAREDES15-5","platform":"kalshi","title":"Isaac Paredes: 5+ hits + runs + RBIs?","description":"","keywords":["isaac","paredes","5","hits","runs","rbis","5 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/isaac-paredes-5-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-TBJFRALEY17-2","platform":"kalshi","title":"Jake Fraley: 2+ home runs?","description":"","keywords":["jake","fraley","2","home","runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.01,"noBid":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/jake-fraley-2-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBYDIAZ2-3","platform":"kalshi","title":"Yandy Díaz: 3+ total bases?","description":"","keywords":["yandy","3","total","bases"],"yesPrice":0.23,"noPrice":0.78,"yesBid":0.18,"yesAsk":0.27,"noBid":0.73,"noAsk":0.82,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/yandy-daz-3-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-WSHNNUEZ26-3","platform":"kalshi","title":"Nasim Nuñez: 3+ hits + runs + RBIs?","description":"","keywords":["nasim","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.27,"noBid":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/nasim-nuez-3-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUIPAREDES15-4","platform":"kalshi","title":"Isaac Paredes: 4+ hits + runs + RBIs?","description":"","keywords":["isaac","paredes","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/isaac-paredes-4-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-TBJFRALEY17-1","platform":"kalshi","title":"Jake Fraley: 1+ home runs?","description":"","keywords":["jake","fraley","1","home","runs"],"yesPrice":0.09,"noPrice":0.91,"yesBid":0.07,"yesAsk":0.11,"noBid":0.89,"noAsk":0.93,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/jake-fraley-1-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBYDIAZ2-2","platform":"kalshi","title":"Yandy Díaz: 2+ total bases?","description":"","keywords":["yandy","2","total","bases"],"yesPrice":0.41,"noPrice":0.59,"yesBid":0.37,"yesAsk":0.45,"noBid":0.55,"noAsk":0.63,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/yandy-daz-2-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-WSHNNUEZ26-2","platform":"kalshi","title":"Nasim Nuñez: 2+ hits + runs + RBIs?","description":"","keywords":["nasim","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.42,"noBid":0.58,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/nasim-nuez-2-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:45.991Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUIPAREDES15-3","platform":"kalshi","title":"Isaac Paredes: 3+ hits + runs + RBIs?","description":"","keywords":["isaac","paredes","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.34,"noBid":0.66,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/isaac-paredes-3-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-CINESUAREZ28-2","platform":"kalshi","title":"Eugenio Suárez: 2+ home runs?","description":"","keywords":["eugenio","rez","2","home","runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.02,"noBid":0.98,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/eugenio-surez-2-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINTSTEPHENSON37-5","platform":"kalshi","title":"Tyler Stephenson: 5+ total bases?","description":"","keywords":["tyler","stephenson","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.96,"noBid":0.04,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/tyler-stephenson-5-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUIPAREDES15-2","platform":"kalshi","title":"Isaac Paredes: 2+ hits + runs + RBIs?","description":"","keywords":["isaac","paredes","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.44,"noPrice":0.56,"yesBid":0.39,"yesAsk":0.49,"noBid":0.51,"noAsk":0.61,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/isaac-paredes-2-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-CINESUAREZ28-1","platform":"kalshi","title":"Eugenio Suárez: 1+ home runs?","description":"","keywords":["eugenio","rez","1","home","runs"],"yesPrice":0.16,"noPrice":0.84,"yesBid":0.14,"yesAsk":0.18,"noBid":0.82,"noAsk":0.86,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/eugenio-surez-1-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINTSTEPHENSON37-4","platform":"kalshi","title":"Tyler Stephenson: 4+ total bases?","description":"","keywords":["tyler","stephenson","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.91,"noBid":0.09,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/tyler-stephenson-4-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-ATLOALBIES1-2","platform":"kalshi","title":"Ozzie Albies: 2+ hits + runs + RBIs?","description":"","keywords":["ozzie","albies","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.48,"noPrice":0.52,"yesBid":0.41,"yesAsk":0.56,"noBid":0.44,"noAsk":0.59,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/ozzie-albies-2-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUIPAREDES15-1","platform":"kalshi","title":"Isaac Paredes: 1+ hits + runs + RBIs?","description":"","keywords":["isaac","paredes","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.71,"noBid":0.29,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/isaac-paredes-1-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-TBCSIMPSON14-1","platform":"kalshi","title":"Chandler Simpson: 1+ home runs?","description":"","keywords":["chandler","simpson","1","home","runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.03,"noBid":0.97,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/chandler-simpson-1-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINTSTEPHENSON37-3","platform":"kalshi","title":"Tyler Stephenson: 3+ total bases?","description":"","keywords":["tyler","stephenson","3","total","bases"],"yesPrice":0.15,"noPrice":0.84,"yesBid":0.12,"yesAsk":0.19,"noBid":0.81,"noAsk":0.88,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/tyler-stephenson-3-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-ATLOALBIES1-1","platform":"kalshi","title":"Ozzie Albies: 1+ hits + runs + RBIs?","description":"","keywords":["ozzie","albies","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.77,"noBid":0.23,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/ozzie-albies-1-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEGVALERA7-5","platform":"kalshi","title":"George Valera: 5+ hits + runs + RBIs?","description":"","keywords":["george","valera","5","hits","runs","rbis","5 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/george-valera-5-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-TBCMULLINS31-2","platform":"kalshi","title":"Cedric Mullins: 2+ home runs?","description":"","keywords":["cedric","mullins","2","home","runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.01,"noBid":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/cedric-mullins-2-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUBMATTHEWS0-2","platform":"kalshi","title":"Brice Matthews: 2+ hits + runs + RBIs?","description":"","keywords":["brice","matthews","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.4,"noBid":0.6,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/brice-matthews-2-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINTSTEPHENSON37-2","platform":"kalshi","title":"Tyler Stephenson: 2+ total bases?","description":"","keywords":["tyler","stephenson","2","total","bases"],"yesPrice":0.31,"noPrice":0.69,"yesBid":0.27,"yesAsk":0.35,"noBid":0.65,"noAsk":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/tyler-stephenson-2-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-WSHNNUEZ26-1","platform":"kalshi","title":"Nasim Nuñez: 1+ hits + runs + RBIs?","description":"","keywords":["nasim","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.6,"noPrice":0.4,"yesBid":0.55,"yesAsk":0.66,"noBid":0.34,"noAsk":0.45,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/nasim-nuez-1-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHR-26APR201840CINTB-TBCMULLINS31-1","platform":"kalshi","title":"Cedric Mullins: 1+ home runs?","description":"","keywords":["cedric","mullins","1","home","runs"],"yesPrice":0.11,"noPrice":0.89,"yesBid":0.11,"yesAsk":0.12,"noBid":0.88,"noAsk":0.89,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhr/cedric-mullins-1-home-runs/kxmlbhr-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEGVALERA7-4","platform":"kalshi","title":"George Valera: 4+ hits + runs + RBIs?","description":"","keywords":["george","valera","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/george-valera-4-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUBMATTHEWS0-1","platform":"kalshi","title":"Brice Matthews: 1+ hits + runs + RBIs?","description":"","keywords":["brice","matthews","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.42,"yesAsk":0.58,"noBid":0.42,"noAsk":0.58,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/brice-matthews-1-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBTWALLS6-4","platform":"kalshi","title":"Taylor Walls: 4+ total bases?","description":"","keywords":["taylor","walls","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.96,"noBid":0.04,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/taylor-walls-4-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLVSCOTT11-4","platform":"kalshi","title":"Victor Scott: 4+ total bases?","description":"","keywords":["victor","scott","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/victor-scott-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLVSCOTT11-3","platform":"kalshi","title":"Victor Scott: 3+ total bases?","description":"","keywords":["victor","scott","3","total","bases"],"yesPrice":0.13,"noPrice":0.88,"yesBid":0.08,"yesAsk":0.17,"noBid":0.83,"noAsk":0.92,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/victor-scott-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLVSCOTT11-2","platform":"kalshi","title":"Victor Scott: 2+ total bases?","description":"","keywords":["victor","scott","2","total","bases"],"yesPrice":0.27,"noPrice":0.73,"yesBid":0.22,"yesAsk":0.31,"noBid":0.69,"noAsk":0.78,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/victor-scott-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLTSAGGESE25-5","platform":"kalshi","title":"Thomas Saggese: 5+ total bases?","description":"","keywords":["thomas","saggese","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/thomas-saggese-5-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLTSAGGESE25-4","platform":"kalshi","title":"Thomas Saggese: 4+ total bases?","description":"","keywords":["thomas","saggese","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.01,"noAsk":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/thomas-saggese-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLTSAGGESE25-3","platform":"kalshi","title":"Thomas Saggese: 3+ total bases?","description":"","keywords":["thomas","saggese","3","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/thomas-saggese-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLTSAGGESE25-2","platform":"kalshi","title":"Thomas Saggese: 2+ total bases?","description":"","keywords":["thomas","saggese","2","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.39,"noBid":0.61,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/thomas-saggese-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLRURAS33-5","platform":"kalshi","title":"Ramón Urías: 5+ total bases?","description":"","keywords":["ram","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/ramn-uras-5-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLRURAS33-4","platform":"kalshi","title":"Ramón Urías: 4+ total bases?","description":"","keywords":["ram","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.01,"noAsk":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/ramn-uras-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLRURAS33-3","platform":"kalshi","title":"Ramón Urías: 3+ total bases?","description":"","keywords":["ram","3","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/ramn-uras-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLRURAS33-2","platform":"kalshi","title":"Ramón Urías: 2+ total bases?","description":"","keywords":["ram","2","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.4,"noBid":0.6,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/ramn-uras-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLNGORMAN16-5","platform":"kalshi","title":"Nolan Gorman: 5+ total bases?","description":"","keywords":["nolan","gorman","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/nolan-gorman-5-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLNGORMAN16-4","platform":"kalshi","title":"Nolan Gorman: 4+ total bases?","description":"","keywords":["nolan","gorman","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/nolan-gorman-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLNGORMAN16-3","platform":"kalshi","title":"Nolan Gorman: 3+ total bases?","description":"","keywords":["nolan","gorman","3","total","bases"],"yesPrice":0.18,"noPrice":0.81,"yesBid":0.14,"yesAsk":0.23,"noBid":0.77,"noAsk":0.86,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/nolan-gorman-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLNGORMAN16-2","platform":"kalshi","title":"Nolan Gorman: 2+ total bases?","description":"","keywords":["nolan","gorman","2","total","bases"],"yesPrice":0.31,"noPrice":0.69,"yesBid":0.27,"yesAsk":0.35,"noBid":0.65,"noAsk":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/nolan-gorman-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLMWINN0-4","platform":"kalshi","title":"Masyn Winn: 4+ total bases?","description":"","keywords":["masyn","winn","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.01,"noAsk":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/masyn-winn-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLMWINN0-3","platform":"kalshi","title":"Masyn Winn: 3+ total bases?","description":"","keywords":["masyn","winn","3","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/masyn-winn-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLMWINN0-2","platform":"kalshi","title":"Masyn Winn: 2+ total bases?","description":"","keywords":["masyn","winn","2","total","bases"],"yesPrice":0.34,"noPrice":0.67,"yesBid":0.27,"yesAsk":0.4,"noBid":0.6,"noAsk":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/masyn-winn-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLJWETHERHOLT77-5","platform":"kalshi","title":"JJ Wetherholt: 5+ total bases?","description":"","keywords":["wetherholt","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/jj-wetherholt-5-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLJWETHERHOLT77-4","platform":"kalshi","title":"JJ Wetherholt: 4+ total bases?","description":"","keywords":["wetherholt","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/jj-wetherholt-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLJWETHERHOLT77-3","platform":"kalshi","title":"JJ Wetherholt: 3+ total bases?","description":"","keywords":["wetherholt","3","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/jj-wetherholt-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLJWETHERHOLT77-2","platform":"kalshi","title":"JJ Wetherholt: 2+ total bases?","description":"","keywords":["wetherholt","2","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.45,"noBid":0.55,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/jj-wetherholt-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLJWALKER18-5","platform":"kalshi","title":"Jordan Walker: 5+ total bases?","description":"","keywords":["jordan","walker","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.01,"noAsk":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/jordan-walker-5-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLJWALKER18-4","platform":"kalshi","title":"Jordan Walker: 4+ total bases?","description":"","keywords":["jordan","walker","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/jordan-walker-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLJWALKER18-3","platform":"kalshi","title":"Jordan Walker: 3+ total bases?","description":"","keywords":["jordan","walker","3","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/jordan-walker-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLJWALKER18-2","platform":"kalshi","title":"Jordan Walker: 2+ total bases?","description":"","keywords":["jordan","walker","2","total","bases"],"yesPrice":0.38,"noPrice":0.62,"yesBid":0.31,"yesAsk":0.45,"noBid":0.55,"noAsk":0.69,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/jordan-walker-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLIHERRERA48-5","platform":"kalshi","title":"Ivan Herrera: 5+ total bases?","description":"","keywords":["ivan","herrera","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/ivan-herrera-5-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLIHERRERA48-4","platform":"kalshi","title":"Ivan Herrera: 4+ total bases?","description":"","keywords":["ivan","herrera","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/ivan-herrera-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLIHERRERA48-3","platform":"kalshi","title":"Ivan Herrera: 3+ total bases?","description":"","keywords":["ivan","herrera","3","total","bases"],"yesPrice":0.23,"noPrice":0.78,"yesBid":0.19,"yesAsk":0.26,"noBid":0.74,"noAsk":0.81,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/ivan-herrera-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLIHERRERA48-2","platform":"kalshi","title":"Ivan Herrera: 2+ total bases?","description":"","keywords":["ivan","herrera","2","total","bases"],"yesPrice":0.42,"noPrice":0.58,"yesBid":0.38,"yesAsk":0.45,"noBid":0.55,"noAsk":0.62,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/ivan-herrera-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLABURLESON41-6","platform":"kalshi","title":"Alec Burleson: 6+ total bases?","description":"","keywords":["alec","burleson","6","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/alec-burleson-6-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLABURLESON41-5","platform":"kalshi","title":"Alec Burleson: 5+ total bases?","description":"","keywords":["alec","burleson","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/alec-burleson-5-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLABURLESON41-4","platform":"kalshi","title":"Alec Burleson: 4+ total bases?","description":"","keywords":["alec","burleson","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/alec-burleson-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLABURLESON41-3","platform":"kalshi","title":"Alec Burleson: 3+ total bases?","description":"","keywords":["alec","burleson","3","total","bases"],"yesPrice":0.27,"noPrice":0.73,"yesBid":0.22,"yesAsk":0.31,"noBid":0.69,"noAsk":0.78,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/alec-burleson-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-STLABURLESON41-2","platform":"kalshi","title":"Alec Burleson: 2+ total bases?","description":"","keywords":["alec","burleson","2","total","bases"],"yesPrice":0.44,"noPrice":0.56,"yesBid":0.41,"yesAsk":0.48,"noBid":0.52,"noAsk":0.59,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/alec-burleson-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAXEDWARDS9-5","platform":"kalshi","title":"Xavier Edwards: 5+ total bases?","description":"","keywords":["xavier","edwards","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/xavier-edwards-5-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAXEDWARDS9-4","platform":"kalshi","title":"Xavier Edwards: 4+ total bases?","description":"","keywords":["xavier","edwards","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.01,"noAsk":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/xavier-edwards-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAXEDWARDS9-3","platform":"kalshi","title":"Xavier Edwards: 3+ total bases?","description":"","keywords":["xavier","edwards","3","total","bases"],"yesPrice":0.24,"noPrice":0.77,"yesBid":0.19,"yesAsk":0.28,"noBid":0.72,"noAsk":0.81,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/xavier-edwards-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAXEDWARDS9-2","platform":"kalshi","title":"Xavier Edwards: 2+ total bases?","description":"","keywords":["xavier","edwards","2","total","bases"],"yesPrice":0.43,"noPrice":0.56,"yesBid":0.41,"yesAsk":0.46,"noBid":0.54,"noAsk":0.59,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/xavier-edwards-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAOLOPEZ6-5","platform":"kalshi","title":"Otto Lopez: 5+ total bases?","description":"","keywords":["otto","lopez","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/otto-lopez-5-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAOLOPEZ6-4","platform":"kalshi","title":"Otto Lopez: 4+ total bases?","description":"","keywords":["otto","lopez","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/otto-lopez-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAOLOPEZ6-3","platform":"kalshi","title":"Otto Lopez: 3+ total bases?","description":"","keywords":["otto","lopez","3","total","bases"],"yesPrice":0.23,"noPrice":0.78,"yesBid":0.18,"yesAsk":0.27,"noBid":0.73,"noAsk":0.82,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/otto-lopez-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAOLOPEZ6-2","platform":"kalshi","title":"Otto Lopez: 2+ total bases?","description":"","keywords":["otto","lopez","2","total","bases"],"yesPrice":0.43,"noPrice":0.56,"yesBid":0.41,"yesAsk":0.46,"noBid":0.54,"noAsk":0.59,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/otto-lopez-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAOCAISSIE17-5","platform":"kalshi","title":"Owen Caissie: 5+ total bases?","description":"","keywords":["owen","caissie","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.01,"noAsk":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/owen-caissie-5-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAOCAISSIE17-4","platform":"kalshi","title":"Owen Caissie: 4+ total bases?","description":"","keywords":["owen","caissie","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/owen-caissie-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAOCAISSIE17-3","platform":"kalshi","title":"Owen Caissie: 3+ total bases?","description":"","keywords":["owen","caissie","3","total","bases"],"yesPrice":0.2,"noPrice":0.8,"yesBid":0.16,"yesAsk":0.23,"noBid":0.77,"noAsk":0.84,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/owen-caissie-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAOCAISSIE17-2","platform":"kalshi","title":"Owen Caissie: 2+ total bases?","description":"","keywords":["owen","caissie","2","total","bases"],"yesPrice":0.34,"noPrice":0.66,"yesBid":0.31,"yesAsk":0.38,"noBid":0.62,"noAsk":0.69,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/owen-caissie-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIALHICKS34-5","platform":"kalshi","title":"Liam Hicks: 5+ total bases?","description":"","keywords":["liam","hicks","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/liam-hicks-5-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIALHICKS34-4","platform":"kalshi","title":"Liam Hicks: 4+ total bases?","description":"","keywords":["liam","hicks","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.01,"noAsk":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/liam-hicks-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIALHICKS34-3","platform":"kalshi","title":"Liam Hicks: 3+ total bases?","description":"","keywords":["liam","hicks","3","total","bases"],"yesPrice":0.18,"noPrice":0.81,"yesBid":0.15,"yesAsk":0.22,"noBid":0.78,"noAsk":0.85,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/liam-hicks-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIALHICKS34-2","platform":"kalshi","title":"Liam Hicks: 2+ total bases?","description":"","keywords":["liam","hicks","2","total","bases"],"yesPrice":0.38,"noPrice":0.63,"yesBid":0.34,"yesAsk":0.41,"noBid":0.59,"noAsk":0.66,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/liam-hicks-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAKSTOWERS28-6","platform":"kalshi","title":"Kyle Stowers: 6+ total bases?","description":"","keywords":["kyle","stowers","6","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/kyle-stowers-6-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAKSTOWERS28-5","platform":"kalshi","title":"Kyle Stowers: 5+ total bases?","description":"","keywords":["kyle","stowers","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/kyle-stowers-5-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAKSTOWERS28-4","platform":"kalshi","title":"Kyle Stowers: 4+ total bases?","description":"","keywords":["kyle","stowers","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/kyle-stowers-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAKSTOWERS28-3","platform":"kalshi","title":"Kyle Stowers: 3+ total bases?","description":"","keywords":["kyle","stowers","3","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.36,"noBid":0.64,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/kyle-stowers-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAKSTOWERS28-2","platform":"kalshi","title":"Kyle Stowers: 2+ total bases?","description":"","keywords":["kyle","stowers","2","total","bases"],"yesPrice":0.43,"noPrice":0.57,"yesBid":0.37,"yesAsk":0.49,"noBid":0.51,"noAsk":0.63,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/kyle-stowers-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAJMARSEE87-5","platform":"kalshi","title":"Jakob Marsee: 5+ total bases?","description":"","keywords":["jakob","marsee","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.01,"noAsk":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/jakob-marsee-5-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAJMARSEE87-4","platform":"kalshi","title":"Jakob Marsee: 4+ total bases?","description":"","keywords":["jakob","marsee","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/jakob-marsee-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAJMARSEE87-3","platform":"kalshi","title":"Jakob Marsee: 3+ total bases?","description":"","keywords":["jakob","marsee","3","total","bases"],"yesPrice":0.23,"noPrice":0.78,"yesBid":0.18,"yesAsk":0.27,"noBid":0.73,"noAsk":0.82,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/jakob-marsee-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAJMARSEE87-2","platform":"kalshi","title":"Jakob Marsee: 2+ total bases?","description":"","keywords":["jakob","marsee","2","total","bases"],"yesPrice":0.42,"noPrice":0.58,"yesBid":0.38,"yesAsk":0.45,"noBid":0.55,"noAsk":0.62,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/jakob-marsee-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAGPAULEY21-4","platform":"kalshi","title":"Graham Pauley: 4+ total bases?","description":"","keywords":["graham","pauley","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/graham-pauley-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAGPAULEY21-3","platform":"kalshi","title":"Graham Pauley: 3+ total bases?","description":"","keywords":["graham","pauley","3","total","bases"],"yesPrice":0.13,"noPrice":0.88,"yesBid":0.08,"yesAsk":0.17,"noBid":0.83,"noAsk":0.92,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/graham-pauley-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAGPAULEY21-2","platform":"kalshi","title":"Graham Pauley: 2+ total bases?","description":"","keywords":["graham","pauley","2","total","bases"],"yesPrice":0.28,"noPrice":0.72,"yesBid":0.25,"yesAsk":0.31,"noBid":0.69,"noAsk":0.75,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/graham-pauley-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIACNORBY1-4","platform":"kalshi","title":"Connor Norby: 4+ total bases?","description":"","keywords":["connor","norby","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/connor-norby-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIACNORBY1-3","platform":"kalshi","title":"Connor Norby: 3+ total bases?","description":"","keywords":["connor","norby","3","total","bases"],"yesPrice":0.15,"noPrice":0.84,"yesBid":0.11,"yesAsk":0.2,"noBid":0.8,"noAsk":0.89,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/connor-norby-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIACNORBY1-2","platform":"kalshi","title":"Connor Norby: 2+ total bases?","description":"","keywords":["connor","norby","2","total","bases"],"yesPrice":0.33,"noPrice":0.67,"yesBid":0.3,"yesAsk":0.36,"noBid":0.64,"noAsk":0.7,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/connor-norby-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAARAMREZ50-5","platform":"kalshi","title":"Agustín Ramírez: 5+ total bases?","description":"","keywords":["agust","ram","rez","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/agustn-ramrez-5-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAARAMREZ50-4","platform":"kalshi","title":"Agustín Ramírez: 4+ total bases?","description":"","keywords":["agust","ram","rez","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/agustn-ramrez-4-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAARAMREZ50-3","platform":"kalshi","title":"Agustín Ramírez: 3+ total bases?","description":"","keywords":["agust","ram","rez","3","total","bases"],"yesPrice":0.18,"noPrice":0.81,"yesBid":0.14,"yesAsk":0.23,"noBid":0.77,"noAsk":0.86,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/agustn-ramrez-3-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201840STLMIA-MIAARAMREZ50-2","platform":"kalshi","title":"Agustín Ramírez: 2+ total bases?","description":"","keywords":["agust","ram","rez","2","total","bases"],"yesPrice":0.36,"noPrice":0.64,"yesBid":0.33,"yesAsk":0.4,"noBid":0.6,"noAsk":0.67,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/agustn-ramrez-2-total-bases/kxmlbtb-26apr201840stlmia","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEGVALERA7-3","platform":"kalshi","title":"George Valera: 3+ hits + runs + RBIs?","description":"","keywords":["george","valera","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.28,"noBid":0.72,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/george-valera-3-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBTWALLS6-3","platform":"kalshi","title":"Taylor Walls: 3+ total bases?","description":"","keywords":["taylor","walls","3","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.21,"noBid":0.79,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/taylor-walls-3-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEGVALERA7-2","platform":"kalshi","title":"George Valera: 2+ hits + runs + RBIs?","description":"","keywords":["george","valera","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.32,"noPrice":0.69,"yesBid":0.23,"yesAsk":0.4,"noBid":0.6,"noAsk":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/george-valera-2-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBTWALLS6-2","platform":"kalshi","title":"Taylor Walls: 2+ total bases?","description":"","keywords":["taylor","walls","2","total","bases"],"yesPrice":0.24,"noPrice":0.76,"yesBid":0.22,"yesAsk":0.27,"noBid":0.73,"noAsk":0.78,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/taylor-walls-2-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEGVALERA7-1","platform":"kalshi","title":"George Valera: 1+ hits + runs + RBIs?","description":"","keywords":["george","valera","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.58,"noPrice":0.42,"yesBid":0.51,"yesAsk":0.66,"noBid":0.34,"noAsk":0.49,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/george-valera-1-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINTFRIEDL29-4","platform":"kalshi","title":"TJ Friedl: 4+ total bases?","description":"","keywords":["friedl","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/tj-friedl-4-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUDHARRIS-4","platform":"kalshi","title":"Dustin Harris: 4+ hits + runs + RBIs?","description":"","keywords":["dustin","harris","democrat","kamala","vice president","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/dustin-harris-4-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINTFRIEDL29-3","platform":"kalshi","title":"TJ Friedl: 3+ total bases?","description":"","keywords":["friedl","3","total","bases"],"yesPrice":0.17,"noPrice":0.83,"yesBid":0.14,"yesAsk":0.2,"noBid":0.8,"noAsk":0.86,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/tj-friedl-3-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUDHARRIS-3","platform":"kalshi","title":"Dustin Harris: 3+ hits + runs + RBIs?","description":"","keywords":["dustin","harris","democrat","kamala","vice president","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/dustin-harris-3-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINTFRIEDL29-2","platform":"kalshi","title":"TJ Friedl: 2+ total bases?","description":"","keywords":["friedl","2","total","bases"],"yesPrice":0.32,"noPrice":0.68,"yesBid":0.29,"yesAsk":0.36,"noBid":0.64,"noAsk":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/tj-friedl-2-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUDHARRIS-2","platform":"kalshi","title":"Dustin Harris: 2+ hits + runs + RBIs?","description":"","keywords":["dustin","harris","democrat","kamala","vice president","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.34,"noBid":0.66,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/dustin-harris-2-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINSSTEER7-5","platform":"kalshi","title":"Spencer Steer: 5+ total bases?","description":"","keywords":["spencer","steer","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/spencer-steer-5-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUDHARRIS-1","platform":"kalshi","title":"Dustin Harris: 1+ hits + runs + RBIs?","description":"","keywords":["dustin","harris","democrat","kamala","vice president","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.61,"noBid":0.39,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/dustin-harris-1-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINSSTEER7-4","platform":"kalshi","title":"Spencer Steer: 4+ total bases?","description":"","keywords":["spencer","steer","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.9,"noBid":0.1,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/spencer-steer-4-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:45.992Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLECDELAUTER24-5","platform":"kalshi","title":"Chase DeLauter: 5+ hits + runs + RBIs?","description":"","keywords":["chase","delauter","5","hits","runs","rbis","5 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/chase-delauter-5-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINSSTEER7-3","platform":"kalshi","title":"Spencer Steer: 3+ total bases?","description":"","keywords":["spencer","steer","3","total","bases"],"yesPrice":0.17,"noPrice":0.83,"yesBid":0.13,"yesAsk":0.2,"noBid":0.8,"noAsk":0.87,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/spencer-steer-3-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLECDELAUTER24-4","platform":"kalshi","title":"Chase DeLauter: 4+ hits + runs + RBIs?","description":"","keywords":["chase","delauter","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/chase-delauter-4-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINSSTEER7-2","platform":"kalshi","title":"Spencer Steer: 2+ total bases?","description":"","keywords":["spencer","steer","2","total","bases"],"yesPrice":0.32,"noPrice":0.68,"yesBid":0.3,"yesAsk":0.35,"noBid":0.65,"noAsk":0.7,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/spencer-steer-2-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLECDELAUTER24-3","platform":"kalshi","title":"Chase DeLauter: 3+ hits + runs + RBIs?","description":"","keywords":["chase","delauter","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.37,"noBid":0.63,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/chase-delauter-3-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINSSTEWART27-6","platform":"kalshi","title":"Sal Stewart: 6+ total bases?","description":"","keywords":["sal","stewart","6","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/sal-stewart-6-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLECDELAUTER24-2","platform":"kalshi","title":"Chase DeLauter: 2+ hits + runs + RBIs?","description":"","keywords":["chase","delauter","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.46,"noPrice":0.54,"yesBid":0.4,"yesAsk":0.51,"noBid":0.49,"noAsk":0.6,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/chase-delauter-2-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINSSTEWART27-5","platform":"kalshi","title":"Sal Stewart: 5+ total bases?","description":"","keywords":["sal","stewart","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.95,"noBid":0.05,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/sal-stewart-5-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLECDELAUTER24-1","platform":"kalshi","title":"Chase DeLauter: 1+ hits + runs + RBIs?","description":"","keywords":["chase","delauter","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.74,"noBid":0.26,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/chase-delauter-1-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINSSTEWART27-4","platform":"kalshi","title":"Sal Stewart: 4+ total bases?","description":"","keywords":["sal","stewart","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.9,"noBid":0.1,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/sal-stewart-4-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUCCORREA1-5","platform":"kalshi","title":"Carlos Correa: 5+ hits + runs + RBIs?","description":"","keywords":["carlos","correa","5","hits","runs","rbis","5 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/carlos-correa-5-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINSSTEWART27-3","platform":"kalshi","title":"Sal Stewart: 3+ total bases?","description":"","keywords":["sal","stewart","3","total","bases"],"yesPrice":0.24,"noPrice":0.77,"yesBid":0.2,"yesAsk":0.27,"noBid":0.73,"noAsk":0.8,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/sal-stewart-3-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUCCORREA1-4","platform":"kalshi","title":"Carlos Correa: 4+ hits + runs + RBIs?","description":"","keywords":["carlos","correa","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.91,"noBid":0.09,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/carlos-correa-4-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINSSTEWART27-2","platform":"kalshi","title":"Sal Stewart: 2+ total bases?","description":"","keywords":["sal","stewart","2","total","bases"],"yesPrice":0.42,"noPrice":0.58,"yesBid":0.39,"yesAsk":0.44,"noBid":0.56,"noAsk":0.61,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/sal-stewart-2-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUCCORREA1-3","platform":"kalshi","title":"Carlos Correa: 3+ hits + runs + RBIs?","description":"","keywords":["carlos","correa","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.34,"noBid":0.66,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/carlos-correa-3-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBRPALACIOS1-4","platform":"kalshi","title":"Richie Palacios: 4+ total bases?","description":"","keywords":["richie","palacios","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.95,"noBid":0.05,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/richie-palacios-4-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUCCORREA1-2","platform":"kalshi","title":"Carlos Correa: 2+ hits + runs + RBIs?","description":"","keywords":["carlos","correa","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.49,"noPrice":0.51,"yesBid":0.48,"yesAsk":0.5,"noBid":0.5,"noAsk":0.52,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/carlos-correa-2-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBRPALACIOS1-3","platform":"kalshi","title":"Richie Palacios: 3+ total bases?","description":"","keywords":["richie","palacios","3","total","bases"],"yesPrice":0.14,"noPrice":0.86,"yesBid":0.09,"yesAsk":0.18,"noBid":0.82,"noAsk":0.91,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/richie-palacios-3-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-HOUCCORREA1-1","platform":"kalshi","title":"Carlos Correa: 1+ hits + runs + RBIs?","description":"","keywords":["carlos","correa","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.7,"noPrice":0.3,"yesBid":0.63,"yesAsk":0.77,"noBid":0.23,"noAsk":0.37,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/carlos-correa-1-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBRPALACIOS1-2","platform":"kalshi","title":"Richie Palacios: 2+ total bases?","description":"","keywords":["richie","palacios","2","total","bases"],"yesPrice":0.27,"noPrice":0.73,"yesBid":0.22,"yesAsk":0.31,"noBid":0.69,"noAsk":0.78,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/richie-palacios-2-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEBROCCHIO4-4","platform":"kalshi","title":"Brayan Rocchio: 4+ hits + runs + RBIs?","description":"","keywords":["brayan","rocchio","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/brayan-rocchio-4-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINRHINDS57-5","platform":"kalshi","title":"Rece Hinds: 5+ total bases?","description":"","keywords":["rece","hinds","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/rece-hinds-5-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEBROCCHIO4-3","platform":"kalshi","title":"Brayan Rocchio: 3+ hits + runs + RBIs?","description":"","keywords":["brayan","rocchio","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.53,"noPrice":0.47,"yesBid":0.14,"yesAsk":0.91,"noBid":0.09,"noAsk":0.86,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/brayan-rocchio-3-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINRHINDS57-4","platform":"kalshi","title":"Rece Hinds: 4+ total bases?","description":"","keywords":["rece","hinds","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.91,"noBid":0.09,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/rece-hinds-4-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEBROCCHIO4-2","platform":"kalshi","title":"Brayan Rocchio: 2+ hits + runs + RBIs?","description":"","keywords":["brayan","rocchio","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.35,"noBid":0.65,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/brayan-rocchio-2-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINRHINDS57-3","platform":"kalshi","title":"Rece Hinds: 3+ total bases?","description":"","keywords":["rece","hinds","3","total","bases"],"yesPrice":0.2,"noPrice":0.8,"yesBid":0.15,"yesAsk":0.24,"noBid":0.76,"noAsk":0.85,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/rece-hinds-3-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEBROCCHIO4-1","platform":"kalshi","title":"Brayan Rocchio: 1+ hits + runs + RBIs?","description":"","keywords":["brayan","rocchio","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.55,"noPrice":0.45,"yesBid":0.49,"yesAsk":0.61,"noBid":0.39,"noAsk":0.51,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/brayan-rocchio-1-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINRHINDS57-2","platform":"kalshi","title":"Rece Hinds: 2+ total bases?","description":"","keywords":["rece","hinds","2","total","bases"],"yesPrice":0.31,"noPrice":0.69,"yesBid":0.27,"yesAsk":0.35,"noBid":0.65,"noAsk":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/rece-hinds-2-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEBNAYLOR23-5","platform":"kalshi","title":"Bo Naylor: 5+ hits + runs + RBIs?","description":"","keywords":["naylor","5","hits","runs","rbis","5 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/bo-naylor-5-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBNFORTES40-5","platform":"kalshi","title":"Nick Fortes: 5+ total bases?","description":"","keywords":["nick","fortes","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/nick-fortes-5-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEBNAYLOR23-4","platform":"kalshi","title":"Bo Naylor: 4+ hits + runs + RBIs?","description":"","keywords":["naylor","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/bo-naylor-4-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBNFORTES40-4","platform":"kalshi","title":"Nick Fortes: 4+ total bases?","description":"","keywords":["nick","fortes","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.98,"noBid":0.02,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/nick-fortes-4-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEBNAYLOR23-3","platform":"kalshi","title":"Bo Naylor: 3+ hits + runs + RBIs?","description":"","keywords":["naylor","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.27,"noBid":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/bo-naylor-3-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBNFORTES40-3","platform":"kalshi","title":"Nick Fortes: 3+ total bases?","description":"","keywords":["nick","fortes","3","total","bases"],"yesPrice":0.15,"noPrice":0.84,"yesBid":0.12,"yesAsk":0.19,"noBid":0.81,"noAsk":0.88,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/nick-fortes-3-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEBNAYLOR23-2","platform":"kalshi","title":"Bo Naylor: 2+ hits + runs + RBIs?","description":"","keywords":["naylor","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.39,"noPrice":0.61,"yesBid":0.38,"yesAsk":0.39,"noBid":0.61,"noAsk":0.62,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/bo-naylor-2-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBNFORTES40-2","platform":"kalshi","title":"Nick Fortes: 2+ total bases?","description":"","keywords":["nick","fortes","2","total","bases"],"yesPrice":0.32,"noPrice":0.69,"yesBid":0.29,"yesAsk":0.34,"noBid":0.66,"noAsk":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/nick-fortes-2-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201810HOUCLE-CLEBNAYLOR23-1","platform":"kalshi","title":"Bo Naylor: 1+ hits + runs + RBIs?","description":"","keywords":["naylor","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.54,"noPrice":0.46,"yesBid":0.48,"yesAsk":0.61,"noBid":0.39,"noAsk":0.52,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/bo-naylor-1-hits-runs-rbis/kxmlbhrr-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINMMCLAIN9-5","platform":"kalshi","title":"Matt McLain: 5+ total bases?","description":"","keywords":["matt","mclain","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.95,"noBid":0.05,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/matt-mclain-5-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUYDIAZ21-4","platform":"kalshi","title":"Yainer Diaz: 4+ total bases?","description":"","keywords":["yainer","diaz","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.98,"noBid":0.02,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/yainer-diaz-4-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINMMCLAIN9-4","platform":"kalshi","title":"Matt McLain: 4+ total bases?","description":"","keywords":["matt","mclain","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/matt-mclain-4-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUYDIAZ21-3","platform":"kalshi","title":"Yainer Diaz: 3+ total bases?","description":"","keywords":["yainer","diaz","3","total","bases"],"yesPrice":0.18,"noPrice":0.82,"yesBid":0.15,"yesAsk":0.21,"noBid":0.79,"noAsk":0.85,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/yainer-diaz-3-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINMMCLAIN9-3","platform":"kalshi","title":"Matt McLain: 3+ total bases?","description":"","keywords":["matt","mclain","3","total","bases"],"yesPrice":0.2,"noPrice":0.8,"yesBid":0.16,"yesAsk":0.23,"noBid":0.77,"noAsk":0.84,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/matt-mclain-3-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.356Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUYDIAZ21-2","platform":"kalshi","title":"Yainer Diaz: 2+ total bases?","description":"","keywords":["yainer","diaz","2","total","bases"],"yesPrice":0.35,"noPrice":0.65,"yesBid":0.32,"yesAsk":0.39,"noBid":0.61,"noAsk":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/yainer-diaz-2-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINMMCLAIN9-2","platform":"kalshi","title":"Matt McLain: 2+ total bases?","description":"","keywords":["matt","mclain","2","total","bases"],"yesPrice":0.35,"noPrice":0.65,"yesBid":0.31,"yesAsk":0.4,"noBid":0.6,"noAsk":0.69,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/matt-mclain-2-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUTTRAMMELL26-4","platform":"kalshi","title":"Taylor Trammell: 4+ total bases?","description":"","keywords":["taylor","trammell","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/taylor-trammell-4-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINKHAYES3-4","platform":"kalshi","title":"Ke'Bryan Hayes: 4+ total bases?","description":"","keywords":["ke'bryan","hayes","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.96,"noBid":0.04,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/kebryan-hayes-4-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUTTRAMMELL26-3","platform":"kalshi","title":"Taylor Trammell: 3+ total bases?","description":"","keywords":["taylor","trammell","3","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.23,"noBid":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/taylor-trammell-3-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBRFI-26APR231510SDCOL","platform":"kalshi","title":"San Diego vs Colorado First Inning Run?","description":"","keywords":["san","diego","colorado","first","inning","run"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.03,"yesAsk":0.97,"noBid":0.03,"noAsk":0.97,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbrfi/san-diego-vs-colorado-first-inning-run/kxmlbrfi-26apr231510sdcol","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-26T19:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINKHAYES3-3","platform":"kalshi","title":"Ke'Bryan Hayes: 3+ total bases?","description":"","keywords":["ke'bryan","hayes","3","total","bases"],"yesPrice":0.12,"noPrice":0.89,"yesBid":0.07,"yesAsk":0.16,"noBid":0.84,"noAsk":0.93,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/kebryan-hayes-3-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUTTRAMMELL26-2","platform":"kalshi","title":"Taylor Trammell: 2+ total bases?","description":"","keywords":["taylor","trammell","2","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.32,"noBid":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/taylor-trammell-2-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINKHAYES3-2","platform":"kalshi","title":"Ke'Bryan Hayes: 2+ total bases?","description":"","keywords":["ke'bryan","hayes","2","total","bases"],"yesPrice":0.26,"noPrice":0.74,"yesBid":0.22,"yesAsk":0.3,"noBid":0.7,"noAsk":0.78,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/kebryan-hayes-2-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLERHOSKINS8-5","platform":"kalshi","title":"Rhys Hoskins: 5+ total bases?","description":"","keywords":["rhys","hoskins","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/rhys-hoskins-5-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBJFRALEY17-5","platform":"kalshi","title":"Jake Fraley: 5+ total bases?","description":"","keywords":["jake","fraley","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/jake-fraley-5-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLERHOSKINS8-4","platform":"kalshi","title":"Rhys Hoskins: 4+ total bases?","description":"","keywords":["rhys","hoskins","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.91,"noBid":0.09,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/rhys-hoskins-4-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBJFRALEY17-4","platform":"kalshi","title":"Jake Fraley: 4+ total bases?","description":"","keywords":["jake","fraley","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.91,"noBid":0.09,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/jake-fraley-4-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLERHOSKINS8-3","platform":"kalshi","title":"Rhys Hoskins: 3+ total bases?","description":"","keywords":["rhys","hoskins","3","total","bases"],"yesPrice":0.2,"noPrice":0.8,"yesBid":0.15,"yesAsk":0.24,"noBid":0.76,"noAsk":0.85,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/rhys-hoskins-3-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBJFRALEY17-3","platform":"kalshi","title":"Jake Fraley: 3+ total bases?","description":"","keywords":["jake","fraley","3","total","bases"],"yesPrice":0.15,"noPrice":0.84,"yesBid":0.11,"yesAsk":0.2,"noBid":0.8,"noAsk":0.89,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/jake-fraley-3-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLERHOSKINS8-2","platform":"kalshi","title":"Rhys Hoskins: 2+ total bases?","description":"","keywords":["rhys","hoskins","2","total","bases"],"yesPrice":0.31,"noPrice":0.69,"yesBid":0.27,"yesAsk":0.35,"noBid":0.65,"noAsk":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/rhys-hoskins-2-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBJFRALEY17-2","platform":"kalshi","title":"Jake Fraley: 2+ total bases?","description":"","keywords":["jake","fraley","2","total","bases"],"yesPrice":0.31,"noPrice":0.69,"yesBid":0.27,"yesAsk":0.34,"noBid":0.66,"noAsk":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/jake-fraley-2-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLEKMANZARDO9-5","platform":"kalshi","title":"Kyle Manzardo: 5+ total bases?","description":"","keywords":["kyle","manzardo","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/kyle-manzardo-5-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINESUAREZ28-5","platform":"kalshi","title":"Eugenio Suárez: 5+ total bases?","description":"","keywords":["eugenio","rez","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.95,"noBid":0.05,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/eugenio-surez-5-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLEKMANZARDO9-4","platform":"kalshi","title":"Kyle Manzardo: 4+ total bases?","description":"","keywords":["kyle","manzardo","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.91,"noBid":0.09,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/kyle-manzardo-4-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINESUAREZ28-4","platform":"kalshi","title":"Eugenio Suárez: 4+ total bases?","description":"","keywords":["eugenio","rez","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/eugenio-surez-4-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLEKMANZARDO9-3","platform":"kalshi","title":"Kyle Manzardo: 3+ total bases?","description":"","keywords":["kyle","manzardo","3","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.27,"noBid":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/kyle-manzardo-3-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINESUAREZ28-3","platform":"kalshi","title":"Eugenio Suárez: 3+ total bases?","description":"","keywords":["eugenio","rez","3","total","bases"],"yesPrice":0.23,"noPrice":0.78,"yesBid":0.18,"yesAsk":0.27,"noBid":0.73,"noAsk":0.82,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/eugenio-surez-3-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLEKMANZARDO9-2","platform":"kalshi","title":"Kyle Manzardo: 2+ total bases?","description":"","keywords":["kyle","manzardo","2","total","bases"],"yesPrice":0.26,"noPrice":0.74,"yesBid":0.2,"yesAsk":0.32,"noBid":0.68,"noAsk":0.8,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/kyle-manzardo-2-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-CINESUAREZ28-2","platform":"kalshi","title":"Eugenio Suárez: 2+ total bases?","description":"","keywords":["eugenio","rez","2","total","bases"],"yesPrice":0.35,"noPrice":0.65,"yesBid":0.32,"yesAsk":0.39,"noBid":0.61,"noAsk":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/eugenio-surez-2-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLEJBRITO74-4","platform":"kalshi","title":"Juan Brito: 4+ total bases?","description":"","keywords":["juan","brito","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/juan-brito-4-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBCSIMPSON14-4","platform":"kalshi","title":"Chandler Simpson: 4+ total bases?","description":"","keywords":["chandler","simpson","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/chandler-simpson-4-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLEJBRITO74-3","platform":"kalshi","title":"Juan Brito: 3+ total bases?","description":"","keywords":["juan","brito","3","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.22,"noBid":0.78,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/juan-brito-3-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBCSIMPSON14-3","platform":"kalshi","title":"Chandler Simpson: 3+ total bases?","description":"","keywords":["chandler","simpson","3","total","bases"],"yesPrice":0.23,"noPrice":0.77,"yesBid":0.2,"yesAsk":0.26,"noBid":0.74,"noAsk":0.8,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/chandler-simpson-3-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLEJBRITO74-2","platform":"kalshi","title":"Juan Brito: 2+ total bases?","description":"","keywords":["juan","brito","2","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.32,"noBid":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/juan-brito-2-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBCSIMPSON14-2","platform":"kalshi","title":"Chandler Simpson: 2+ total bases?","description":"","keywords":["chandler","simpson","2","total","bases"],"yesPrice":0.4,"noPrice":0.6,"yesBid":0.37,"yesAsk":0.42,"noBid":0.58,"noAsk":0.63,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/chandler-simpson-2-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUIPAREDES15-5","platform":"kalshi","title":"Isaac Paredes: 5+ total bases?","description":"","keywords":["isaac","paredes","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/isaac-paredes-5-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBCMULLINS31-5","platform":"kalshi","title":"Cedric Mullins: 5+ total bases?","description":"","keywords":["cedric","mullins","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.96,"noBid":0.04,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/cedric-mullins-5-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUIPAREDES15-4","platform":"kalshi","title":"Isaac Paredes: 4+ total bases?","description":"","keywords":["isaac","paredes","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.91,"noBid":0.09,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/isaac-paredes-4-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBCMULLINS31-4","platform":"kalshi","title":"Cedric Mullins: 4+ total bases?","description":"","keywords":["cedric","mullins","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.9,"noBid":0.1,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/cedric-mullins-4-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUIPAREDES15-3","platform":"kalshi","title":"Isaac Paredes: 3+ total bases?","description":"","keywords":["isaac","paredes","3","total","bases"],"yesPrice":0.17,"noPrice":0.82,"yesBid":0.14,"yesAsk":0.21,"noBid":0.79,"noAsk":0.86,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/isaac-paredes-3-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXATPSETWINNER-26APR21ECHBUD-2-ECH","platform":"kalshi","title":"Will Moez Echargui win set 2 in the Moez Echargui vs Nicolai Budkov Kjaer match","description":"","keywords":["moez","echargui","win","set","2","nicolai","budkov","kjaer","match","echargui win","win set"],"yesPrice":0.49,"noPrice":0.51,"yesBid":0.02,"yesAsk":0.97,"noBid":0.03,"noAsk":0.98,"volume24h":0,"url":"https://kalshi.com/markets/kxatpsetwinner/will-moez-echargui-win-set-2-in-the-moez-echargui-vs-nicolai-budkov-kjaer-match/kxatpsetwinner-26apr21echbud-2","category":"other","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-05-05T08:00:00Z"},{"id":"kalshi-KXATPSETWINNER-26APR21ECHBUD-2-BUD","platform":"kalshi","title":"Will Nicolai Budkov Kjaer win set 2 in the Moez Echargui vs Nicolai Budkov Kjaer match","description":"","keywords":["nicolai","budkov","kjaer","win","set","2","moez","echargui","match","kjaer win","win set"],"yesPrice":0.49,"noPrice":0.51,"yesBid":0.02,"yesAsk":0.97,"noBid":0.03,"noAsk":0.98,"volume24h":0,"url":"https://kalshi.com/markets/kxatpsetwinner/will-nicolai-budkov-kjaer-win-set-2-in-the-moez-echargui-vs-nicolai-budkov-kjaer-match/kxatpsetwinner-26apr21echbud-2","category":"other","lastUpdated":"2026-04-20T19:49:46.357Z","endDate":"2026-05-05T08:00:00Z"},{"id":"kalshi-KXATPSETWINNER-26APR21ECHBUD-1-ECH","platform":"kalshi","title":"Will Moez Echargui win set 1 in the Moez Echargui vs Nicolai Budkov Kjaer match","description":"","keywords":["moez","echargui","win","set","1","nicolai","budkov","kjaer","match","echargui win","win set"],"yesPrice":0.49,"noPrice":0.51,"yesBid":0.02,"yesAsk":0.97,"noBid":0.03,"noAsk":0.98,"volume24h":0,"url":"https://kalshi.com/markets/kxatpsetwinner/will-moez-echargui-win-set-1-in-the-moez-echargui-vs-nicolai-budkov-kjaer-match/kxatpsetwinner-26apr21echbud-1","category":"other","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-05-05T08:00:00Z"},{"id":"kalshi-KXATPSETWINNER-26APR21ECHBUD-1-BUD","platform":"kalshi","title":"Will Nicolai Budkov Kjaer win set 1 in the Moez Echargui vs Nicolai Budkov Kjaer match","description":"","keywords":["nicolai","budkov","kjaer","win","set","1","moez","echargui","match","kjaer win","win set"],"yesPrice":0.49,"noPrice":0.51,"yesBid":0.02,"yesAsk":0.97,"noBid":0.03,"noAsk":0.98,"volume24h":0,"url":"https://kalshi.com/markets/kxatpsetwinner/will-nicolai-budkov-kjaer-win-set-1-in-the-moez-echargui-vs-nicolai-budkov-kjaer-match/kxatpsetwinner-26apr21echbud-1","category":"other","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-05-05T08:00:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBCMULLINS31-3","platform":"kalshi","title":"Cedric Mullins: 3+ total bases?","description":"","keywords":["cedric","mullins","3","total","bases"],"yesPrice":0.17,"noPrice":0.82,"yesBid":0.13,"yesAsk":0.22,"noBid":0.78,"noAsk":0.87,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/cedric-mullins-3-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUIPAREDES15-2","platform":"kalshi","title":"Isaac Paredes: 2+ total bases?","description":"","keywords":["isaac","paredes","2","total","bases"],"yesPrice":0.31,"noPrice":0.69,"yesBid":0.27,"yesAsk":0.35,"noBid":0.65,"noAsk":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/isaac-paredes-2-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBTB-26APR201840CINTB-TBCMULLINS31-2","platform":"kalshi","title":"Cedric Mullins: 2+ total bases?","description":"","keywords":["cedric","mullins","2","total","bases"],"yesPrice":0.32,"noPrice":0.69,"yesBid":0.28,"yesAsk":0.35,"noBid":0.65,"noAsk":0.72,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/cedric-mullins-2-total-bases/kxmlbtb-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLEGVALERA7-4","platform":"kalshi","title":"George Valera: 4+ total bases?","description":"","keywords":["george","valera","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/george-valera-4-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-TBYDIAZ2-4","platform":"kalshi","title":"Yandy Díaz: 4+ hits?","description":"","keywords":["yandy","4","hits","4 hits"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/yandy-daz-4-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLEGVALERA7-3","platform":"kalshi","title":"George Valera: 3+ total bases?","description":"","keywords":["george","valera","3","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.24,"noBid":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/george-valera-3-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-TBYDIAZ2-3","platform":"kalshi","title":"Yandy Díaz: 3+ hits?","description":"","keywords":["yandy","3","hits","3 hits"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.95,"noBid":0.05,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/yandy-daz-3-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLEGVALERA7-2","platform":"kalshi","title":"George Valera: 2+ total bases?","description":"","keywords":["george","valera","2","total","bases"],"yesPrice":0.25,"noPrice":0.75,"yesBid":0.18,"yesAsk":0.32,"noBid":0.68,"noAsk":0.82,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/george-valera-2-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-TBYDIAZ2-2","platform":"kalshi","title":"Yandy Díaz: 2+ hits?","description":"","keywords":["yandy","2","hits","2 hits"],"yesPrice":0.28,"noPrice":0.72,"yesBid":0.24,"yesAsk":0.32,"noBid":0.68,"noAsk":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/yandy-daz-2-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUDHARRIS-4","platform":"kalshi","title":"Dustin Harris: 4+ total bases?","description":"","keywords":["dustin","harris","democrat","kamala","vice president","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.98,"noBid":0.02,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/dustin-harris-4-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-TBYDIAZ2-1","platform":"kalshi","title":"Yandy Díaz: 1+ hits?","description":"","keywords":["yandy","1","hits","1 hits"],"yesPrice":0.69,"noPrice":0.31,"yesBid":0.65,"yesAsk":0.73,"noBid":0.27,"noAsk":0.35,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/yandy-daz-1-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUDHARRIS-3","platform":"kalshi","title":"Dustin Harris: 3+ total bases?","description":"","keywords":["dustin","harris","democrat","kamala","vice president","3","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/dustin-harris-3-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-CINTSTEPHENSON37-3","platform":"kalshi","title":"Tyler Stephenson: 3+ hits?","description":"","keywords":["tyler","stephenson","3","hits","3 hits"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/tyler-stephenson-3-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUDHARRIS-2","platform":"kalshi","title":"Dustin Harris: 2+ total bases?","description":"","keywords":["dustin","harris","democrat","kamala","vice president","2","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.27,"noBid":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/dustin-harris-2-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-ATLMYASTRZEMSKI18-1","platform":"kalshi","title":"Mike Yastrzemski: 1+ hits + runs + RBIs?","description":"","keywords":["mike","yastrzemski","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.61,"noPrice":0.39,"yesBid":0.55,"yesAsk":0.68,"noBid":0.32,"noAsk":0.45,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/mike-yastrzemski-1-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-CINTSTEPHENSON37-2","platform":"kalshi","title":"Tyler Stephenson: 2+ hits?","description":"","keywords":["tyler","stephenson","2","hits","2 hits"],"yesPrice":0.17,"noPrice":0.83,"yesBid":0.13,"yesAsk":0.2,"noBid":0.8,"noAsk":0.87,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/tyler-stephenson-2-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.358Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLECDELAUTER24-5","platform":"kalshi","title":"Chase DeLauter: 5+ total bases?","description":"","keywords":["chase","delauter","5","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/chase-delauter-5-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-ATLMHARRIS23-5","platform":"kalshi","title":"Michael Harris: 5+ hits + runs + RBIs?","description":"","keywords":["michael","harris","democrat","kamala","vice president","5","hits","runs","rbis","5 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/michael-harris-5-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-CINTSTEPHENSON37-1","platform":"kalshi","title":"Tyler Stephenson: 1+ hits?","description":"","keywords":["tyler","stephenson","1","hits","1 hits"],"yesPrice":0.55,"noPrice":0.45,"yesBid":0.52,"yesAsk":0.58,"noBid":0.42,"noAsk":0.48,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/tyler-stephenson-1-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLECDELAUTER24-4","platform":"kalshi","title":"Chase DeLauter: 4+ total bases?","description":"","keywords":["chase","delauter","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.91,"noBid":0.09,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/chase-delauter-4-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-ATLMHARRIS23-4","platform":"kalshi","title":"Michael Harris: 4+ hits + runs + RBIs?","description":"","keywords":["michael","harris","democrat","kamala","vice president","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.91,"noBid":0.09,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/michael-harris-4-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-TBTWALLS6-3","platform":"kalshi","title":"Taylor Walls: 3+ hits?","description":"","keywords":["taylor","walls","3","hits","3 hits"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/taylor-walls-3-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLECDELAUTER24-3","platform":"kalshi","title":"Chase DeLauter: 3+ total bases?","description":"","keywords":["chase","delauter","3","total","bases"],"yesPrice":0.22,"noPrice":0.78,"yesBid":0.19,"yesAsk":0.25,"noBid":0.75,"noAsk":0.81,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/chase-delauter-3-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-ATLMHARRIS23-3","platform":"kalshi","title":"Michael Harris: 3+ hits + runs + RBIs?","description":"","keywords":["michael","harris","democrat","kamala","vice president","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.59,"noPrice":0.41,"yesBid":0.33,"yesAsk":0.86,"noBid":0.14,"noAsk":0.67,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/michael-harris-3-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-TBTWALLS6-2","platform":"kalshi","title":"Taylor Walls: 2+ hits?","description":"","keywords":["taylor","walls","2","hits","2 hits"],"yesPrice":0.54,"noPrice":0.46,"yesBid":0.09,"yesAsk":0.99,"noBid":0.01,"noAsk":0.91,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/taylor-walls-2-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLECDELAUTER24-2","platform":"kalshi","title":"Chase DeLauter: 2+ total bases?","description":"","keywords":["chase","delauter","2","total","bases"],"yesPrice":0.38,"noPrice":0.62,"yesBid":0.35,"yesAsk":0.41,"noBid":0.59,"noAsk":0.65,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/chase-delauter-2-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-ATLMHARRIS23-2","platform":"kalshi","title":"Michael Harris: 2+ hits + runs + RBIs?","description":"","keywords":["michael","harris","democrat","kamala","vice president","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.57,"noBid":0.43,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/michael-harris-2-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-TBTWALLS6-1","platform":"kalshi","title":"Taylor Walls: 1+ hits?","description":"","keywords":["taylor","walls","1","hits","1 hits"],"yesPrice":0.46,"noPrice":0.54,"yesBid":0.44,"yesAsk":0.49,"noBid":0.51,"noAsk":0.56,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/taylor-walls-1-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUCCORREA1-4","platform":"kalshi","title":"Carlos Correa: 4+ total bases?","description":"","keywords":["carlos","correa","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.91,"noBid":0.09,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/carlos-correa-4-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-CINTFRIEDL29-3","platform":"kalshi","title":"TJ Friedl: 3+ hits?","description":"","keywords":["friedl","3","hits","3 hits"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/tj-friedl-3-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUCCORREA1-3","platform":"kalshi","title":"Carlos Correa: 3+ total bases?","description":"","keywords":["carlos","correa","3","total","bases"],"yesPrice":0.2,"noPrice":0.8,"yesBid":0.15,"yesAsk":0.24,"noBid":0.76,"noAsk":0.85,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/carlos-correa-3-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-CINTFRIEDL29-2","platform":"kalshi","title":"TJ Friedl: 2+ hits?","description":"","keywords":["friedl","2","hits","2 hits"],"yesPrice":0.21,"noPrice":0.79,"yesBid":0.17,"yesAsk":0.25,"noBid":0.75,"noAsk":0.83,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/tj-friedl-2-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-HOUCCORREA1-2","platform":"kalshi","title":"Carlos Correa: 2+ total bases?","description":"","keywords":["carlos","correa","2","total","bases"],"yesPrice":0.38,"noPrice":0.63,"yesBid":0.34,"yesAsk":0.41,"noBid":0.59,"noAsk":0.66,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/carlos-correa-2-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-CINTFRIEDL29-1","platform":"kalshi","title":"TJ Friedl: 1+ hits?","description":"","keywords":["friedl","1","hits","1 hits"],"yesPrice":0.6,"noPrice":0.4,"yesBid":0.58,"yesAsk":0.63,"noBid":0.37,"noAsk":0.42,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/tj-friedl-1-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLEBROCCHIO4-4","platform":"kalshi","title":"Brayan Rocchio: 4+ total bases?","description":"","keywords":["brayan","rocchio","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/brayan-rocchio-4-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-CINSSTEER7-3","platform":"kalshi","title":"Spencer Steer: 3+ hits?","description":"","keywords":["spencer","steer","3","hits","3 hits"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/spencer-steer-3-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLEBROCCHIO4-3","platform":"kalshi","title":"Brayan Rocchio: 3+ total bases?","description":"","keywords":["brayan","rocchio","3","total","bases"],"yesPrice":0.12,"noPrice":0.88,"yesBid":0.08,"yesAsk":0.16,"noBid":0.84,"noAsk":0.92,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/brayan-rocchio-3-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-CINSSTEER7-2","platform":"kalshi","title":"Spencer Steer: 2+ hits?","description":"","keywords":["spencer","steer","2","hits","2 hits"],"yesPrice":0.17,"noPrice":0.82,"yesBid":0.13,"yesAsk":0.22,"noBid":0.78,"noAsk":0.87,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/spencer-steer-2-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLEBROCCHIO4-2","platform":"kalshi","title":"Brayan Rocchio: 2+ total bases?","description":"","keywords":["brayan","rocchio","2","total","bases"],"yesPrice":0.24,"noPrice":0.76,"yesBid":0.22,"yesAsk":0.27,"noBid":0.73,"noAsk":0.78,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/brayan-rocchio-2-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-CINSSTEER7-1","platform":"kalshi","title":"Spencer Steer: 1+ hits?","description":"","keywords":["spencer","steer","1","hits","1 hits"],"yesPrice":0.58,"noPrice":0.42,"yesBid":0.55,"yesAsk":0.61,"noBid":0.39,"noAsk":0.45,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/spencer-steer-1-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLEBNAYLOR23-4","platform":"kalshi","title":"Bo Naylor: 4+ total bases?","description":"","keywords":["naylor","4","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/bo-naylor-4-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-ATLMHARRIS23-1","platform":"kalshi","title":"Michael Harris: 1+ hits + runs + RBIs?","description":"","keywords":["michael","harris","democrat","kamala","vice president","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.78,"noBid":0.22,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/michael-harris-1-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-CINSSTEWART27-3","platform":"kalshi","title":"Sal Stewart: 3+ hits?","description":"","keywords":["sal","stewart","3","hits","3 hits"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/sal-stewart-3-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLEBNAYLOR23-3","platform":"kalshi","title":"Bo Naylor: 3+ total bases?","description":"","keywords":["naylor","3","total","bases"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.25,"noBid":0.75,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/bo-naylor-3-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-WSHLGARCA2-5","platform":"kalshi","title":"Luis García: 5+ hits + runs + RBIs?","description":"","keywords":["luis","garc","5","hits","runs","rbis","5 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/luis-garca-5-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-CINSSTEWART27-2","platform":"kalshi","title":"Sal Stewart: 2+ hits?","description":"","keywords":["sal","stewart","2","hits","2 hits"],"yesPrice":0.27,"noPrice":0.73,"yesBid":0.22,"yesAsk":0.31,"noBid":0.69,"noAsk":0.78,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/sal-stewart-2-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBTB-26APR201810HOUCLE-CLEBNAYLOR23-2","platform":"kalshi","title":"Bo Naylor: 2+ total bases?","description":"","keywords":["naylor","2","total","bases"],"yesPrice":0.23,"noPrice":0.78,"yesBid":0.14,"yesAsk":0.31,"noBid":0.69,"noAsk":0.86,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbtb/bo-naylor-2-total-bases/kxmlbtb-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-WSHLGARCA2-4","platform":"kalshi","title":"Luis García: 4+ hits + runs + RBIs?","description":"","keywords":["luis","garc","4","hits","runs","rbis","4 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/luis-garca-4-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-CINSSTEWART27-1","platform":"kalshi","title":"Sal Stewart: 1+ hits?","description":"","keywords":["sal","stewart","1","hits","1 hits"],"yesPrice":0.66,"noPrice":0.34,"yesBid":0.62,"yesAsk":0.69,"noBid":0.31,"noAsk":0.38,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/sal-stewart-1-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHIT-26APR201810HOUCLE-HOUYDIAZ21-3","platform":"kalshi","title":"Yainer Diaz: 3+ hits?","description":"","keywords":["yainer","diaz","3","hits","3 hits"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/yainer-diaz-3-hits/kxmlbhit-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-WSHLGARCA2-3","platform":"kalshi","title":"Luis García: 3+ hits + runs + RBIs?","description":"","keywords":["luis","garc","3","hits","runs","rbis","3 hits","hits runs"],"yesPrice":0.61,"noPrice":0.39,"yesBid":0.24,"yesAsk":0.99,"noBid":0.01,"noAsk":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/luis-garca-3-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-TBRPALACIOS1-3","platform":"kalshi","title":"Richie Palacios: 3+ hits?","description":"","keywords":["richie","palacios","3","hits","3 hits"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/richie-palacios-3-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHIT-26APR201810HOUCLE-HOUYDIAZ21-2","platform":"kalshi","title":"Yainer Diaz: 2+ hits?","description":"","keywords":["yainer","diaz","2","hits","2 hits"],"yesPrice":0.22,"noPrice":0.78,"yesBid":0.17,"yesAsk":0.26,"noBid":0.74,"noAsk":0.83,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/yainer-diaz-2-hits/kxmlbhit-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-WSHLGARCA2-2","platform":"kalshi","title":"Luis García: 2+ hits + runs + RBIs?","description":"","keywords":["luis","garc","2","hits","runs","rbis","2 hits","hits runs"],"yesPrice":0.7,"noPrice":0.3,"yesBid":0.42,"yesAsk":0.99,"noBid":0.01,"noAsk":0.58,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/luis-garca-2-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-TBRPALACIOS1-2","platform":"kalshi","title":"Richie Palacios: 2+ hits?","description":"","keywords":["richie","palacios","2","hits","2 hits"],"yesPrice":0.14,"noPrice":0.86,"yesBid":0.1,"yesAsk":0.17,"noBid":0.83,"noAsk":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/richie-palacios-2-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHIT-26APR201810HOUCLE-HOUYDIAZ21-1","platform":"kalshi","title":"Yainer Diaz: 1+ hits?","description":"","keywords":["yainer","diaz","1","hits","1 hits"],"yesPrice":0.59,"noPrice":0.41,"yesBid":0.56,"yesAsk":0.63,"noBid":0.37,"noAsk":0.44,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/yainer-diaz-1-hits/kxmlbhit-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-WSHLGARCA2-1","platform":"kalshi","title":"Luis García: 1+ hits + runs + RBIs?","description":"","keywords":["luis","garc","1","hits","runs","rbis","1 hits","hits runs"],"yesPrice":0.71,"noPrice":0.29,"yesBid":0.64,"yesAsk":0.78,"noBid":0.22,"noAsk":0.36,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/luis-garca-1-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-TBRPALACIOS1-1","platform":"kalshi","title":"Richie Palacios: 1+ hits?","description":"","keywords":["richie","palacios","1","hits","1 hits"],"yesPrice":0.52,"noPrice":0.48,"yesBid":0.49,"yesAsk":0.55,"noBid":0.45,"noAsk":0.51,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/richie-palacios-1-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-THVI","platform":"kalshi","title":"Will M.Thorbjornsen/K.Vilips lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["m.thorbjornsen","k.vilips","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-mthorbjornsenkvilips-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-STWA","platform":"kalshi","title":"Will J.Stanger/D.Walker lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["j.stanger","d.walker","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-jstangerdwalker-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.359Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-SMSP","platform":"kalshi","title":"Will A.Smalley/H.Springer lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["a.smalley","h.springer","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-asmalleyhspringer-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-SIWH","platform":"kalshi","title":"Will G.Sigg/V.Whaley lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["g.sigg","v.whaley","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-gsiggvwhaley-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-ROVI","platform":"kalshi","title":"Will M.Rozo/C.Villegas lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["m.rozo","c.villegas","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-mrozocvillegas-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-REVE","platform":"kalshi","title":"Will K.Reitan/K.Ventura lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["k.reitan","k.ventura","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-kreitankventura-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-RATH","platform":"kalshi","title":"Will A.Rai/S.Theegala lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["a.rai","s.theegala","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-araistheegala-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-PUSM","platform":"kalshi","title":"Will A.Putnam/A.Smotherman lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["a.putnam","a.smotherman","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-aputnamasmotherman-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-POSC","platform":"kalshi","title":"Will S.Power/M.Schmid lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["s.power","m.schmid","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-spowermschmid-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-PHYO","platform":"kalshi","title":"Will C.Phillips/C.Young lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["c.phillips","c.young","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-cphillipscyoung-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-PEWA","platform":"kalshi","title":"Will M.Penge/M.Wallace lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["m.penge","m.wallace","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-mpengemwallace-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-NYSV","platform":"kalshi","title":"Will P.Nyholm/J.Svensson lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["p.nyholm","j.svensson","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-pnyholmjsvensson-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-NEOL","platform":"kalshi","title":"Will R.Neergaard-Petersen/J.Olesen lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["r.neergaard-petersen","j.olesen","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-rneergaard-petersenjolesen-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-MUSK","platform":"kalshi","title":"Will T.Mullinax/D.Skinns lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["t.mullinax","d.skinns","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-tmullinaxdskinns-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-MOPI","platform":"kalshi","title":"Will T.Montgomery/S.Piercy lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["t.montgomery","s.piercy","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-tmontgomeryspiercy-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-MISN","platform":"kalshi","title":"Will K.Mitchell/B.Snedeker lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["k.mitchell","b.snedeker","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-kmitchellbsnedeker-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-MEST","platform":"kalshi","title":"Will T.Merritt/R.Streb lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["t.merritt","r.streb","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-tmerrittrstreb-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-MCRO","platform":"kalshi","title":"Will M.McGreevy/K.Roy lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["m.mcgreevy","k.roy","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-mmcgreevykroy-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-MCME","platform":"kalshi","title":"Will M.McCarty/M.Meissner lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["m.mccarty","m.meissner","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-mmccartymmeissner-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-LORA","platform":"kalshi","title":"Will J.Lower/C.Ramey lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["j.lower","c.ramey","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-jlowercramey-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-LISM","platform":"kalshi","title":"Will H.Li/J.Smith lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["h.li","j.smith","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-hlijsmith-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-LINO","platform":"kalshi","title":"Will L.List/H.Norlander lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["l.list","h.norlander","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-llisthnorlander-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-LASH","platform":"kalshi","title":"Will C.Lamprecht/N.Shipley lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["c.lamprecht","n.shipley","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-clamprechtnshipley-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-KOLO","platform":"kalshi","title":"Will B.Koepka/S.Lowry lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["b.koepka","s.lowry","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-bkoepkaslowry-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-KNMA","platform":"kalshi","title":"Will R.Knox/P.Malnati lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["r.knox","p.malnati","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-rknoxpmalnati-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-KIYU","platform":"kalshi","title":"Will T.Kim/K.Yu lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["t.kim","k.yu","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-tkimkyu-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-KIPA","platform":"kalshi","title":"Will C.Kim/R.Palmer lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["c.kim","r.palmer","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-ckimrpalmer-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-KIKI","platform":"kalshi","title":"Will C.Kirk/P.Kizzire lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["c.kirk","p.kizzire","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-ckirkpkizzire-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-KAMO","platform":"kalshi","title":"Will T.Kanaya/W.Mouw lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["t.kanaya","w.mouw","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-tkanayawmouw-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-JASU","platform":"kalshi","title":"Will S.Jaeger/J.Suber lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["s.jaeger","j.suber","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-sjaegerjsuber-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-HUPE","platform":"kalshi","title":"Will M.Hughes/T.Pendrith lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["m.hughes","t.pendrith","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-mhughestpendrith-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-HOWA","platform":"kalshi","title":"Will C.Hoffman/N.Watney lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["c.hoffman","n.watney","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-choffmannwatney-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-HORY","platform":"kalshi","title":"Will B.Hossler/S.Ryder lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["b.hossler","s.ryder","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-bhosslersryder-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-HOLI","platform":"kalshi","title":"Will R.Hoey/D.Lipsky lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["r.hoey","d.lipsky","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-rhoeydlipsky-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-HOHO","platform":"kalshi","title":"Will T.Hoge/B.Horschel lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["t.hoge","b.horschel","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-thogebhorschel-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-HIPA","platform":"kalshi","title":"Will H.Higgs/J.Paul lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["h.higgs","j.paul","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-hhiggsjpaul-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-HINA","platform":"kalshi","title":"Will K.Hirata/K.Nakajima lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["k.hirata","k.nakajima","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-khirataknakajima-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-HIKU","platform":"kalshi","title":"Will G.Higgo/M.Kuchar lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["g.higgo","m.kuchar","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-ghiggomkuchar-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-HASV","platform":"kalshi","title":"Will A.Hadwin/A.Svensson lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["a.hadwin","a.svensson","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-ahadwinasvensson-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-HAST","platform":"kalshi","title":"Will J.Hahn/K.Stanley lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["j.hahn","k.stanley","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-jhahnkstanley-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.360Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-HARI","platform":"kalshi","title":"Will N.Hardy/D.Riley lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["n.hardy","d.riley","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-nhardydriley-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-GRNO","platform":"kalshi","title":"Will B.Griffin/A.Novak lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["b.griffin","a.novak","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-bgriffinanovak-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-GRKO","platform":"kalshi","title":"Will L.Griffin/B.Kohles lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["l.griffin","b.kohles","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-lgriffinbkohles-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-GOPE","platform":"kalshi","title":"Will W.Gordon/P.Peterson lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["w.gordon","p.peterson","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-wgordonppeterson-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-GHKA","platform":"kalshi","title":"Will D.Ghim/J.Kang lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["d.ghim","j.kang","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-dghimjkang-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-GEYE","platform":"kalshi","title":"Will R.Gerard/S.Yellamaraju lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["r.gerard","s.yellamaraju","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-rgerardsyellamaraju-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-GAHO","platform":"kalshi","title":"Will B.Garnett/L.Hodges lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["b.garnett","l.hodges","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-bgarnettlhodges-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-FIGR","platform":"kalshi","title":"Will T.Finau/M.Greyserman lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["t.finau","m.greyserman","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-tfinaumgreyserman-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-FIFI","platform":"kalshi","title":"Will A.Fitzpatrick/M.Fitzpatrick lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["a.fitzpatrick","m.fitzpatrick","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-afitzpatrickmfitzpatrick-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-EWJA","platform":"kalshi","title":"Will A.Ewart/C.Jarvis lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["a.ewart","c.jarvis","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-aewartcjarvis-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-ECTH","platform":"kalshi","title":"Will A.Eckroat/D.Thompson lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["a.eckroat","d.thompson","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-aeckroatdthompson-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-DUSC","platform":"kalshi","title":"Will T.Duncan/A.Schenk lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["t.duncan","a.schenk","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-tduncanaschenk-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-DUSA","platform":"kalshi","title":"Will N.Dunlap/G.Sargent lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["n.dunlap","g.sargent","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-ndunlapgsargent-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-DOWU","platform":"kalshi","title":"Will Z.Dou/D.Wu lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["z.dou","d.wu","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-zdoudwu-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-DAST","platform":"kalshi","title":"Will J.Dahmen/K.Streelman lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["j.dahmen","k.streelman","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-jdahmenkstreelman-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-DAOG","platform":"kalshi","title":"Will C.Davis/G.Ogilvy lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["c.davis","g.ogilvy","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-cdavisgogilvy-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-CRMA","platform":"kalshi","title":"Will T.Crowe/B.Martin lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["t.crowe","b.martin","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-tcrowebmartin-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-COPA","platform":"kalshi","title":"Will M.Couvra/M.Pavon lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["m.couvra","m.pavon","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-mcouvrampavon-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-COLE","platform":"kalshi","title":"Will E.Cole/H.Lebioda lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["e.cole","h.lebioda","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-ecolehlebioda-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-CODU","platform":"kalshi","title":"Will A.Cook/J.Dufner lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["a.cook","j.dufner","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-acookjdufner-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.361Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-CLMO","platform":"kalshi","title":"Will W.Clark/T.Moore lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["w.clark","t.moore","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-wclarktmoore-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.491Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-CHSI","platform":"kalshi","title":"Will C.Champ/B.Silverman lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["c.champ","b.silverman","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-cchampbsilverman-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.491Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-CHDU","platform":"kalshi","title":"Will D.Chatfield/A.Dumont De Chassart lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["d.chatfield","a.dumont","chassart","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-dchatfieldadumont-de-chassart-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.491Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-CATO","platform":"kalshi","title":"Will R.Campos/A.Tosti lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["r.campos","a.tosti","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-rcamposatosti-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.491Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-CAGO","platform":"kalshi","title":"Will F.Capan/N.Goodwin lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["f.capan","n.goodwin","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-fcapanngoodwin-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.491Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-BYRE","platform":"kalshi","title":"Will J.Byrd/C.Reavie lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["j.byrd","c.reavie","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-jbyrdcreavie-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.491Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-BRPA","platform":"kalshi","title":"Will D.Brown/J.Parry lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["d.brown","j.parry","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-dbrownjparry-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.491Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-BRKE","platform":"kalshi","title":"Will M.Brennan/J.Keefer lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["m.brennan","j.keefer","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-mbrennanjkeefer-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.491Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-BRHU","platform":"kalshi","title":"Will R.Brehm/M.Hubbard lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["r.brehm","m.hubbard","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-rbrehmmhubbard-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.491Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-BRCL","platform":"kalshi","title":"Will B.Brown/L.Clanton lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["b.brown","l.clanton","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-bbrownlclanton-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-BLVA","platform":"kalshi","title":"Will C.Blanchet/J.VanDerLaan lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["c.blanchet","j.vanderlaan","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-cblanchetjvanderlaan-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-BLFI","platform":"kalshi","title":"Will Z.Blair/P.Fishburn lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["z.blair","p.fishburn","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-zblairpfishburn-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-BEVA","platform":"kalshi","title":"Will C.Bezuidenhout/E.Van Rooyen lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["c.bezuidenhout","e.van","rooyen","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-cbezuidenhoutevan-rooyen-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR3LEAD-ZUCONO26-BAST","platform":"kalshi","title":"Will Z.Bauchou/S.Stevens lead at the end of Round 3 in the Zurich Classic of New Orleans?","description":"","keywords":["z.bauchou","s.stevens","lead","end","round","3","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar3lead/will-zbauchousstevens-lead-at-the-end-of-round-3-in-the-zurich-classic-of-new-orleans/kxpgar3lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXMLBHIT-26APR201810HOUCLE-HOUTTRAMMELL26-3","platform":"kalshi","title":"Taylor Trammell: 3+ hits?","description":"","keywords":["taylor","trammell","3","hits","3 hits"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/taylor-trammell-3-hits/kxmlbhit-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-THVI","platform":"kalshi","title":"Will M.Thorbjornsen/K.Vilips lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["m.thorbjornsen","k.vilips","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-mthorbjornsenkvilips-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-STWA","platform":"kalshi","title":"Will J.Stanger/D.Walker lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["j.stanger","d.walker","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-jstangerdwalker-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-SMSP","platform":"kalshi","title":"Will A.Smalley/H.Springer lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["a.smalley","h.springer","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-asmalleyhspringer-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-SIWH","platform":"kalshi","title":"Will G.Sigg/V.Whaley lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["g.sigg","v.whaley","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-gsiggvwhaley-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-ROVI","platform":"kalshi","title":"Will M.Rozo/C.Villegas lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["m.rozo","c.villegas","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-mrozocvillegas-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-REVE","platform":"kalshi","title":"Will K.Reitan/K.Ventura lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["k.reitan","k.ventura","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-kreitankventura-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-RATH","platform":"kalshi","title":"Will A.Rai/S.Theegala lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["a.rai","s.theegala","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-araistheegala-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-PUSM","platform":"kalshi","title":"Will A.Putnam/A.Smotherman lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["a.putnam","a.smotherman","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-aputnamasmotherman-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-POSC","platform":"kalshi","title":"Will S.Power/M.Schmid lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["s.power","m.schmid","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-spowermschmid-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-PHYO","platform":"kalshi","title":"Will C.Phillips/C.Young lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["c.phillips","c.young","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-cphillipscyoung-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-PEWA","platform":"kalshi","title":"Will M.Penge/M.Wallace lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["m.penge","m.wallace","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-mpengemwallace-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-NYSV","platform":"kalshi","title":"Will P.Nyholm/J.Svensson lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["p.nyholm","j.svensson","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-pnyholmjsvensson-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-NEOL","platform":"kalshi","title":"Will R.Neergaard-Petersen/J.Olesen lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["r.neergaard-petersen","j.olesen","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-rneergaard-petersenjolesen-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-MUSK","platform":"kalshi","title":"Will T.Mullinax/D.Skinns lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["t.mullinax","d.skinns","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-tmullinaxdskinns-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-MOPI","platform":"kalshi","title":"Will T.Montgomery/S.Piercy lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["t.montgomery","s.piercy","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-tmontgomeryspiercy-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-MISN","platform":"kalshi","title":"Will K.Mitchell/B.Snedeker lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["k.mitchell","b.snedeker","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-kmitchellbsnedeker-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-MEST","platform":"kalshi","title":"Will T.Merritt/R.Streb lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["t.merritt","r.streb","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-tmerrittrstreb-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-MCRO","platform":"kalshi","title":"Will M.McGreevy/K.Roy lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["m.mcgreevy","k.roy","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-mmcgreevykroy-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-MCME","platform":"kalshi","title":"Will M.McCarty/M.Meissner lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["m.mccarty","m.meissner","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-mmccartymmeissner-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-LORA","platform":"kalshi","title":"Will J.Lower/C.Ramey lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["j.lower","c.ramey","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-jlowercramey-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-LISM","platform":"kalshi","title":"Will H.Li/J.Smith lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["h.li","j.smith","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-hlijsmith-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-LINO","platform":"kalshi","title":"Will L.List/H.Norlander lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["l.list","h.norlander","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-llisthnorlander-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.492Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-LASH","platform":"kalshi","title":"Will C.Lamprecht/N.Shipley lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["c.lamprecht","n.shipley","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-clamprechtnshipley-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-KOLO","platform":"kalshi","title":"Will B.Koepka/S.Lowry lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["b.koepka","s.lowry","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-bkoepkaslowry-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-KNMA","platform":"kalshi","title":"Will R.Knox/P.Malnati lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["r.knox","p.malnati","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-rknoxpmalnati-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-KIYU","platform":"kalshi","title":"Will T.Kim/K.Yu lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["t.kim","k.yu","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-tkimkyu-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-KIPA","platform":"kalshi","title":"Will C.Kim/R.Palmer lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["c.kim","r.palmer","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-ckimrpalmer-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-KIKI","platform":"kalshi","title":"Will C.Kirk/P.Kizzire lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["c.kirk","p.kizzire","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-ckirkpkizzire-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-KAMO","platform":"kalshi","title":"Will T.Kanaya/W.Mouw lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["t.kanaya","w.mouw","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-tkanayawmouw-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-JASU","platform":"kalshi","title":"Will S.Jaeger/J.Suber lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["s.jaeger","j.suber","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-sjaegerjsuber-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-HUPE","platform":"kalshi","title":"Will M.Hughes/T.Pendrith lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["m.hughes","t.pendrith","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-mhughestpendrith-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-HOWA","platform":"kalshi","title":"Will C.Hoffman/N.Watney lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["c.hoffman","n.watney","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-choffmannwatney-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-HORY","platform":"kalshi","title":"Will B.Hossler/S.Ryder lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["b.hossler","s.ryder","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-bhosslersryder-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-HOLI","platform":"kalshi","title":"Will R.Hoey/D.Lipsky lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["r.hoey","d.lipsky","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-rhoeydlipsky-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-HOHO","platform":"kalshi","title":"Will T.Hoge/B.Horschel lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["t.hoge","b.horschel","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-thogebhorschel-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-HIPA","platform":"kalshi","title":"Will H.Higgs/J.Paul lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["h.higgs","j.paul","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-hhiggsjpaul-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-HINA","platform":"kalshi","title":"Will K.Hirata/K.Nakajima lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["k.hirata","k.nakajima","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-khirataknakajima-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-HIKU","platform":"kalshi","title":"Will G.Higgo/M.Kuchar lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["g.higgo","m.kuchar","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-ghiggomkuchar-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-HASV","platform":"kalshi","title":"Will A.Hadwin/A.Svensson lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["a.hadwin","a.svensson","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-ahadwinasvensson-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-HAST","platform":"kalshi","title":"Will J.Hahn/K.Stanley lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["j.hahn","k.stanley","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-jhahnkstanley-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-HARI","platform":"kalshi","title":"Will N.Hardy/D.Riley lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["n.hardy","d.riley","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-nhardydriley-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-GRNO","platform":"kalshi","title":"Will B.Griffin/A.Novak lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["b.griffin","a.novak","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-bgriffinanovak-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-GRKO","platform":"kalshi","title":"Will L.Griffin/B.Kohles lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["l.griffin","b.kohles","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-lgriffinbkohles-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-GOPE","platform":"kalshi","title":"Will W.Gordon/P.Peterson lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["w.gordon","p.peterson","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-wgordonppeterson-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-GHKA","platform":"kalshi","title":"Will D.Ghim/J.Kang lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["d.ghim","j.kang","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-dghimjkang-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-GEYE","platform":"kalshi","title":"Will R.Gerard/S.Yellamaraju lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["r.gerard","s.yellamaraju","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-rgerardsyellamaraju-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-GAHO","platform":"kalshi","title":"Will B.Garnett/L.Hodges lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["b.garnett","l.hodges","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-bgarnettlhodges-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-FIGR","platform":"kalshi","title":"Will T.Finau/M.Greyserman lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["t.finau","m.greyserman","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-tfinaumgreyserman-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-FIFI","platform":"kalshi","title":"Will A.Fitzpatrick/M.Fitzpatrick lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["a.fitzpatrick","m.fitzpatrick","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-afitzpatrickmfitzpatrick-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-EWJA","platform":"kalshi","title":"Will A.Ewart/C.Jarvis lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["a.ewart","c.jarvis","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-aewartcjarvis-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-ECTH","platform":"kalshi","title":"Will A.Eckroat/D.Thompson lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["a.eckroat","d.thompson","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-aeckroatdthompson-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-DUSC","platform":"kalshi","title":"Will T.Duncan/A.Schenk lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["t.duncan","a.schenk","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-tduncanaschenk-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.493Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-DUSA","platform":"kalshi","title":"Will N.Dunlap/G.Sargent lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["n.dunlap","g.sargent","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-ndunlapgsargent-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-DOWU","platform":"kalshi","title":"Will Z.Dou/D.Wu lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["z.dou","d.wu","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-zdoudwu-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-DAST","platform":"kalshi","title":"Will J.Dahmen/K.Streelman lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["j.dahmen","k.streelman","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-jdahmenkstreelman-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-DAOG","platform":"kalshi","title":"Will C.Davis/G.Ogilvy lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["c.davis","g.ogilvy","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-cdavisgogilvy-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-CRMA","platform":"kalshi","title":"Will T.Crowe/B.Martin lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["t.crowe","b.martin","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-tcrowebmartin-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-COPA","platform":"kalshi","title":"Will M.Couvra/M.Pavon lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["m.couvra","m.pavon","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-mcouvrampavon-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-COLE","platform":"kalshi","title":"Will E.Cole/H.Lebioda lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["e.cole","h.lebioda","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-ecolehlebioda-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-CODU","platform":"kalshi","title":"Will A.Cook/J.Dufner lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["a.cook","j.dufner","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-acookjdufner-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-CLMO","platform":"kalshi","title":"Will W.Clark/T.Moore lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["w.clark","t.moore","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-wclarktmoore-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-CHSI","platform":"kalshi","title":"Will C.Champ/B.Silverman lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["c.champ","b.silverman","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-cchampbsilverman-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-CHDU","platform":"kalshi","title":"Will D.Chatfield/A.Dumont De Chassart lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["d.chatfield","a.dumont","chassart","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-dchatfieldadumont-de-chassart-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-CATO","platform":"kalshi","title":"Will R.Campos/A.Tosti lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["r.campos","a.tosti","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-rcamposatosti-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-CAGO","platform":"kalshi","title":"Will F.Capan/N.Goodwin lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["f.capan","n.goodwin","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-fcapanngoodwin-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-BYRE","platform":"kalshi","title":"Will J.Byrd/C.Reavie lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["j.byrd","c.reavie","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-jbyrdcreavie-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-BRPA","platform":"kalshi","title":"Will D.Brown/J.Parry lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["d.brown","j.parry","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-dbrownjparry-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-BRKE","platform":"kalshi","title":"Will M.Brennan/J.Keefer lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["m.brennan","j.keefer","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-mbrennanjkeefer-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-BRHU","platform":"kalshi","title":"Will R.Brehm/M.Hubbard lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["r.brehm","m.hubbard","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-rbrehmmhubbard-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-BRCL","platform":"kalshi","title":"Will B.Brown/L.Clanton lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["b.brown","l.clanton","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-bbrownlclanton-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-BLVA","platform":"kalshi","title":"Will C.Blanchet/J.VanDerLaan lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["c.blanchet","j.vanderlaan","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-cblanchetjvanderlaan-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-BLFI","platform":"kalshi","title":"Will Z.Blair/P.Fishburn lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["z.blair","p.fishburn","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-zblairpfishburn-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-BEVA","platform":"kalshi","title":"Will C.Bezuidenhout/E.Van Rooyen lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["c.bezuidenhout","e.van","rooyen","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-cbezuidenhoutevan-rooyen-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR2LEAD-ZUCONO26-BAST","platform":"kalshi","title":"Will Z.Bauchou/S.Stevens lead at the end of Round 2 in the Zurich Classic of New Orleans?","description":"","keywords":["z.bauchou","s.stevens","lead","end","round","2","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.97,"noBid":0.03,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar2lead/will-zbauchousstevens-lead-at-the-end-of-round-2-in-the-zurich-classic-of-new-orleans/kxpgar2lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-THVI","platform":"kalshi","title":"Will M.Thorbjornsen/K.Vilips lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["m.thorbjornsen","k.vilips","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-mthorbjornsenkvilips-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-STWA","platform":"kalshi","title":"Will J.Stanger/D.Walker lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["j.stanger","d.walker","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-jstangerdwalker-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-SMSP","platform":"kalshi","title":"Will A.Smalley/H.Springer lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["a.smalley","h.springer","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-asmalleyhspringer-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-SIWH","platform":"kalshi","title":"Will G.Sigg/V.Whaley lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["g.sigg","v.whaley","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-gsiggvwhaley-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-ROVI","platform":"kalshi","title":"Will M.Rozo/C.Villegas lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["m.rozo","c.villegas","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-mrozocvillegas-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-REVE","platform":"kalshi","title":"Will K.Reitan/K.Ventura lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["k.reitan","k.ventura","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-kreitankventura-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-RATH","platform":"kalshi","title":"Will A.Rai/S.Theegala lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["a.rai","s.theegala","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-araistheegala-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-PUSM","platform":"kalshi","title":"Will A.Putnam/A.Smotherman lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["a.putnam","a.smotherman","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-aputnamasmotherman-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-POSC","platform":"kalshi","title":"Will S.Power/M.Schmid lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["s.power","m.schmid","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-spowermschmid-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-PHYO","platform":"kalshi","title":"Will C.Phillips/C.Young lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["c.phillips","c.young","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-cphillipscyoung-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-PEWA","platform":"kalshi","title":"Will M.Penge/M.Wallace lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["m.penge","m.wallace","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-mpengemwallace-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-NYSV","platform":"kalshi","title":"Will P.Nyholm/J.Svensson lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["p.nyholm","j.svensson","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-pnyholmjsvensson-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.494Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-NEOL","platform":"kalshi","title":"Will R.Neergaard-Petersen/J.Olesen lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["r.neergaard-petersen","j.olesen","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-rneergaard-petersenjolesen-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-MUSK","platform":"kalshi","title":"Will T.Mullinax/D.Skinns lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["t.mullinax","d.skinns","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-tmullinaxdskinns-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-MOPI","platform":"kalshi","title":"Will T.Montgomery/S.Piercy lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["t.montgomery","s.piercy","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-tmontgomeryspiercy-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-MISN","platform":"kalshi","title":"Will K.Mitchell/B.Snedeker lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["k.mitchell","b.snedeker","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-kmitchellbsnedeker-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-MEST","platform":"kalshi","title":"Will T.Merritt/R.Streb lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["t.merritt","r.streb","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-tmerrittrstreb-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-MCRO","platform":"kalshi","title":"Will M.McGreevy/K.Roy lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["m.mcgreevy","k.roy","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-mmcgreevykroy-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-MCME","platform":"kalshi","title":"Will M.McCarty/M.Meissner lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["m.mccarty","m.meissner","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-mmccartymmeissner-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-LORA","platform":"kalshi","title":"Will J.Lower/C.Ramey lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["j.lower","c.ramey","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-jlowercramey-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-LISM","platform":"kalshi","title":"Will H.Li/J.Smith lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["h.li","j.smith","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-hlijsmith-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-LINO","platform":"kalshi","title":"Will L.List/H.Norlander lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["l.list","h.norlander","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-llisthnorlander-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-LASH","platform":"kalshi","title":"Will C.Lamprecht/N.Shipley lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["c.lamprecht","n.shipley","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-clamprechtnshipley-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-KOLO","platform":"kalshi","title":"Will B.Koepka/S.Lowry lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["b.koepka","s.lowry","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-bkoepkaslowry-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-KNMA","platform":"kalshi","title":"Will R.Knox/P.Malnati lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["r.knox","p.malnati","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-rknoxpmalnati-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-KIYU","platform":"kalshi","title":"Will T.Kim/K.Yu lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["t.kim","k.yu","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-tkimkyu-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-KIPA","platform":"kalshi","title":"Will C.Kim/R.Palmer lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["c.kim","r.palmer","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-ckimrpalmer-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-KIKI","platform":"kalshi","title":"Will C.Kirk/P.Kizzire lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["c.kirk","p.kizzire","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-ckirkpkizzire-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-KAMO","platform":"kalshi","title":"Will T.Kanaya/W.Mouw lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["t.kanaya","w.mouw","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-tkanayawmouw-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-JASU","platform":"kalshi","title":"Will S.Jaeger/J.Suber lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["s.jaeger","j.suber","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-sjaegerjsuber-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-HUPE","platform":"kalshi","title":"Will M.Hughes/T.Pendrith lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["m.hughes","t.pendrith","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-mhughestpendrith-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-HOWA","platform":"kalshi","title":"Will C.Hoffman/N.Watney lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["c.hoffman","n.watney","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-choffmannwatney-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-HORY","platform":"kalshi","title":"Will B.Hossler/S.Ryder lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["b.hossler","s.ryder","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-bhosslersryder-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-HOLI","platform":"kalshi","title":"Will R.Hoey/D.Lipsky lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["r.hoey","d.lipsky","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-rhoeydlipsky-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-HOHO","platform":"kalshi","title":"Will T.Hoge/B.Horschel lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["t.hoge","b.horschel","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-thogebhorschel-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-HIPA","platform":"kalshi","title":"Will H.Higgs/J.Paul lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["h.higgs","j.paul","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-hhiggsjpaul-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-HINA","platform":"kalshi","title":"Will K.Hirata/K.Nakajima lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["k.hirata","k.nakajima","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-khirataknakajima-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-HIKU","platform":"kalshi","title":"Will G.Higgo/M.Kuchar lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["g.higgo","m.kuchar","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-ghiggomkuchar-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-HASV","platform":"kalshi","title":"Will A.Hadwin/A.Svensson lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["a.hadwin","a.svensson","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-ahadwinasvensson-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-HAST","platform":"kalshi","title":"Will J.Hahn/K.Stanley lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["j.hahn","k.stanley","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-jhahnkstanley-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-HARI","platform":"kalshi","title":"Will N.Hardy/D.Riley lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["n.hardy","d.riley","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-nhardydriley-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-GRNO","platform":"kalshi","title":"Will B.Griffin/A.Novak lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["b.griffin","a.novak","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-bgriffinanovak-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-GRKO","platform":"kalshi","title":"Will L.Griffin/B.Kohles lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["l.griffin","b.kohles","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-lgriffinbkohles-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-GOPE","platform":"kalshi","title":"Will W.Gordon/P.Peterson lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["w.gordon","p.peterson","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-wgordonppeterson-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-GHKA","platform":"kalshi","title":"Will D.Ghim/J.Kang lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["d.ghim","j.kang","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-dghimjkang-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-GEYE","platform":"kalshi","title":"Will R.Gerard/S.Yellamaraju lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["r.gerard","s.yellamaraju","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-rgerardsyellamaraju-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-GAHO","platform":"kalshi","title":"Will B.Garnett/L.Hodges lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["b.garnett","l.hodges","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-bgarnettlhodges-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-FIGR","platform":"kalshi","title":"Will T.Finau/M.Greyserman lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["t.finau","m.greyserman","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-tfinaumgreyserman-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.495Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-FIFI","platform":"kalshi","title":"Will A.Fitzpatrick/M.Fitzpatrick lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["a.fitzpatrick","m.fitzpatrick","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-afitzpatrickmfitzpatrick-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-EWJA","platform":"kalshi","title":"Will A.Ewart/C.Jarvis lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["a.ewart","c.jarvis","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-aewartcjarvis-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-ECTH","platform":"kalshi","title":"Will A.Eckroat/D.Thompson lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["a.eckroat","d.thompson","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-aeckroatdthompson-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-DUSC","platform":"kalshi","title":"Will T.Duncan/A.Schenk lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["t.duncan","a.schenk","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-tduncanaschenk-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-DUSA","platform":"kalshi","title":"Will N.Dunlap/G.Sargent lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["n.dunlap","g.sargent","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-ndunlapgsargent-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-DOWU","platform":"kalshi","title":"Will Z.Dou/D.Wu lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["z.dou","d.wu","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-zdoudwu-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-DAST","platform":"kalshi","title":"Will J.Dahmen/K.Streelman lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["j.dahmen","k.streelman","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-jdahmenkstreelman-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-DAOG","platform":"kalshi","title":"Will C.Davis/G.Ogilvy lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["c.davis","g.ogilvy","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-cdavisgogilvy-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-CRMA","platform":"kalshi","title":"Will T.Crowe/B.Martin lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["t.crowe","b.martin","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-tcrowebmartin-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-COPA","platform":"kalshi","title":"Will M.Couvra/M.Pavon lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["m.couvra","m.pavon","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-mcouvrampavon-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-COLE","platform":"kalshi","title":"Will E.Cole/H.Lebioda lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["e.cole","h.lebioda","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-ecolehlebioda-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-CODU","platform":"kalshi","title":"Will A.Cook/J.Dufner lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["a.cook","j.dufner","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-acookjdufner-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-CLMO","platform":"kalshi","title":"Will W.Clark/T.Moore lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["w.clark","t.moore","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-wclarktmoore-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-CHSI","platform":"kalshi","title":"Will C.Champ/B.Silverman lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["c.champ","b.silverman","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-cchampbsilverman-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-CHDU","platform":"kalshi","title":"Will D.Chatfield/A.Dumont De Chassart lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["d.chatfield","a.dumont","chassart","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-dchatfieldadumont-de-chassart-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-CATO","platform":"kalshi","title":"Will R.Campos/A.Tosti lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["r.campos","a.tosti","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-rcamposatosti-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-CAGO","platform":"kalshi","title":"Will F.Capan/N.Goodwin lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["f.capan","n.goodwin","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-fcapanngoodwin-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-BYRE","platform":"kalshi","title":"Will J.Byrd/C.Reavie lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["j.byrd","c.reavie","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-jbyrdcreavie-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-BRPA","platform":"kalshi","title":"Will D.Brown/J.Parry lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["d.brown","j.parry","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-dbrownjparry-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-BRKE","platform":"kalshi","title":"Will M.Brennan/J.Keefer lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["m.brennan","j.keefer","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-mbrennanjkeefer-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-BRHU","platform":"kalshi","title":"Will R.Brehm/M.Hubbard lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["r.brehm","m.hubbard","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-rbrehmmhubbard-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-BRCL","platform":"kalshi","title":"Will B.Brown/L.Clanton lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["b.brown","l.clanton","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-bbrownlclanton-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-BLVA","platform":"kalshi","title":"Will C.Blanchet/J.VanDerLaan lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["c.blanchet","j.vanderlaan","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-cblanchetjvanderlaan-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-BLFI","platform":"kalshi","title":"Will Z.Blair/P.Fishburn lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["z.blair","p.fishburn","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-zblairpfishburn-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-BEVA","platform":"kalshi","title":"Will C.Bezuidenhout/E.Van Rooyen lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["c.bezuidenhout","e.van","rooyen","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-cbezuidenhoutevan-rooyen-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1LEAD-ZUCONO26-BAST","platform":"kalshi","title":"Will Z.Bauchou/S.Stevens lead at the end of Round 1 in the Zurich Classic of New Orleans?","description":"","keywords":["z.bauchou","s.stevens","lead","end","round","1","zurich","classic","new","orleans"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.1,"noBid":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1lead/will-zbauchousstevens-lead-at-the-end-of-round-1-in-the-zurich-classic-of-new-orleans/kxpgar1lead-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-10T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-THVI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Thorbjornsen/K.Vilips finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","m.thorbjornsen","k.vilips","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-mthorbjornsenkvilips-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-STWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Stanger/D.Walker finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","j.stanger","d.walker","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-jstangerdwalker-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-SMSP","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Smalley/H.Springer finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","a.smalley","h.springer","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-asmalleyhspringer-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-SIWH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will G.Sigg/V.Whaley finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","g.sigg","v.whaley","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-gsiggvwhaley-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-ROVI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Rozo/C.Villegas finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","m.rozo","c.villegas","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-mrozocvillegas-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-REVE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Reitan/K.Ventura finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","k.reitan","k.ventura","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-kreitankventura-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-RATH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Rai/S.Theegala finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","a.rai","s.theegala","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-araistheegala-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.496Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-PUSM","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Putnam/A.Smotherman finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","a.putnam","a.smotherman","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-aputnamasmotherman-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-POSC","platform":"kalshi","title":"Zurich Classic of New Orleans: Will S.Power/M.Schmid finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","s.power","m.schmid","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-spowermschmid-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-PHYO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Phillips/C.Young finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.phillips","c.young","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-cphillipscyoung-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-PEWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Penge/M.Wallace finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","m.penge","m.wallace","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-mpengemwallace-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-NYSV","platform":"kalshi","title":"Zurich Classic of New Orleans: Will P.Nyholm/J.Svensson finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","p.nyholm","j.svensson","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-pnyholmjsvensson-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-NEOL","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Neergaard-Petersen/J.Olesen finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","r.neergaard-petersen","j.olesen","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-rneergaard-petersenjolesen-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-MUSK","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Mullinax/D.Skinns finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.mullinax","d.skinns","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-tmullinaxdskinns-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-MOPI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Montgomery/S.Piercy finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.montgomery","s.piercy","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-tmontgomeryspiercy-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-MISN","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Mitchell/B.Snedeker finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","k.mitchell","b.snedeker","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-kmitchellbsnedeker-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-MEST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Merritt/R.Streb finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.merritt","r.streb","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-tmerrittrstreb-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-MCRO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.McGreevy/K.Roy finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","m.mcgreevy","k.roy","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-mmcgreevykroy-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-MCME","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.McCarty/M.Meissner finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","m.mccarty","m.meissner","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-mmccartymmeissner-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-LORA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Lower/C.Ramey finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","j.lower","c.ramey","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-jlowercramey-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-LISM","platform":"kalshi","title":"Zurich Classic of New Orleans: Will H.Li/J.Smith finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","h.li","j.smith","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-hlijsmith-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-LINO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will L.List/H.Norlander finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","l.list","h.norlander","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-llisthnorlander-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-LASH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Lamprecht/N.Shipley finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.lamprecht","n.shipley","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-clamprechtnshipley-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-KOLO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Koepka/S.Lowry finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","b.koepka","s.lowry","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-bkoepkaslowry-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-KNMA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Knox/P.Malnati finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","r.knox","p.malnati","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-rknoxpmalnati-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-KIYU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Kim/K.Yu finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.kim","k.yu","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-tkimkyu-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-KIPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Kim/R.Palmer finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.kim","r.palmer","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-ckimrpalmer-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-KIKI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Kirk/P.Kizzire finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.kirk","p.kizzire","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-ckirkpkizzire-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-KAMO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Kanaya/W.Mouw finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.kanaya","w.mouw","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-tkanayawmouw-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-JASU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will S.Jaeger/J.Suber finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","s.jaeger","j.suber","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-sjaegerjsuber-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-HUPE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Hughes/T.Pendrith finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","m.hughes","t.pendrith","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-mhughestpendrith-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-HOWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Hoffman/N.Watney finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.hoffman","n.watney","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-choffmannwatney-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-HORY","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Hossler/S.Ryder finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","b.hossler","s.ryder","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-bhosslersryder-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-HOLI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Hoey/D.Lipsky finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","r.hoey","d.lipsky","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-rhoeydlipsky-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-HOHO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Hoge/B.Horschel finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.hoge","b.horschel","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-thogebhorschel-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-HIPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will H.Higgs/J.Paul finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","h.higgs","j.paul","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-hhiggsjpaul-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-HINA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Hirata/K.Nakajima finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","k.hirata","k.nakajima","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-khirataknakajima-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.497Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-HIKU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will G.Higgo/M.Kuchar finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","g.higgo","m.kuchar","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-ghiggomkuchar-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.690Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-HASV","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Hadwin/A.Svensson finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","a.hadwin","a.svensson","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-ahadwinasvensson-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.690Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-HAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Hahn/K.Stanley finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","j.hahn","k.stanley","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-jhahnkstanley-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.690Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-HARI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will N.Hardy/D.Riley finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","n.hardy","d.riley","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-nhardydriley-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.690Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-GRNO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Griffin/A.Novak finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","b.griffin","a.novak","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-bgriffinanovak-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.690Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-GRKO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will L.Griffin/B.Kohles finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","l.griffin","b.kohles","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-lgriffinbkohles-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.690Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-GOPE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will W.Gordon/P.Peterson finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","w.gordon","p.peterson","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-wgordonppeterson-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.690Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-GHKA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Ghim/J.Kang finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","d.ghim","j.kang","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-dghimjkang-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.690Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-GEYE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Gerard/S.Yellamaraju finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","r.gerard","s.yellamaraju","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-rgerardsyellamaraju-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.690Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-GAHO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Garnett/L.Hodges finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","b.garnett","l.hodges","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.01,"yesAsk":0.99,"noBid":0.01,"noAsk":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-bgarnettlhodges-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.690Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-FIGR","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Finau/M.Greyserman finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.finau","m.greyserman","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-tfinaumgreyserman-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.690Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-FIFI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Fitzpatrick/M.Fitzpatrick finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","a.fitzpatrick","m.fitzpatrick","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-afitzpatrickmfitzpatrick-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.690Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-EWJA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Ewart/C.Jarvis finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","a.ewart","c.jarvis","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-aewartcjarvis-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.690Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-ECTH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Eckroat/D.Thompson finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","a.eckroat","d.thompson","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-aeckroatdthompson-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.690Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-DUSC","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Duncan/A.Schenk finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.duncan","a.schenk","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-tduncanaschenk-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.690Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-DUSA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will N.Dunlap/G.Sargent finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","n.dunlap","g.sargent","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-ndunlapgsargent-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.690Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-DOWU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will Z.Dou/D.Wu finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","z.dou","d.wu","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-zdoudwu-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-DAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Dahmen/K.Streelman finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","j.dahmen","k.streelman","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-jdahmenkstreelman-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-DAOG","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Davis/G.Ogilvy finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.davis","g.ogilvy","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-cdavisgogilvy-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-CRMA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Crowe/B.Martin finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.crowe","b.martin","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-tcrowebmartin-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-COPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Couvra/M.Pavon finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","m.couvra","m.pavon","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-mcouvrampavon-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-COLE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will E.Cole/H.Lebioda finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","e.cole","h.lebioda","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-ecolehlebioda-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-CODU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Cook/J.Dufner finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","a.cook","j.dufner","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-acookjdufner-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-CLMO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will W.Clark/T.Moore finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","w.clark","t.moore","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-wclarktmoore-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-CHSI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Champ/B.Silverman finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.champ","b.silverman","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-cchampbsilverman-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-CHDU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Chatfield/A.Dumont De Chassart finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","d.chatfield","a.dumont","chassart","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-dchatfieldadumont-de-chassart-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-CATO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Campos/A.Tosti finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","r.campos","a.tosti","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-rcamposatosti-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-CAGO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will F.Capan/N.Goodwin finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","f.capan","n.goodwin","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-fcapanngoodwin-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-BYRE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Byrd/C.Reavie finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","j.byrd","c.reavie","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-jbyrdcreavie-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-BRPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Brown/J.Parry finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","d.brown","j.parry","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-dbrownjparry-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-BRKE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Brennan/J.Keefer finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","m.brennan","j.keefer","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-mbrennanjkeefer-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-BRHU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Brehm/M.Hubbard finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","r.brehm","m.hubbard","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-rbrehmmhubbard-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-BRCL","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Brown/L.Clanton finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","b.brown","l.clanton","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-bbrownlclanton-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-BLVA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Blanchet/J.VanDerLaan finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.blanchet","j.vanderlaan","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-cblanchetjvanderlaan-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-BLFI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will Z.Blair/P.Fishburn finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","z.blair","p.fishburn","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-zblairpfishburn-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-BEVA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Bezuidenhout/E.Van Rooyen finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.bezuidenhout","e.van","rooyen","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-cbezuidenhoutevan-rooyen-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP10-ZUCONO26-BAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will Z.Bauchou/S.Stevens finish top 10 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","z.bauchou","s.stevens","finish","top","10","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top10/zurich-classic-of-new-orleans-will-zbauchousstevens-finish-top-10-in-round-1/kxpgar1top10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXMLBHIT-26APR201840CINTB-CINRHINDS57-3","platform":"kalshi","title":"Rece Hinds: 3+ hits?","description":"","keywords":["rece","hinds","3","hits","3 hits"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/rece-hinds-3-hits/kxmlbhit-26apr201840cintb","category":"sports","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-04-23T22:40:00Z"},{"id":"kalshi-KXMLBHRR-26APR201845ATLWSH-WSHJTENA8-5","platform":"kalshi","title":"José Tena: 5+ hits + runs + RBIs?","description":"","keywords":["jos","tena","5","hits","runs","rbis","5 hits","hits runs"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhrr/jos-tena-5-hits-runs-rbis/kxmlbhrr-26apr201845atlwsh","category":"sports","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-04-23T22:45:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-THVI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Thorbjornsen/K.Vilips finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","m.thorbjornsen","k.vilips","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-mthorbjornsenkvilips-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-STWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Stanger/D.Walker finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","j.stanger","d.walker","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-jstangerdwalker-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.691Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-SMSP","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Smalley/H.Springer finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","a.smalley","h.springer","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-asmalleyhspringer-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-SIWH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will G.Sigg/V.Whaley finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","g.sigg","v.whaley","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-gsiggvwhaley-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-ROVI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Rozo/C.Villegas finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","m.rozo","c.villegas","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-mrozocvillegas-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-REVE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Reitan/K.Ventura finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","k.reitan","k.ventura","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-kreitankventura-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-RATH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Rai/S.Theegala finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","a.rai","s.theegala","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-araistheegala-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-PUSM","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Putnam/A.Smotherman finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","a.putnam","a.smotherman","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-aputnamasmotherman-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-POSC","platform":"kalshi","title":"Zurich Classic of New Orleans: Will S.Power/M.Schmid finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","s.power","m.schmid","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-spowermschmid-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-PHYO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Phillips/C.Young finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.phillips","c.young","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-cphillipscyoung-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-PEWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Penge/M.Wallace finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","m.penge","m.wallace","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-mpengemwallace-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-NYSV","platform":"kalshi","title":"Zurich Classic of New Orleans: Will P.Nyholm/J.Svensson finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","p.nyholm","j.svensson","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-pnyholmjsvensson-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-NEOL","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Neergaard-Petersen/J.Olesen finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","r.neergaard-petersen","j.olesen","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-rneergaard-petersenjolesen-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-MUSK","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Mullinax/D.Skinns finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.mullinax","d.skinns","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-tmullinaxdskinns-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-MOPI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Montgomery/S.Piercy finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.montgomery","s.piercy","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-tmontgomeryspiercy-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-MISN","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Mitchell/B.Snedeker finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","k.mitchell","b.snedeker","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-kmitchellbsnedeker-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-MEST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Merritt/R.Streb finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.merritt","r.streb","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-tmerrittrstreb-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-MCRO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.McGreevy/K.Roy finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","m.mcgreevy","k.roy","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-mmcgreevykroy-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-MCME","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.McCarty/M.Meissner finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","m.mccarty","m.meissner","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-mmccartymmeissner-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-LORA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Lower/C.Ramey finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","j.lower","c.ramey","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-jlowercramey-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-LISM","platform":"kalshi","title":"Zurich Classic of New Orleans: Will H.Li/J.Smith finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","h.li","j.smith","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-hlijsmith-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-LINO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will L.List/H.Norlander finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","l.list","h.norlander","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-llisthnorlander-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-LASH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Lamprecht/N.Shipley finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.lamprecht","n.shipley","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-clamprechtnshipley-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-KOLO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Koepka/S.Lowry finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","b.koepka","s.lowry","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-bkoepkaslowry-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-KNMA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Knox/P.Malnati finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","r.knox","p.malnati","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-rknoxpmalnati-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-KIYU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Kim/K.Yu finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.kim","k.yu","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-tkimkyu-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-KIPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Kim/R.Palmer finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.kim","r.palmer","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-ckimrpalmer-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-KIKI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Kirk/P.Kizzire finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.kirk","p.kizzire","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-ckirkpkizzire-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-KAMO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Kanaya/W.Mouw finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.kanaya","w.mouw","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-tkanayawmouw-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-JASU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will S.Jaeger/J.Suber finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","s.jaeger","j.suber","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-sjaegerjsuber-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-HUPE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Hughes/T.Pendrith finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","m.hughes","t.pendrith","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-mhughestpendrith-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-HOWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Hoffman/N.Watney finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.hoffman","n.watney","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-choffmannwatney-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-HORY","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Hossler/S.Ryder finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","b.hossler","s.ryder","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-bhosslersryder-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-HOLI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Hoey/D.Lipsky finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","r.hoey","d.lipsky","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-rhoeydlipsky-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.692Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-HOHO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Hoge/B.Horschel finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.hoge","b.horschel","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-thogebhorschel-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-HIPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will H.Higgs/J.Paul finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","h.higgs","j.paul","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-hhiggsjpaul-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-HINA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Hirata/K.Nakajima finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","k.hirata","k.nakajima","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-khirataknakajima-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-HIKU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will G.Higgo/M.Kuchar finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","g.higgo","m.kuchar","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-ghiggomkuchar-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-HASV","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Hadwin/A.Svensson finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","a.hadwin","a.svensson","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-ahadwinasvensson-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-HAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Hahn/K.Stanley finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","j.hahn","k.stanley","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-jhahnkstanley-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-HARI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will N.Hardy/D.Riley finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","n.hardy","d.riley","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-nhardydriley-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-GRNO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Griffin/A.Novak finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","b.griffin","a.novak","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-bgriffinanovak-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-GRKO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will L.Griffin/B.Kohles finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","l.griffin","b.kohles","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-lgriffinbkohles-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-GOPE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will W.Gordon/P.Peterson finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","w.gordon","p.peterson","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-wgordonppeterson-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-GHKA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Ghim/J.Kang finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","d.ghim","j.kang","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-dghimjkang-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-GEYE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Gerard/S.Yellamaraju finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","r.gerard","s.yellamaraju","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-rgerardsyellamaraju-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-GAHO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Garnett/L.Hodges finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","b.garnett","l.hodges","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-bgarnettlhodges-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-FIGR","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Finau/M.Greyserman finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.finau","m.greyserman","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-tfinaumgreyserman-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-FIFI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Fitzpatrick/M.Fitzpatrick finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","a.fitzpatrick","m.fitzpatrick","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-afitzpatrickmfitzpatrick-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-EWJA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Ewart/C.Jarvis finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","a.ewart","c.jarvis","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-aewartcjarvis-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-ECTH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Eckroat/D.Thompson finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","a.eckroat","d.thompson","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-aeckroatdthompson-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-DUSC","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Duncan/A.Schenk finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.duncan","a.schenk","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-tduncanaschenk-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-DUSA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will N.Dunlap/G.Sargent finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","n.dunlap","g.sargent","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-ndunlapgsargent-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-DOWU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will Z.Dou/D.Wu finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","z.dou","d.wu","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-zdoudwu-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-DAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Dahmen/K.Streelman finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","j.dahmen","k.streelman","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-jdahmenkstreelman-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-DAOG","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Davis/G.Ogilvy finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.davis","g.ogilvy","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-cdavisgogilvy-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-CRMA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Crowe/B.Martin finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","t.crowe","b.martin","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-tcrowebmartin-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-COPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Couvra/M.Pavon finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","m.couvra","m.pavon","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-mcouvrampavon-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-COLE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will E.Cole/H.Lebioda finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","e.cole","h.lebioda","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-ecolehlebioda-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-CODU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Cook/J.Dufner finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","a.cook","j.dufner","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-acookjdufner-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-CLMO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will W.Clark/T.Moore finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","w.clark","t.moore","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-wclarktmoore-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-CHSI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Champ/B.Silverman finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.champ","b.silverman","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-cchampbsilverman-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-CHDU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Chatfield/A.Dumont De Chassart finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","d.chatfield","a.dumont","chassart","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-dchatfieldadumont-de-chassart-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-CATO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Campos/A.Tosti finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","r.campos","a.tosti","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-rcamposatosti-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-CAGO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will F.Capan/N.Goodwin finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","f.capan","n.goodwin","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-fcapanngoodwin-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-BYRE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Byrd/C.Reavie finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","j.byrd","c.reavie","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-jbyrdcreavie-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-BRPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Brown/J.Parry finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","d.brown","j.parry","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-dbrownjparry-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-BRKE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Brennan/J.Keefer finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","m.brennan","j.keefer","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-mbrennanjkeefer-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-BRHU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Brehm/M.Hubbard finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","r.brehm","m.hubbard","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-rbrehmmhubbard-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-BRCL","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Brown/L.Clanton finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","b.brown","l.clanton","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-bbrownlclanton-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.693Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-BLVA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Blanchet/J.VanDerLaan finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.blanchet","j.vanderlaan","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-cblanchetjvanderlaan-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-BLFI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will Z.Blair/P.Fishburn finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","z.blair","p.fishburn","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-zblairpfishburn-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-BEVA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Bezuidenhout/E.Van Rooyen finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","c.bezuidenhout","e.van","rooyen","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-cbezuidenhoutevan-rooyen-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAR1TOP5-ZUCONO26-BAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will Z.Bauchou/S.Stevens finish top 5 in Round 1?","description":"","keywords":["zurich","classic","new","orleans","z.bauchou","s.stevens","finish","top","5","round","1"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.99,"noBid":0.01,"volume24h":0,"url":"https://kalshi.com/markets/kxpgar1top5/zurich-classic-of-new-orleans-will-zbauchousstevens-finish-top-5-in-round-1/kxpgar1top5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-THVI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Thorbjornsen/K.Vilips make the cut?","description":"","keywords":["zurich","classic","new","orleans","m.thorbjornsen","k.vilips","make","cut","the cut"],"yesPrice":0.66,"noPrice":0.34,"yesBid":0.46,"yesAsk":0.86,"noBid":0.14,"noAsk":0.54,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-mthorbjornsenkvilips-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-STWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Stanger/D.Walker make the cut?","description":"","keywords":["zurich","classic","new","orleans","j.stanger","d.walker","make","cut","the cut"],"yesPrice":0.43,"noPrice":0.57,"yesBid":0.23,"yesAsk":0.63,"noBid":0.37,"noAsk":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-jstangerdwalker-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-SMSP","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Smalley/H.Springer make the cut?","description":"","keywords":["zurich","classic","new","orleans","a.smalley","h.springer","make","cut","the cut"],"yesPrice":0.59,"noPrice":0.41,"yesBid":0.39,"yesAsk":0.79,"noBid":0.21,"noAsk":0.61,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-asmalleyhspringer-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-SIWH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will G.Sigg/V.Whaley make the cut?","description":"","keywords":["zurich","classic","new","orleans","g.sigg","v.whaley","make","cut","the cut"],"yesPrice":0.49,"noPrice":0.51,"yesBid":0.29,"yesAsk":0.69,"noBid":0.31,"noAsk":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-gsiggvwhaley-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-ROVI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Rozo/C.Villegas make the cut?","description":"","keywords":["zurich","classic","new","orleans","m.rozo","c.villegas","make","cut","the cut"],"yesPrice":0.32,"noPrice":0.68,"yesBid":0.12,"yesAsk":0.52,"noBid":0.48,"noAsk":0.88,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-mrozocvillegas-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-REVE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Reitan/K.Ventura make the cut?","description":"","keywords":["zurich","classic","new","orleans","k.reitan","k.ventura","make","cut","the cut"],"yesPrice":0.62,"noPrice":0.38,"yesBid":0.42,"yesAsk":0.82,"noBid":0.18,"noAsk":0.58,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-kreitankventura-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-RATH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Rai/S.Theegala make the cut?","description":"","keywords":["zurich","classic","new","orleans","a.rai","s.theegala","make","cut","the cut"],"yesPrice":0.67,"noPrice":0.33,"yesBid":0.47,"yesAsk":0.87,"noBid":0.13,"noAsk":0.53,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-araistheegala-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-PUSM","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Putnam/A.Smotherman make the cut?","description":"","keywords":["zurich","classic","new","orleans","a.putnam","a.smotherman","make","cut","the cut"],"yesPrice":0.57,"noPrice":0.43,"yesBid":0.37,"yesAsk":0.77,"noBid":0.23,"noAsk":0.63,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-aputnamasmotherman-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-POSC","platform":"kalshi","title":"Zurich Classic of New Orleans: Will S.Power/M.Schmid make the cut?","description":"","keywords":["zurich","classic","new","orleans","s.power","m.schmid","make","cut","the cut"],"yesPrice":0.56,"noPrice":0.44,"yesBid":0.36,"yesAsk":0.76,"noBid":0.24,"noAsk":0.64,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-spowermschmid-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-PHYO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Phillips/C.Young make the cut?","description":"","keywords":["zurich","classic","new","orleans","c.phillips","c.young","make","cut","the cut"],"yesPrice":0.46,"noPrice":0.54,"yesBid":0.26,"yesAsk":0.66,"noBid":0.34,"noAsk":0.74,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-cphillipscyoung-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-PEWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Penge/M.Wallace make the cut?","description":"","keywords":["zurich","classic","new","orleans","m.penge","m.wallace","make","cut","the cut"],"yesPrice":0.66,"noPrice":0.34,"yesBid":0.46,"yesAsk":0.86,"noBid":0.14,"noAsk":0.54,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-mpengemwallace-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-NYSV","platform":"kalshi","title":"Zurich Classic of New Orleans: Will P.Nyholm/J.Svensson make the cut?","description":"","keywords":["zurich","classic","new","orleans","p.nyholm","j.svensson","make","cut","the cut"],"yesPrice":0.53,"noPrice":0.47,"yesBid":0.33,"yesAsk":0.73,"noBid":0.27,"noAsk":0.67,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-pnyholmjsvensson-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-NEOL","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Neergaard-Petersen/J.Olesen make the cut?","description":"","keywords":["zurich","classic","new","orleans","r.neergaard-petersen","j.olesen","make","cut","the cut"],"yesPrice":0.53,"noPrice":0.47,"yesBid":0.33,"yesAsk":0.73,"noBid":0.27,"noAsk":0.67,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-rneergaard-petersenjolesen-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-MUSK","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Mullinax/D.Skinns make the cut?","description":"","keywords":["zurich","classic","new","orleans","t.mullinax","d.skinns","make","cut","the cut"],"yesPrice":0.45,"noPrice":0.55,"yesBid":0.25,"yesAsk":0.65,"noBid":0.35,"noAsk":0.75,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-tmullinaxdskinns-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-MOPI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Montgomery/S.Piercy make the cut?","description":"","keywords":["zurich","classic","new","orleans","t.montgomery","s.piercy","make","cut","the cut"],"yesPrice":0.33,"noPrice":0.67,"yesBid":0.13,"yesAsk":0.53,"noBid":0.47,"noAsk":0.87,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-tmontgomeryspiercy-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-MISN","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Mitchell/B.Snedeker make the cut?","description":"","keywords":["zurich","classic","new","orleans","k.mitchell","b.snedeker","make","cut","the cut"],"yesPrice":0.54,"noPrice":0.46,"yesBid":0.34,"yesAsk":0.74,"noBid":0.26,"noAsk":0.66,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-kmitchellbsnedeker-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-MEST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Merritt/R.Streb make the cut?","description":"","keywords":["zurich","classic","new","orleans","t.merritt","r.streb","make","cut","the cut"],"yesPrice":0.29,"noPrice":0.71,"yesBid":0.09,"yesAsk":0.49,"noBid":0.51,"noAsk":0.91,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-tmerrittrstreb-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-MCRO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.McGreevy/K.Roy make the cut?","description":"","keywords":["zurich","classic","new","orleans","m.mcgreevy","k.roy","make","cut","the cut"],"yesPrice":0.59,"noPrice":0.41,"yesBid":0.39,"yesAsk":0.79,"noBid":0.21,"noAsk":0.61,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-mmcgreevykroy-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-MCME","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.McCarty/M.Meissner make the cut?","description":"","keywords":["zurich","classic","new","orleans","m.mccarty","m.meissner","make","cut","the cut"],"yesPrice":0.64,"noPrice":0.36,"yesBid":0.44,"yesAsk":0.84,"noBid":0.16,"noAsk":0.56,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-mmccartymmeissner-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-LORA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Lower/C.Ramey make the cut?","description":"","keywords":["zurich","classic","new","orleans","j.lower","c.ramey","make","cut","the cut"],"yesPrice":0.48,"noPrice":0.52,"yesBid":0.28,"yesAsk":0.68,"noBid":0.32,"noAsk":0.72,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-jlowercramey-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-LISM","platform":"kalshi","title":"Zurich Classic of New Orleans: Will H.Li/J.Smith make the cut?","description":"","keywords":["zurich","classic","new","orleans","h.li","j.smith","make","cut","the cut"],"yesPrice":0.67,"noPrice":0.33,"yesBid":0.47,"yesAsk":0.87,"noBid":0.13,"noAsk":0.53,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-hlijsmith-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-LINO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will L.List/H.Norlander make the cut?","description":"","keywords":["zurich","classic","new","orleans","l.list","h.norlander","make","cut","the cut"],"yesPrice":0.38,"noPrice":0.62,"yesBid":0.18,"yesAsk":0.58,"noBid":0.42,"noAsk":0.82,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-llisthnorlander-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-LASH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Lamprecht/N.Shipley make the cut?","description":"","keywords":["zurich","classic","new","orleans","c.lamprecht","n.shipley","make","cut","the cut"],"yesPrice":0.49,"noPrice":0.51,"yesBid":0.29,"yesAsk":0.69,"noBid":0.31,"noAsk":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-clamprechtnshipley-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-KOLO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Koepka/S.Lowry make the cut?","description":"","keywords":["zurich","classic","new","orleans","b.koepka","s.lowry","make","cut","the cut"],"yesPrice":0.71,"noPrice":0.29,"yesBid":0.51,"yesAsk":0.91,"noBid":0.09,"noAsk":0.49,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-bkoepkaslowry-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-KNMA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Knox/P.Malnati make the cut?","description":"","keywords":["zurich","classic","new","orleans","r.knox","p.malnati","make","cut","the cut"],"yesPrice":0.34,"noPrice":0.66,"yesBid":0.14,"yesAsk":0.54,"noBid":0.46,"noAsk":0.86,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-rknoxpmalnati-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-KIYU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Kim/K.Yu make the cut?","description":"","keywords":["zurich","classic","new","orleans","t.kim","k.yu","make","cut","the cut"],"yesPrice":0.59,"noPrice":0.41,"yesBid":0.39,"yesAsk":0.79,"noBid":0.21,"noAsk":0.61,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-tkimkyu-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-KIPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Kim/R.Palmer make the cut?","description":"","keywords":["zurich","classic","new","orleans","c.kim","r.palmer","make","cut","the cut"],"yesPrice":0.34,"noPrice":0.66,"yesBid":0.14,"yesAsk":0.54,"noBid":0.46,"noAsk":0.86,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-ckimrpalmer-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-KIKI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Kirk/P.Kizzire make the cut?","description":"","keywords":["zurich","classic","new","orleans","c.kirk","p.kizzire","make","cut","the cut"],"yesPrice":0.48,"noPrice":0.52,"yesBid":0.28,"yesAsk":0.68,"noBid":0.32,"noAsk":0.72,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-ckirkpkizzire-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-KAMO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Kanaya/W.Mouw make the cut?","description":"","keywords":["zurich","classic","new","orleans","t.kanaya","w.mouw","make","cut","the cut"],"yesPrice":0.54,"noPrice":0.46,"yesBid":0.34,"yesAsk":0.74,"noBid":0.26,"noAsk":0.66,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-tkanayawmouw-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-JASU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will S.Jaeger/J.Suber make the cut?","description":"","keywords":["zurich","classic","new","orleans","s.jaeger","j.suber","make","cut","the cut"],"yesPrice":0.52,"noPrice":0.48,"yesBid":0.32,"yesAsk":0.72,"noBid":0.28,"noAsk":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-sjaegerjsuber-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-HUPE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Hughes/T.Pendrith make the cut?","description":"","keywords":["zurich","classic","new","orleans","m.hughes","t.pendrith","make","cut","the cut"],"yesPrice":0.61,"noPrice":0.39,"yesBid":0.41,"yesAsk":0.81,"noBid":0.19,"noAsk":0.59,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-mhughestpendrith-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.694Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-HOWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Hoffman/N.Watney make the cut?","description":"","keywords":["zurich","classic","new","orleans","c.hoffman","n.watney","make","cut","the cut"],"yesPrice":0.35,"noPrice":0.65,"yesBid":0.15,"yesAsk":0.55,"noBid":0.45,"noAsk":0.85,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-choffmannwatney-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-HORY","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Hossler/S.Ryder make the cut?","description":"","keywords":["zurich","classic","new","orleans","b.hossler","s.ryder","make","cut","the cut"],"yesPrice":0.51,"noPrice":0.49,"yesBid":0.31,"yesAsk":0.71,"noBid":0.29,"noAsk":0.69,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-bhosslersryder-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-HOLI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Hoey/D.Lipsky make the cut?","description":"","keywords":["zurich","classic","new","orleans","r.hoey","d.lipsky","make","cut","the cut"],"yesPrice":0.57,"noPrice":0.43,"yesBid":0.37,"yesAsk":0.77,"noBid":0.23,"noAsk":0.63,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-rhoeydlipsky-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-HOHO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Hoge/B.Horschel make the cut?","description":"","keywords":["zurich","classic","new","orleans","t.hoge","b.horschel","make","cut","the cut"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.3,"yesAsk":0.7,"noBid":0.3,"noAsk":0.7,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-thogebhorschel-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-HIPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will H.Higgs/J.Paul make the cut?","description":"","keywords":["zurich","classic","new","orleans","h.higgs","j.paul","make","cut","the cut"],"yesPrice":0.39,"noPrice":0.61,"yesBid":0.19,"yesAsk":0.59,"noBid":0.41,"noAsk":0.81,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-hhiggsjpaul-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-HINA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Hirata/K.Nakajima make the cut?","description":"","keywords":["zurich","classic","new","orleans","k.hirata","k.nakajima","make","cut","the cut"],"yesPrice":0.43,"noPrice":0.57,"yesBid":0.23,"yesAsk":0.63,"noBid":0.37,"noAsk":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-khirataknakajima-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-HIKU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will G.Higgo/M.Kuchar make the cut?","description":"","keywords":["zurich","classic","new","orleans","g.higgo","m.kuchar","make","cut","the cut"],"yesPrice":0.45,"noPrice":0.55,"yesBid":0.25,"yesAsk":0.65,"noBid":0.35,"noAsk":0.75,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-ghiggomkuchar-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-HASV","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Hadwin/A.Svensson make the cut?","description":"","keywords":["zurich","classic","new","orleans","a.hadwin","a.svensson","make","cut","the cut"],"yesPrice":0.49,"noPrice":0.51,"yesBid":0.29,"yesAsk":0.69,"noBid":0.31,"noAsk":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-ahadwinasvensson-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-HAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Hahn/K.Stanley make the cut?","description":"","keywords":["zurich","classic","new","orleans","j.hahn","k.stanley","make","cut","the cut"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.38,"noBid":0.62,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-jhahnkstanley-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-HARI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will N.Hardy/D.Riley make the cut?","description":"","keywords":["zurich","classic","new","orleans","n.hardy","d.riley","make","cut","the cut"],"yesPrice":0.39,"noPrice":0.61,"yesBid":0.19,"yesAsk":0.59,"noBid":0.41,"noAsk":0.81,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-nhardydriley-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-GRNO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Griffin/A.Novak make the cut?","description":"","keywords":["zurich","classic","new","orleans","b.griffin","a.novak","make","cut","the cut"],"yesPrice":0.69,"noPrice":0.31,"yesBid":0.49,"yesAsk":0.89,"noBid":0.11,"noAsk":0.51,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-bgriffinanovak-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-GRKO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will L.Griffin/B.Kohles make the cut?","description":"","keywords":["zurich","classic","new","orleans","l.griffin","b.kohles","make","cut","the cut"],"yesPrice":0.44,"noPrice":0.56,"yesBid":0.24,"yesAsk":0.64,"noBid":0.36,"noAsk":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-lgriffinbkohles-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-GOPE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will W.Gordon/P.Peterson make the cut?","description":"","keywords":["zurich","classic","new","orleans","w.gordon","p.peterson","make","cut","the cut"],"yesPrice":0.35,"noPrice":0.65,"yesBid":0.15,"yesAsk":0.55,"noBid":0.45,"noAsk":0.85,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-wgordonppeterson-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-GHKA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Ghim/J.Kang make the cut?","description":"","keywords":["zurich","classic","new","orleans","d.ghim","j.kang","make","cut","the cut"],"yesPrice":0.49,"noPrice":0.51,"yesBid":0.29,"yesAsk":0.69,"noBid":0.31,"noAsk":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-dghimjkang-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-GEYE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Gerard/S.Yellamaraju make the cut?","description":"","keywords":["zurich","classic","new","orleans","r.gerard","s.yellamaraju","make","cut","the cut"],"yesPrice":0.71,"noPrice":0.29,"yesBid":0.51,"yesAsk":0.9,"noBid":0.1,"noAsk":0.49,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-rgerardsyellamaraju-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-GAHO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Garnett/L.Hodges make the cut?","description":"","keywords":["zurich","classic","new","orleans","b.garnett","l.hodges","make","cut","the cut"],"yesPrice":0.43,"noPrice":0.57,"yesBid":0.23,"yesAsk":0.63,"noBid":0.37,"noAsk":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-bgarnettlhodges-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-FIGR","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Finau/M.Greyserman make the cut?","description":"","keywords":["zurich","classic","new","orleans","t.finau","m.greyserman","make","cut","the cut"],"yesPrice":0.57,"noPrice":0.43,"yesBid":0.37,"yesAsk":0.77,"noBid":0.23,"noAsk":0.63,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-tfinaumgreyserman-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-FIFI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Fitzpatrick/M.Fitzpatrick make the cut?","description":"","keywords":["zurich","classic","new","orleans","a.fitzpatrick","m.fitzpatrick","make","cut","the cut"],"yesPrice":0.56,"noPrice":0.44,"yesBid":0.55,"yesAsk":0.56,"noBid":0.44,"noAsk":0.45,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-afitzpatrickmfitzpatrick-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-EWJA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Ewart/C.Jarvis make the cut?","description":"","keywords":["zurich","classic","new","orleans","a.ewart","c.jarvis","make","cut","the cut"],"yesPrice":0.56,"noPrice":0.44,"yesBid":0.36,"yesAsk":0.76,"noBid":0.24,"noAsk":0.64,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-aewartcjarvis-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-ECTH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Eckroat/D.Thompson make the cut?","description":"","keywords":["zurich","classic","new","orleans","a.eckroat","d.thompson","make","cut","the cut"],"yesPrice":0.62,"noPrice":0.38,"yesBid":0.42,"yesAsk":0.82,"noBid":0.18,"noAsk":0.58,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-aeckroatdthompson-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-DUSC","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Duncan/A.Schenk make the cut?","description":"","keywords":["zurich","classic","new","orleans","t.duncan","a.schenk","make","cut","the cut"],"yesPrice":0.43,"noPrice":0.57,"yesBid":0.23,"yesAsk":0.63,"noBid":0.37,"noAsk":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-tduncanaschenk-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-DUSA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will N.Dunlap/G.Sargent make the cut?","description":"","keywords":["zurich","classic","new","orleans","n.dunlap","g.sargent","make","cut","the cut"],"yesPrice":0.41,"noPrice":0.59,"yesBid":0.21,"yesAsk":0.61,"noBid":0.39,"noAsk":0.79,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-ndunlapgsargent-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-DOWU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will Z.Dou/D.Wu make the cut?","description":"","keywords":["zurich","classic","new","orleans","z.dou","d.wu","make","cut","the cut"],"yesPrice":0.53,"noPrice":0.47,"yesBid":0.33,"yesAsk":0.73,"noBid":0.27,"noAsk":0.67,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-zdoudwu-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-DAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Dahmen/K.Streelman make the cut?","description":"","keywords":["zurich","classic","new","orleans","j.dahmen","k.streelman","make","cut","the cut"],"yesPrice":0.46,"noPrice":0.54,"yesBid":0.26,"yesAsk":0.66,"noBid":0.34,"noAsk":0.74,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-jdahmenkstreelman-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-DAOG","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Davis/G.Ogilvy make the cut?","description":"","keywords":["zurich","classic","new","orleans","c.davis","g.ogilvy","make","cut","the cut"],"yesPrice":0.28,"noPrice":0.72,"yesBid":0.08,"yesAsk":0.48,"noBid":0.52,"noAsk":0.92,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-cdavisgogilvy-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-CRMA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Crowe/B.Martin make the cut?","description":"","keywords":["zurich","classic","new","orleans","t.crowe","b.martin","make","cut","the cut"],"yesPrice":0.42,"noPrice":0.58,"yesBid":0.22,"yesAsk":0.62,"noBid":0.38,"noAsk":0.78,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-tcrowebmartin-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-COPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Couvra/M.Pavon make the cut?","description":"","keywords":["zurich","classic","new","orleans","m.couvra","m.pavon","make","cut","the cut"],"yesPrice":0.47,"noPrice":0.53,"yesBid":0.27,"yesAsk":0.67,"noBid":0.33,"noAsk":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-mcouvrampavon-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-COLE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will E.Cole/H.Lebioda make the cut?","description":"","keywords":["zurich","classic","new","orleans","e.cole","h.lebioda","make","cut","the cut"],"yesPrice":0.52,"noPrice":0.48,"yesBid":0.32,"yesAsk":0.72,"noBid":0.28,"noAsk":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-ecolehlebioda-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-CODU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Cook/J.Dufner make the cut?","description":"","keywords":["zurich","classic","new","orleans","a.cook","j.dufner","make","cut","the cut"],"yesPrice":0.23,"noPrice":0.77,"yesBid":0.03,"yesAsk":0.43,"noBid":0.57,"noAsk":0.97,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-acookjdufner-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-CLMO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will W.Clark/T.Moore make the cut?","description":"","keywords":["zurich","classic","new","orleans","w.clark","t.moore","make","cut","the cut"],"yesPrice":0.65,"noPrice":0.35,"yesBid":0.45,"yesAsk":0.85,"noBid":0.15,"noAsk":0.55,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-wclarktmoore-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-CHSI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Champ/B.Silverman make the cut?","description":"","keywords":["zurich","classic","new","orleans","c.champ","b.silverman","make","cut","the cut"],"yesPrice":0.47,"noPrice":0.53,"yesBid":0.27,"yesAsk":0.67,"noBid":0.33,"noAsk":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-cchampbsilverman-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-CHDU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Chatfield/A.Dumont De Chassart make the cut?","description":"","keywords":["zurich","classic","new","orleans","d.chatfield","a.dumont","chassart","make","cut","the cut"],"yesPrice":0.51,"noPrice":0.49,"yesBid":0.31,"yesAsk":0.71,"noBid":0.29,"noAsk":0.69,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-dchatfieldadumont-de-chassart-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-CATO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Campos/A.Tosti make the cut?","description":"","keywords":["zurich","classic","new","orleans","r.campos","a.tosti","make","cut","the cut"],"yesPrice":0.38,"noPrice":0.62,"yesBid":0.18,"yesAsk":0.58,"noBid":0.42,"noAsk":0.82,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-rcamposatosti-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-CAGO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will F.Capan/N.Goodwin make the cut?","description":"","keywords":["zurich","classic","new","orleans","f.capan","n.goodwin","make","cut","the cut"],"yesPrice":0.37,"noPrice":0.63,"yesBid":0.17,"yesAsk":0.57,"noBid":0.43,"noAsk":0.83,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-fcapanngoodwin-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-BYRE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Byrd/C.Reavie make the cut?","description":"","keywords":["zurich","classic","new","orleans","j.byrd","c.reavie","make","cut","the cut"],"yesPrice":0.3,"noPrice":0.7,"yesBid":0.1,"yesAsk":0.5,"noBid":0.5,"noAsk":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-jbyrdcreavie-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-BRPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Brown/J.Parry make the cut?","description":"","keywords":["zurich","classic","new","orleans","d.brown","j.parry","make","cut","the cut"],"yesPrice":0.55,"noPrice":0.45,"yesBid":0.35,"yesAsk":0.75,"noBid":0.25,"noAsk":0.65,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-dbrownjparry-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-BRKE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Brennan/J.Keefer make the cut?","description":"","keywords":["zurich","classic","new","orleans","m.brennan","j.keefer","make","cut","the cut"],"yesPrice":0.67,"noPrice":0.33,"yesBid":0.47,"yesAsk":0.87,"noBid":0.13,"noAsk":0.53,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-mbrennanjkeefer-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-BRHU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Brehm/M.Hubbard make the cut?","description":"","keywords":["zurich","classic","new","orleans","r.brehm","m.hubbard","make","cut","the cut"],"yesPrice":0.4,"noPrice":0.6,"yesBid":0.2,"yesAsk":0.6,"noBid":0.4,"noAsk":0.8,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-rbrehmmhubbard-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-BRCL","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Brown/L.Clanton make the cut?","description":"","keywords":["zurich","classic","new","orleans","b.brown","l.clanton","make","cut","the cut"],"yesPrice":0.53,"noPrice":0.47,"yesBid":0.33,"yesAsk":0.73,"noBid":0.27,"noAsk":0.67,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-bbrownlclanton-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.695Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-BLVA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Blanchet/J.VanDerLaan make the cut?","description":"","keywords":["zurich","classic","new","orleans","c.blanchet","j.vanderlaan","make","cut","the cut"],"yesPrice":0.52,"noPrice":0.48,"yesBid":0.32,"yesAsk":0.72,"noBid":0.28,"noAsk":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-cblanchetjvanderlaan-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-BLFI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will Z.Blair/P.Fishburn make the cut?","description":"","keywords":["zurich","classic","new","orleans","z.blair","p.fishburn","make","cut","the cut"],"yesPrice":0.48,"noPrice":0.52,"yesBid":0.28,"yesAsk":0.68,"noBid":0.32,"noAsk":0.72,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-zblairpfishburn-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-BEVA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Bezuidenhout/E.Van Rooyen make the cut?","description":"","keywords":["zurich","classic","new","orleans","c.bezuidenhout","e.van","rooyen","make","cut","the cut"],"yesPrice":0.51,"noPrice":0.49,"yesBid":0.31,"yesAsk":0.71,"noBid":0.29,"noAsk":0.69,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-cbezuidenhoutevan-rooyen-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGAMAKECUT-ZUCONO26-BAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will Z.Bauchou/S.Stevens make the cut?","description":"","keywords":["zurich","classic","new","orleans","z.bauchou","s.stevens","make","cut","the cut"],"yesPrice":0.62,"noPrice":0.38,"yesBid":0.42,"yesAsk":0.82,"noBid":0.18,"noAsk":0.58,"volume24h":0,"url":"https://kalshi.com/markets/kxpgamakecut/zurich-classic-of-new-orleans-will-zbauchousstevens-make-the-cut/kxpgamakecut-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-THVI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Thorbjornsen/K.Vilips finish top 5?","description":"","keywords":["zurich","classic","new","orleans","m.thorbjornsen","k.vilips","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.37,"noBid":0.63,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-mthorbjornsenkvilips-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-STWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Stanger/D.Walker finish top 5?","description":"","keywords":["zurich","classic","new","orleans","j.stanger","d.walker","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.24,"noBid":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-jstangerdwalker-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-SMSP","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Smalley/H.Springer finish top 5?","description":"","keywords":["zurich","classic","new","orleans","a.smalley","h.springer","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.32,"noBid":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-asmalleyhspringer-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-SIWH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will G.Sigg/V.Whaley finish top 5?","description":"","keywords":["zurich","classic","new","orleans","g.sigg","v.whaley","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.26,"noBid":0.74,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-gsiggvwhaley-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-ROVI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Rozo/C.Villegas finish top 5?","description":"","keywords":["zurich","classic","new","orleans","m.rozo","c.villegas","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.21,"noBid":0.79,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-mrozocvillegas-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-REVE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Reitan/K.Ventura finish top 5?","description":"","keywords":["zurich","classic","new","orleans","k.reitan","k.ventura","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.34,"noBid":0.66,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-kreitankventura-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-RATH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Rai/S.Theegala finish top 5?","description":"","keywords":["zurich","classic","new","orleans","a.rai","s.theegala","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.38,"noBid":0.62,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-araistheegala-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-PUSM","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Putnam/A.Smotherman finish top 5?","description":"","keywords":["zurich","classic","new","orleans","a.putnam","a.smotherman","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.29,"noBid":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-aputnamasmotherman-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-POSC","platform":"kalshi","title":"Zurich Classic of New Orleans: Will S.Power/M.Schmid finish top 5?","description":"","keywords":["zurich","classic","new","orleans","s.power","m.schmid","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.29,"noBid":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-spowermschmid-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-PHYO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Phillips/C.Young finish top 5?","description":"","keywords":["zurich","classic","new","orleans","c.phillips","c.young","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.25,"noBid":0.75,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-cphillipscyoung-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-PEWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Penge/M.Wallace finish top 5?","description":"","keywords":["zurich","classic","new","orleans","m.penge","m.wallace","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.38,"noBid":0.62,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-mpengemwallace-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-NYSV","platform":"kalshi","title":"Zurich Classic of New Orleans: Will P.Nyholm/J.Svensson finish top 5?","description":"","keywords":["zurich","classic","new","orleans","p.nyholm","j.svensson","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.28,"noBid":0.72,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-pnyholmjsvensson-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-NEOL","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Neergaard-Petersen/J.Olesen finish top 5?","description":"","keywords":["zurich","classic","new","orleans","r.neergaard-petersen","j.olesen","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.28,"noBid":0.72,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-rneergaard-petersenjolesen-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.696Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-MUSK","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Mullinax/D.Skinns finish top 5?","description":"","keywords":["zurich","classic","new","orleans","t.mullinax","d.skinns","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.25,"noBid":0.75,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-tmullinaxdskinns-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-MOPI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Montgomery/S.Piercy finish top 5?","description":"","keywords":["zurich","classic","new","orleans","t.montgomery","s.piercy","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.22,"noBid":0.78,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-tmontgomeryspiercy-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-MISN","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Mitchell/B.Snedeker finish top 5?","description":"","keywords":["zurich","classic","new","orleans","k.mitchell","b.snedeker","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.28,"noBid":0.72,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-kmitchellbsnedeker-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-MEST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Merritt/R.Streb finish top 5?","description":"","keywords":["zurich","classic","new","orleans","t.merritt","r.streb","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.21,"noBid":0.79,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-tmerrittrstreb-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-MCRO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.McGreevy/K.Roy finish top 5?","description":"","keywords":["zurich","classic","new","orleans","m.mcgreevy","k.roy","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.31,"noBid":0.69,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-mmcgreevykroy-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-MCME","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.McCarty/M.Meissner finish top 5?","description":"","keywords":["zurich","classic","new","orleans","m.mccarty","m.meissner","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.35,"noBid":0.65,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-mmccartymmeissner-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-LORA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Lower/C.Ramey finish top 5?","description":"","keywords":["zurich","classic","new","orleans","j.lower","c.ramey","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.26,"noBid":0.74,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-jlowercramey-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-LISM","platform":"kalshi","title":"Zurich Classic of New Orleans: Will H.Li/J.Smith finish top 5?","description":"","keywords":["zurich","classic","new","orleans","h.li","j.smith","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.38,"noBid":0.62,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-hlijsmith-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-LINO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will L.List/H.Norlander finish top 5?","description":"","keywords":["zurich","classic","new","orleans","l.list","h.norlander","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.23,"noBid":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-llisthnorlander-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-LASH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Lamprecht/N.Shipley finish top 5?","description":"","keywords":["zurich","classic","new","orleans","c.lamprecht","n.shipley","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.27,"noBid":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-clamprechtnshipley-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-KOLO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Koepka/S.Lowry finish top 5?","description":"","keywords":["zurich","classic","new","orleans","b.koepka","s.lowry","finish","top","5"],"yesPrice":0.23,"noPrice":0.77,"yesBid":0.03,"yesAsk":0.43,"noBid":0.57,"noAsk":0.97,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-bkoepkaslowry-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-KNMA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Knox/P.Malnati finish top 5?","description":"","keywords":["zurich","classic","new","orleans","r.knox","p.malnati","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.22,"noBid":0.78,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-rknoxpmalnati-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-KIYU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Kim/K.Yu finish top 5?","description":"","keywords":["zurich","classic","new","orleans","t.kim","k.yu","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.31,"noBid":0.69,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-tkimkyu-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-KIPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Kim/R.Palmer finish top 5?","description":"","keywords":["zurich","classic","new","orleans","c.kim","r.palmer","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.22,"noBid":0.78,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-ckimrpalmer-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-KIKI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Kirk/P.Kizzire finish top 5?","description":"","keywords":["zurich","classic","new","orleans","c.kirk","p.kizzire","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.25,"noBid":0.75,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-ckirkpkizzire-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-KAMO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Kanaya/W.Mouw finish top 5?","description":"","keywords":["zurich","classic","new","orleans","t.kanaya","w.mouw","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.28,"noBid":0.72,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-tkanayawmouw-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-JASU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will S.Jaeger/J.Suber finish top 5?","description":"","keywords":["zurich","classic","new","orleans","s.jaeger","j.suber","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.27,"noBid":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-sjaegerjsuber-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-HUPE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Hughes/T.Pendrith finish top 5?","description":"","keywords":["zurich","classic","new","orleans","m.hughes","t.pendrith","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.32,"noBid":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-mhughestpendrith-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-HOWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Hoffman/N.Watney finish top 5?","description":"","keywords":["zurich","classic","new","orleans","c.hoffman","n.watney","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.22,"noBid":0.78,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-choffmannwatney-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-HORY","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Hossler/S.Ryder finish top 5?","description":"","keywords":["zurich","classic","new","orleans","b.hossler","s.ryder","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.27,"noBid":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-bhosslersryder-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-HOLI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Hoey/D.Lipsky finish top 5?","description":"","keywords":["zurich","classic","new","orleans","r.hoey","d.lipsky","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.3,"noBid":0.7,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-rhoeydlipsky-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-HOHO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Hoge/B.Horschel finish top 5?","description":"","keywords":["zurich","classic","new","orleans","t.hoge","b.horschel","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.27,"noBid":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-thogebhorschel-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-HIPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will H.Higgs/J.Paul finish top 5?","description":"","keywords":["zurich","classic","new","orleans","h.higgs","j.paul","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.23,"noBid":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-hhiggsjpaul-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-HINA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Hirata/K.Nakajima finish top 5?","description":"","keywords":["zurich","classic","new","orleans","k.hirata","k.nakajima","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.24,"noBid":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-khirataknakajima-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-HIKU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will G.Higgo/M.Kuchar finish top 5?","description":"","keywords":["zurich","classic","new","orleans","g.higgo","m.kuchar","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.24,"noBid":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-ghiggomkuchar-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-HASV","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Hadwin/A.Svensson finish top 5?","description":"","keywords":["zurich","classic","new","orleans","a.hadwin","a.svensson","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.26,"noBid":0.74,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-ahadwinasvensson-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-HAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Hahn/K.Stanley finish top 5?","description":"","keywords":["zurich","classic","new","orleans","j.hahn","k.stanley","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.01,"noBid":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-jhahnkstanley-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-HARI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will N.Hardy/D.Riley finish top 5?","description":"","keywords":["zurich","classic","new","orleans","n.hardy","d.riley","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.23,"noBid":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-nhardydriley-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-GRNO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Griffin/A.Novak finish top 5?","description":"","keywords":["zurich","classic","new","orleans","b.griffin","a.novak","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.4,"noBid":0.6,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-bgriffinanovak-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-GRKO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will L.Griffin/B.Kohles finish top 5?","description":"","keywords":["zurich","classic","new","orleans","l.griffin","b.kohles","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.24,"noBid":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-lgriffinbkohles-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-GOPE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will W.Gordon/P.Peterson finish top 5?","description":"","keywords":["zurich","classic","new","orleans","w.gordon","p.peterson","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.22,"noBid":0.78,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-wgordonppeterson-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-GHKA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Ghim/J.Kang finish top 5?","description":"","keywords":["zurich","classic","new","orleans","d.ghim","j.kang","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.25,"noBid":0.75,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-dghimjkang-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-GEYE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Gerard/S.Yellamaraju finish top 5?","description":"","keywords":["zurich","classic","new","orleans","r.gerard","s.yellamaraju","finish","top","5"],"yesPrice":0.22,"noPrice":0.78,"yesBid":0.02,"yesAsk":0.42,"noBid":0.58,"noAsk":0.98,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-rgerardsyellamaraju-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-GAHO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Garnett/L.Hodges finish top 5?","description":"","keywords":["zurich","classic","new","orleans","b.garnett","l.hodges","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.24,"noBid":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-bgarnettlhodges-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.785Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-FIGR","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Finau/M.Greyserman finish top 5?","description":"","keywords":["zurich","classic","new","orleans","t.finau","m.greyserman","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.3,"noBid":0.7,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-tfinaumgreyserman-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-FIFI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Fitzpatrick/M.Fitzpatrick finish top 5?","description":"","keywords":["zurich","classic","new","orleans","a.fitzpatrick","m.fitzpatrick","finish","top","5"],"yesPrice":0.27,"noPrice":0.73,"yesBid":0.07,"yesAsk":0.47,"noBid":0.53,"noAsk":0.93,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-afitzpatrickmfitzpatrick-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-EWJA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Ewart/C.Jarvis finish top 5?","description":"","keywords":["zurich","classic","new","orleans","a.ewart","c.jarvis","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.29,"noBid":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-aewartcjarvis-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-ECTH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Eckroat/D.Thompson finish top 5?","description":"","keywords":["zurich","classic","new","orleans","a.eckroat","d.thompson","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.34,"noBid":0.66,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-aeckroatdthompson-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-DUSC","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Duncan/A.Schenk finish top 5?","description":"","keywords":["zurich","classic","new","orleans","t.duncan","a.schenk","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.24,"noBid":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-tduncanaschenk-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-DUSA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will N.Dunlap/G.Sargent finish top 5?","description":"","keywords":["zurich","classic","new","orleans","n.dunlap","g.sargent","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.24,"noBid":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-ndunlapgsargent-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-DOWU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will Z.Dou/D.Wu finish top 5?","description":"","keywords":["zurich","classic","new","orleans","z.dou","d.wu","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.28,"noBid":0.72,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-zdoudwu-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-DAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Dahmen/K.Streelman finish top 5?","description":"","keywords":["zurich","classic","new","orleans","j.dahmen","k.streelman","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.25,"noBid":0.75,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-jdahmenkstreelman-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-DAOG","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Davis/G.Ogilvy finish top 5?","description":"","keywords":["zurich","classic","new","orleans","c.davis","g.ogilvy","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.21,"noBid":0.79,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-cdavisgogilvy-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-CRMA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Crowe/B.Martin finish top 5?","description":"","keywords":["zurich","classic","new","orleans","t.crowe","b.martin","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.24,"noBid":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-tcrowebmartin-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-COPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Couvra/M.Pavon finish top 5?","description":"","keywords":["zurich","classic","new","orleans","m.couvra","m.pavon","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.25,"noBid":0.75,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-mcouvrampavon-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-COLE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will E.Cole/H.Lebioda finish top 5?","description":"","keywords":["zurich","classic","new","orleans","e.cole","h.lebioda","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.27,"noBid":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-ecolehlebioda-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-CODU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Cook/J.Dufner finish top 5?","description":"","keywords":["zurich","classic","new","orleans","a.cook","j.dufner","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.21,"noBid":0.79,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-acookjdufner-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-CLMO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will W.Clark/T.Moore finish top 5?","description":"","keywords":["zurich","classic","new","orleans","w.clark","t.moore","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.37,"noBid":0.63,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-wclarktmoore-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-CHSI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Champ/B.Silverman finish top 5?","description":"","keywords":["zurich","classic","new","orleans","c.champ","b.silverman","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.25,"noBid":0.75,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-cchampbsilverman-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-CHDU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Chatfield/A.Dumont De Chassart finish top 5?","description":"","keywords":["zurich","classic","new","orleans","d.chatfield","a.dumont","chassart","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.27,"noBid":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-dchatfieldadumont-de-chassart-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-CATO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Campos/A.Tosti finish top 5?","description":"","keywords":["zurich","classic","new","orleans","r.campos","a.tosti","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.23,"noBid":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-rcamposatosti-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-CAGO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will F.Capan/N.Goodwin finish top 5?","description":"","keywords":["zurich","classic","new","orleans","f.capan","n.goodwin","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.23,"noBid":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-fcapanngoodwin-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-BYRE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Byrd/C.Reavie finish top 5?","description":"","keywords":["zurich","classic","new","orleans","j.byrd","c.reavie","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.21,"noBid":0.79,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-jbyrdcreavie-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-BRPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Brown/J.Parry finish top 5?","description":"","keywords":["zurich","classic","new","orleans","d.brown","j.parry","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.29,"noBid":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-dbrownjparry-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-BRKE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Brennan/J.Keefer finish top 5?","description":"","keywords":["zurich","classic","new","orleans","m.brennan","j.keefer","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.39,"noBid":0.61,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-mbrennanjkeefer-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-BRHU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Brehm/M.Hubbard finish top 5?","description":"","keywords":["zurich","classic","new","orleans","r.brehm","m.hubbard","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.23,"noBid":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-rbrehmmhubbard-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-BRCL","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Brown/L.Clanton finish top 5?","description":"","keywords":["zurich","classic","new","orleans","b.brown","l.clanton","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.29,"noBid":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-bbrownlclanton-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-BLVA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Blanchet/J.VanDerLaan finish top 5?","description":"","keywords":["zurich","classic","new","orleans","c.blanchet","j.vanderlaan","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.28,"noBid":0.72,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-cblanchetjvanderlaan-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-BLFI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will Z.Blair/P.Fishburn finish top 5?","description":"","keywords":["zurich","classic","new","orleans","z.blair","p.fishburn","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.25,"noBid":0.75,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-zblairpfishburn-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-BEVA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Bezuidenhout/E.Van Rooyen finish top 5?","description":"","keywords":["zurich","classic","new","orleans","c.bezuidenhout","e.van","rooyen","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.27,"noBid":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-cbezuidenhoutevan-rooyen-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP5-ZUCONO26-BAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will Z.Bauchou/S.Stevens finish top 5?","description":"","keywords":["zurich","classic","new","orleans","z.bauchou","s.stevens","finish","top","5"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.33,"noBid":0.67,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop5/zurich-classic-of-new-orleans-will-zbauchousstevens-finish-top-5/kxpgatop5-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXMLBHIT-26APR201810HOUCLE-HOUTTRAMMELL26-2","platform":"kalshi","title":"Taylor Trammell: 2+ hits?","description":"","keywords":["taylor","trammell","2","hits","2 hits"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.21,"noBid":0.79,"volume24h":0,"url":"https://kalshi.com/markets/kxmlbhit/taylor-trammell-2-hits/kxmlbhit-26apr201810houcle","category":"sports","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-04-23T22:10:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-THVI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Thorbjornsen/K.Vilips finish top 10?","description":"","keywords":["zurich","classic","new","orleans","m.thorbjornsen","k.vilips","finish","top","10"],"yesPrice":0.3,"noPrice":0.7,"yesBid":0.1,"yesAsk":0.5,"noBid":0.5,"noAsk":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-mthorbjornsenkvilips-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-STWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Stanger/D.Walker finish top 10?","description":"","keywords":["zurich","classic","new","orleans","j.stanger","d.walker","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.3,"noBid":0.7,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-jstangerdwalker-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-SMSP","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Smalley/H.Springer finish top 10?","description":"","keywords":["zurich","classic","new","orleans","a.smalley","h.springer","finish","top","10"],"yesPrice":0.21,"noPrice":0.79,"yesBid":0.01,"yesAsk":0.41,"noBid":0.59,"noAsk":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-asmalleyhspringer-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-SIWH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will G.Sigg/V.Whaley finish top 10?","description":"","keywords":["zurich","classic","new","orleans","g.sigg","v.whaley","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.32,"noBid":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-gsiggvwhaley-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-ROVI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Rozo/C.Villegas finish top 10?","description":"","keywords":["zurich","classic","new","orleans","m.rozo","c.villegas","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.24,"noBid":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-mrozocvillegas-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-REVE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Reitan/K.Ventura finish top 10?","description":"","keywords":["zurich","classic","new","orleans","k.reitan","k.ventura","finish","top","10"],"yesPrice":0.25,"noPrice":0.75,"yesBid":0.05,"yesAsk":0.45,"noBid":0.55,"noAsk":0.95,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-kreitankventura-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-RATH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Rai/S.Theegala finish top 10?","description":"","keywords":["zurich","classic","new","orleans","a.rai","s.theegala","finish","top","10"],"yesPrice":0.31,"noPrice":0.69,"yesBid":0.11,"yesAsk":0.51,"noBid":0.49,"noAsk":0.89,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-araistheegala-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-PUSM","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Putnam/A.Smotherman finish top 10?","description":"","keywords":["zurich","classic","new","orleans","a.putnam","a.smotherman","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.38,"noBid":0.62,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-aputnamasmotherman-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-POSC","platform":"kalshi","title":"Zurich Classic of New Orleans: Will S.Power/M.Schmid finish top 10?","description":"","keywords":["zurich","classic","new","orleans","s.power","m.schmid","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.38,"noBid":0.62,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-spowermschmid-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-PHYO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Phillips/C.Young finish top 10?","description":"","keywords":["zurich","classic","new","orleans","c.phillips","c.young","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.31,"noBid":0.69,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-cphillipscyoung-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-PEWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Penge/M.Wallace finish top 10?","description":"","keywords":["zurich","classic","new","orleans","m.penge","m.wallace","finish","top","10"],"yesPrice":0.31,"noPrice":0.69,"yesBid":0.11,"yesAsk":0.51,"noBid":0.49,"noAsk":0.89,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-mpengemwallace-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-NYSV","platform":"kalshi","title":"Zurich Classic of New Orleans: Will P.Nyholm/J.Svensson finish top 10?","description":"","keywords":["zurich","classic","new","orleans","p.nyholm","j.svensson","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.36,"noBid":0.64,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-pnyholmjsvensson-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.786Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-NEOL","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Neergaard-Petersen/J.Olesen finish top 10?","description":"","keywords":["zurich","classic","new","orleans","r.neergaard-petersen","j.olesen","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.36,"noBid":0.64,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-rneergaard-petersenjolesen-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-MUSK","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Mullinax/D.Skinns finish top 10?","description":"","keywords":["zurich","classic","new","orleans","t.mullinax","d.skinns","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.31,"noBid":0.69,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-tmullinaxdskinns-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-MOPI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Montgomery/S.Piercy finish top 10?","description":"","keywords":["zurich","classic","new","orleans","t.montgomery","s.piercy","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.25,"noBid":0.75,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-tmontgomeryspiercy-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-MISN","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Mitchell/B.Snedeker finish top 10?","description":"","keywords":["zurich","classic","new","orleans","k.mitchell","b.snedeker","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.36,"noBid":0.64,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-kmitchellbsnedeker-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-MEST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Merritt/R.Streb finish top 10?","description":"","keywords":["zurich","classic","new","orleans","t.merritt","r.streb","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.23,"noBid":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-tmerrittrstreb-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-MCRO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.McGreevy/K.Roy finish top 10?","description":"","keywords":["zurich","classic","new","orleans","m.mcgreevy","k.roy","finish","top","10"],"yesPrice":0.22,"noPrice":0.78,"yesBid":0.02,"yesAsk":0.42,"noBid":0.58,"noAsk":0.98,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-mmcgreevykroy-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-MCME","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.McCarty/M.Meissner finish top 10?","description":"","keywords":["zurich","classic","new","orleans","m.mccarty","m.meissner","finish","top","10"],"yesPrice":0.27,"noPrice":0.73,"yesBid":0.07,"yesAsk":0.47,"noBid":0.53,"noAsk":0.93,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-mmccartymmeissner-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-LORA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Lower/C.Ramey finish top 10?","description":"","keywords":["zurich","classic","new","orleans","j.lower","c.ramey","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.32,"noBid":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-jlowercramey-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-LISM","platform":"kalshi","title":"Zurich Classic of New Orleans: Will H.Li/J.Smith finish top 10?","description":"","keywords":["zurich","classic","new","orleans","h.li","j.smith","finish","top","10"],"yesPrice":0.3,"noPrice":0.7,"yesBid":0.1,"yesAsk":0.5,"noBid":0.5,"noAsk":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-hlijsmith-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-LINO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will L.List/H.Norlander finish top 10?","description":"","keywords":["zurich","classic","new","orleans","l.list","h.norlander","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.26,"noBid":0.74,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-llisthnorlander-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-LASH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Lamprecht/N.Shipley finish top 10?","description":"","keywords":["zurich","classic","new","orleans","c.lamprecht","n.shipley","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.33,"noBid":0.67,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-clamprechtnshipley-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-KOLO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Koepka/S.Lowry finish top 10?","description":"","keywords":["zurich","classic","new","orleans","b.koepka","s.lowry","finish","top","10"],"yesPrice":0.37,"noPrice":0.63,"yesBid":0.17,"yesAsk":0.57,"noBid":0.43,"noAsk":0.83,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-bkoepkaslowry-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-KNMA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Knox/P.Malnati finish top 10?","description":"","keywords":["zurich","classic","new","orleans","r.knox","p.malnati","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.24,"noBid":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-rknoxpmalnati-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-KIYU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Kim/K.Yu finish top 10?","description":"","keywords":["zurich","classic","new","orleans","t.kim","k.yu","finish","top","10"],"yesPrice":0.21,"noPrice":0.79,"yesBid":0.01,"yesAsk":0.41,"noBid":0.59,"noAsk":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-tkimkyu-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-KIPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Kim/R.Palmer finish top 10?","description":"","keywords":["zurich","classic","new","orleans","c.kim","r.palmer","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.25,"noBid":0.75,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-ckimrpalmer-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-KIKI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Kirk/P.Kizzire finish top 10?","description":"","keywords":["zurich","classic","new","orleans","c.kirk","p.kizzire","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.31,"noBid":0.69,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-ckirkpkizzire-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-KAMO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Kanaya/W.Mouw finish top 10?","description":"","keywords":["zurich","classic","new","orleans","t.kanaya","w.mouw","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.36,"noBid":0.64,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-tkanayawmouw-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-JASU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will S.Jaeger/J.Suber finish top 10?","description":"","keywords":["zurich","classic","new","orleans","s.jaeger","j.suber","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.35,"noBid":0.65,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-sjaegerjsuber-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-HUPE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Hughes/T.Pendrith finish top 10?","description":"","keywords":["zurich","classic","new","orleans","m.hughes","t.pendrith","finish","top","10"],"yesPrice":0.24,"noPrice":0.76,"yesBid":0.04,"yesAsk":0.44,"noBid":0.56,"noAsk":0.96,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-mhughestpendrith-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-HOWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Hoffman/N.Watney finish top 10?","description":"","keywords":["zurich","classic","new","orleans","c.hoffman","n.watney","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.26,"noBid":0.74,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-choffmannwatney-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-HORY","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Hossler/S.Ryder finish top 10?","description":"","keywords":["zurich","classic","new","orleans","b.hossler","s.ryder","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.35,"noBid":0.65,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-bhosslersryder-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-HOLI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Hoey/D.Lipsky finish top 10?","description":"","keywords":["zurich","classic","new","orleans","r.hoey","d.lipsky","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.4,"noBid":0.6,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-rhoeydlipsky-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-HOHO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Hoge/B.Horschel finish top 10?","description":"","keywords":["zurich","classic","new","orleans","t.hoge","b.horschel","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.34,"noBid":0.66,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-thogebhorschel-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-HIPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will H.Higgs/J.Paul finish top 10?","description":"","keywords":["zurich","classic","new","orleans","h.higgs","j.paul","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.27,"noBid":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-hhiggsjpaul-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-HINA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Hirata/K.Nakajima finish top 10?","description":"","keywords":["zurich","classic","new","orleans","k.hirata","k.nakajima","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.29,"noBid":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-khirataknakajima-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-HIKU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will G.Higgo/M.Kuchar finish top 10?","description":"","keywords":["zurich","classic","new","orleans","g.higgo","m.kuchar","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.3,"noBid":0.7,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-ghiggomkuchar-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-HASV","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Hadwin/A.Svensson finish top 10?","description":"","keywords":["zurich","classic","new","orleans","a.hadwin","a.svensson","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.32,"noBid":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-ahadwinasvensson-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-HAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Hahn/K.Stanley finish top 10?","description":"","keywords":["zurich","classic","new","orleans","j.hahn","k.stanley","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.21,"noBid":0.79,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-jhahnkstanley-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-HARI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will N.Hardy/D.Riley finish top 10?","description":"","keywords":["zurich","classic","new","orleans","n.hardy","d.riley","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.27,"noBid":0.73,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-nhardydriley-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-GRNO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Griffin/A.Novak finish top 10?","description":"","keywords":["zurich","classic","new","orleans","b.griffin","a.novak","finish","top","10"],"yesPrice":0.35,"noPrice":0.65,"yesBid":0.15,"yesAsk":0.55,"noBid":0.45,"noAsk":0.85,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-bgriffinanovak-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-GRKO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will L.Griffin/B.Kohles finish top 10?","description":"","keywords":["zurich","classic","new","orleans","l.griffin","b.kohles","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.29,"noBid":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-lgriffinbkohles-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-GOPE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will W.Gordon/P.Peterson finish top 10?","description":"","keywords":["zurich","classic","new","orleans","w.gordon","p.peterson","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.25,"noBid":0.75,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-wgordonppeterson-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-GHKA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Ghim/J.Kang finish top 10?","description":"","keywords":["zurich","classic","new","orleans","d.ghim","j.kang","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.32,"noBid":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-dghimjkang-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-GEYE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Gerard/S.Yellamaraju finish top 10?","description":"","keywords":["zurich","classic","new","orleans","r.gerard","s.yellamaraju","finish","top","10"],"yesPrice":0.37,"noPrice":0.63,"yesBid":0.17,"yesAsk":0.57,"noBid":0.43,"noAsk":0.83,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-rgerardsyellamaraju-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-GAHO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Garnett/L.Hodges finish top 10?","description":"","keywords":["zurich","classic","new","orleans","b.garnett","l.hodges","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.29,"noBid":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-bgarnettlhodges-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-FIGR","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Finau/M.Greyserman finish top 10?","description":"","keywords":["zurich","classic","new","orleans","t.finau","m.greyserman","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.4,"noBid":0.6,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-tfinaumgreyserman-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-FIFI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Fitzpatrick/M.Fitzpatrick finish top 10?","description":"","keywords":["zurich","classic","new","orleans","a.fitzpatrick","m.fitzpatrick","finish","top","10"],"yesPrice":0.43,"noPrice":0.57,"yesBid":0.23,"yesAsk":0.63,"noBid":0.37,"noAsk":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-afitzpatrickmfitzpatrick-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-EWJA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Ewart/C.Jarvis finish top 10?","description":"","keywords":["zurich","classic","new","orleans","a.ewart","c.jarvis","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.39,"noBid":0.61,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-aewartcjarvis-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-ECTH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Eckroat/D.Thompson finish top 10?","description":"","keywords":["zurich","classic","new","orleans","a.eckroat","d.thompson","finish","top","10"],"yesPrice":0.25,"noPrice":0.75,"yesBid":0.05,"yesAsk":0.45,"noBid":0.55,"noAsk":0.95,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-aeckroatdthompson-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-DUSC","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Duncan/A.Schenk finish top 10?","description":"","keywords":["zurich","classic","new","orleans","t.duncan","a.schenk","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.29,"noBid":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-tduncanaschenk-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-DUSA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will N.Dunlap/G.Sargent finish top 10?","description":"","keywords":["zurich","classic","new","orleans","n.dunlap","g.sargent","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.28,"noBid":0.72,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-ndunlapgsargent-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-DOWU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will Z.Dou/D.Wu finish top 10?","description":"","keywords":["zurich","classic","new","orleans","z.dou","d.wu","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.36,"noBid":0.64,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-zdoudwu-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-DAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Dahmen/K.Streelman finish top 10?","description":"","keywords":["zurich","classic","new","orleans","j.dahmen","k.streelman","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.31,"noBid":0.69,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-jdahmenkstreelman-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-DAOG","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Davis/G.Ogilvy finish top 10?","description":"","keywords":["zurich","classic","new","orleans","c.davis","g.ogilvy","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.23,"noBid":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-cdavisgogilvy-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-CRMA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Crowe/B.Martin finish top 10?","description":"","keywords":["zurich","classic","new","orleans","t.crowe","b.martin","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.29,"noBid":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-tcrowebmartin-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.787Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-COPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Couvra/M.Pavon finish top 10?","description":"","keywords":["zurich","classic","new","orleans","m.couvra","m.pavon","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.31,"noBid":0.69,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-mcouvrampavon-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-COLE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will E.Cole/H.Lebioda finish top 10?","description":"","keywords":["zurich","classic","new","orleans","e.cole","h.lebioda","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.35,"noBid":0.65,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-ecolehlebioda-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-CODU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Cook/J.Dufner finish top 10?","description":"","keywords":["zurich","classic","new","orleans","a.cook","j.dufner","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.22,"noBid":0.78,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-acookjdufner-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-CLMO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will W.Clark/T.Moore finish top 10?","description":"","keywords":["zurich","classic","new","orleans","w.clark","t.moore","finish","top","10"],"yesPrice":0.3,"noPrice":0.7,"yesBid":0.1,"yesAsk":0.5,"noBid":0.5,"noAsk":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-wclarktmoore-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-CHSI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Champ/B.Silverman finish top 10?","description":"","keywords":["zurich","classic","new","orleans","c.champ","b.silverman","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.31,"noBid":0.69,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-cchampbsilverman-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-CHDU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Chatfield/A.Dumont De Chassart finish top 10?","description":"","keywords":["zurich","classic","new","orleans","d.chatfield","a.dumont","chassart","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.35,"noBid":0.65,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-dchatfieldadumont-de-chassart-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-CATO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Campos/A.Tosti finish top 10?","description":"","keywords":["zurich","classic","new","orleans","r.campos","a.tosti","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.26,"noBid":0.74,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-rcamposatosti-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-CAGO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will F.Capan/N.Goodwin finish top 10?","description":"","keywords":["zurich","classic","new","orleans","f.capan","n.goodwin","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.26,"noBid":0.74,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-fcapanngoodwin-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-BYRE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Byrd/C.Reavie finish top 10?","description":"","keywords":["zurich","classic","new","orleans","j.byrd","c.reavie","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.23,"noBid":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-jbyrdcreavie-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-BRPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Brown/J.Parry finish top 10?","description":"","keywords":["zurich","classic","new","orleans","d.brown","j.parry","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.38,"noBid":0.62,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-dbrownjparry-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-BRKE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Brennan/J.Keefer finish top 10?","description":"","keywords":["zurich","classic","new","orleans","m.brennan","j.keefer","finish","top","10"],"yesPrice":0.32,"noPrice":0.68,"yesBid":0.12,"yesAsk":0.52,"noBid":0.48,"noAsk":0.88,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-mbrennanjkeefer-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-BRHU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Brehm/M.Hubbard finish top 10?","description":"","keywords":["zurich","classic","new","orleans","r.brehm","m.hubbard","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.28,"noBid":0.72,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-rbrehmmhubbard-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-BRCL","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Brown/L.Clanton finish top 10?","description":"","keywords":["zurich","classic","new","orleans","b.brown","l.clanton","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.37,"noBid":0.63,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-bbrownlclanton-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-BLVA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Blanchet/J.VanDerLaan finish top 10?","description":"","keywords":["zurich","classic","new","orleans","c.blanchet","j.vanderlaan","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.36,"noBid":0.64,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-cblanchetjvanderlaan-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-BLFI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will Z.Blair/P.Fishburn finish top 10?","description":"","keywords":["zurich","classic","new","orleans","z.blair","p.fishburn","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.32,"noBid":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-zblairpfishburn-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-BEVA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Bezuidenhout/E.Van Rooyen finish top 10?","description":"","keywords":["zurich","classic","new","orleans","c.bezuidenhout","e.van","rooyen","finish","top","10"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.34,"noBid":0.66,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-cbezuidenhoutevan-rooyen-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP10-ZUCONO26-BAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will Z.Bauchou/S.Stevens finish top 10?","description":"","keywords":["zurich","classic","new","orleans","z.bauchou","s.stevens","finish","top","10"],"yesPrice":0.25,"noPrice":0.75,"yesBid":0.05,"yesAsk":0.45,"noBid":0.55,"noAsk":0.95,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop10/zurich-classic-of-new-orleans-will-zbauchousstevens-finish-top-10/kxpgatop10-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-THVI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Thorbjornsen/K.Vilips finish top 20?","description":"","keywords":["zurich","classic","new","orleans","m.thorbjornsen","k.vilips","finish","top","20"],"yesPrice":0.49,"noPrice":0.51,"yesBid":0.29,"yesAsk":0.69,"noBid":0.31,"noAsk":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-mthorbjornsenkvilips-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-STWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Stanger/D.Walker finish top 20?","description":"","keywords":["zurich","classic","new","orleans","j.stanger","d.walker","finish","top","20"],"yesPrice":0.21,"noPrice":0.79,"yesBid":0.01,"yesAsk":0.41,"noBid":0.59,"noAsk":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-jstangerdwalker-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-SMSP","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Smalley/H.Springer finish top 20?","description":"","keywords":["zurich","classic","new","orleans","a.smalley","h.springer","finish","top","20"],"yesPrice":0.39,"noPrice":0.61,"yesBid":0.19,"yesAsk":0.59,"noBid":0.41,"noAsk":0.81,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-asmalleyhspringer-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-SIWH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will G.Sigg/V.Whaley finish top 20?","description":"","keywords":["zurich","classic","new","orleans","g.sigg","v.whaley","finish","top","20"],"yesPrice":0.27,"noPrice":0.73,"yesBid":0.07,"yesAsk":0.47,"noBid":0.53,"noAsk":0.93,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-gsiggvwhaley-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-ROVI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Rozo/C.Villegas finish top 20?","description":"","keywords":["zurich","classic","new","orleans","m.rozo","c.villegas","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.31,"noBid":0.69,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-mrozocvillegas-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-REVE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Reitan/K.Ventura finish top 20?","description":"","keywords":["zurich","classic","new","orleans","k.reitan","k.ventura","finish","top","20"],"yesPrice":0.43,"noPrice":0.57,"yesBid":0.23,"yesAsk":0.63,"noBid":0.37,"noAsk":0.77,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-kreitankventura-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-RATH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Rai/S.Theegala finish top 20?","description":"","keywords":["zurich","classic","new","orleans","a.rai","s.theegala","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.3,"yesAsk":0.7,"noBid":0.3,"noAsk":0.7,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-araistheegala-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-PUSM","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Putnam/A.Smotherman finish top 20?","description":"","keywords":["zurich","classic","new","orleans","a.putnam","a.smotherman","finish","top","20"],"yesPrice":0.36,"noPrice":0.64,"yesBid":0.16,"yesAsk":0.56,"noBid":0.44,"noAsk":0.84,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-aputnamasmotherman-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-POSC","platform":"kalshi","title":"Zurich Classic of New Orleans: Will S.Power/M.Schmid finish top 20?","description":"","keywords":["zurich","classic","new","orleans","s.power","m.schmid","finish","top","20"],"yesPrice":0.35,"noPrice":0.65,"yesBid":0.15,"yesAsk":0.55,"noBid":0.45,"noAsk":0.85,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-spowermschmid-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-PHYO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Phillips/C.Young finish top 20?","description":"","keywords":["zurich","classic","new","orleans","c.phillips","c.young","finish","top","20"],"yesPrice":0.24,"noPrice":0.76,"yesBid":0.04,"yesAsk":0.44,"noBid":0.56,"noAsk":0.96,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-cphillipscyoung-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-PEWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Penge/M.Wallace finish top 20?","description":"","keywords":["zurich","classic","new","orleans","m.penge","m.wallace","finish","top","20"],"yesPrice":0.49,"noPrice":0.51,"yesBid":0.29,"yesAsk":0.69,"noBid":0.31,"noAsk":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-mpengemwallace-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-NYSV","platform":"kalshi","title":"Zurich Classic of New Orleans: Will P.Nyholm/J.Svensson finish top 20?","description":"","keywords":["zurich","classic","new","orleans","p.nyholm","j.svensson","finish","top","20"],"yesPrice":0.31,"noPrice":0.69,"yesBid":0.11,"yesAsk":0.51,"noBid":0.49,"noAsk":0.89,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-pnyholmjsvensson-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-NEOL","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Neergaard-Petersen/J.Olesen finish top 20?","description":"","keywords":["zurich","classic","new","orleans","r.neergaard-petersen","j.olesen","finish","top","20"],"yesPrice":0.32,"noPrice":0.68,"yesBid":0.12,"yesAsk":0.52,"noBid":0.48,"noAsk":0.88,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-rneergaard-petersenjolesen-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-MUSK","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Mullinax/D.Skinns finish top 20?","description":"","keywords":["zurich","classic","new","orleans","t.mullinax","d.skinns","finish","top","20"],"yesPrice":0.23,"noPrice":0.77,"yesBid":0.03,"yesAsk":0.43,"noBid":0.57,"noAsk":0.97,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-tmullinaxdskinns-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-MOPI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Montgomery/S.Piercy finish top 20?","description":"","keywords":["zurich","classic","new","orleans","t.montgomery","s.piercy","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.32,"noBid":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-tmontgomeryspiercy-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-MISN","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Mitchell/B.Snedeker finish top 20?","description":"","keywords":["zurich","classic","new","orleans","k.mitchell","b.snedeker","finish","top","20"],"yesPrice":0.32,"noPrice":0.68,"yesBid":0.12,"yesAsk":0.52,"noBid":0.48,"noAsk":0.88,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-kmitchellbsnedeker-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-MEST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Merritt/R.Streb finish top 20?","description":"","keywords":["zurich","classic","new","orleans","t.merritt","r.streb","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.29,"noBid":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-tmerrittrstreb-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-MCRO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.McGreevy/K.Roy finish top 20?","description":"","keywords":["zurich","classic","new","orleans","m.mcgreevy","k.roy","finish","top","20"],"yesPrice":0.4,"noPrice":0.6,"yesBid":0.2,"yesAsk":0.6,"noBid":0.4,"noAsk":0.8,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-mmcgreevykroy-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-MCME","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.McCarty/M.Meissner finish top 20?","description":"","keywords":["zurich","classic","new","orleans","m.mccarty","m.meissner","finish","top","20"],"yesPrice":0.46,"noPrice":0.54,"yesBid":0.26,"yesAsk":0.66,"noBid":0.34,"noAsk":0.74,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-mmccartymmeissner-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-LORA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Lower/C.Ramey finish top 20?","description":"","keywords":["zurich","classic","new","orleans","j.lower","c.ramey","finish","top","20"],"yesPrice":0.26,"noPrice":0.74,"yesBid":0.06,"yesAsk":0.46,"noBid":0.54,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-jlowercramey-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-LISM","platform":"kalshi","title":"Zurich Classic of New Orleans: Will H.Li/J.Smith finish top 20?","description":"","keywords":["zurich","classic","new","orleans","h.li","j.smith","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesBid":0.3,"yesAsk":0.7,"noBid":0.3,"noAsk":0.7,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-hlijsmith-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-LINO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will L.List/H.Norlander finish top 20?","description":"","keywords":["zurich","classic","new","orleans","l.list","h.norlander","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.36,"noBid":0.64,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-llisthnorlander-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-LASH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Lamprecht/N.Shipley finish top 20?","description":"","keywords":["zurich","classic","new","orleans","c.lamprecht","n.shipley","finish","top","20"],"yesPrice":0.27,"noPrice":0.73,"yesBid":0.07,"yesAsk":0.47,"noBid":0.53,"noAsk":0.93,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-clamprechtnshipley-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-KOLO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Koepka/S.Lowry finish top 20?","description":"","keywords":["zurich","classic","new","orleans","b.koepka","s.lowry","finish","top","20"],"yesPrice":0.56,"noPrice":0.44,"yesBid":0.36,"yesAsk":0.76,"noBid":0.24,"noAsk":0.64,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-bkoepkaslowry-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-KNMA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Knox/P.Malnati finish top 20?","description":"","keywords":["zurich","classic","new","orleans","r.knox","p.malnati","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.32,"noBid":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-rknoxpmalnati-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-KIYU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Kim/K.Yu finish top 20?","description":"","keywords":["zurich","classic","new","orleans","t.kim","k.yu","finish","top","20"],"yesPrice":0.39,"noPrice":0.61,"yesBid":0.19,"yesAsk":0.59,"noBid":0.41,"noAsk":0.81,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-tkimkyu-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-KIPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Kim/R.Palmer finish top 20?","description":"","keywords":["zurich","classic","new","orleans","c.kim","r.palmer","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.32,"noBid":0.68,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-ckimrpalmer-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.788Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-KIKI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Kirk/P.Kizzire finish top 20?","description":"","keywords":["zurich","classic","new","orleans","c.kirk","p.kizzire","finish","top","20"],"yesPrice":0.25,"noPrice":0.75,"yesBid":0.05,"yesAsk":0.45,"noBid":0.55,"noAsk":0.95,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-ckirkpkizzire-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-KAMO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Kanaya/W.Mouw finish top 20?","description":"","keywords":["zurich","classic","new","orleans","t.kanaya","w.mouw","finish","top","20"],"yesPrice":0.33,"noPrice":0.67,"yesBid":0.13,"yesAsk":0.53,"noBid":0.47,"noAsk":0.87,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-tkanayawmouw-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-JASU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will S.Jaeger/J.Suber finish top 20?","description":"","keywords":["zurich","classic","new","orleans","s.jaeger","j.suber","finish","top","20"],"yesPrice":0.3,"noPrice":0.7,"yesBid":0.1,"yesAsk":0.5,"noBid":0.5,"noAsk":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-sjaegerjsuber-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-HUPE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Hughes/T.Pendrith finish top 20?","description":"","keywords":["zurich","classic","new","orleans","m.hughes","t.pendrith","finish","top","20"],"yesPrice":0.41,"noPrice":0.59,"yesBid":0.21,"yesAsk":0.61,"noBid":0.39,"noAsk":0.79,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-mhughestpendrith-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-HOWA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Hoffman/N.Watney finish top 20?","description":"","keywords":["zurich","classic","new","orleans","c.hoffman","n.watney","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.34,"noBid":0.66,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-choffmannwatney-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-HORY","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Hossler/S.Ryder finish top 20?","description":"","keywords":["zurich","classic","new","orleans","b.hossler","s.ryder","finish","top","20"],"yesPrice":0.3,"noPrice":0.7,"yesBid":0.1,"yesAsk":0.5,"noBid":0.5,"noAsk":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-bhosslersryder-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-HOLI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Hoey/D.Lipsky finish top 20?","description":"","keywords":["zurich","classic","new","orleans","r.hoey","d.lipsky","finish","top","20"],"yesPrice":0.36,"noPrice":0.64,"yesBid":0.16,"yesAsk":0.56,"noBid":0.44,"noAsk":0.84,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-rhoeydlipsky-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-HOHO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Hoge/B.Horschel finish top 20?","description":"","keywords":["zurich","classic","new","orleans","t.hoge","b.horschel","finish","top","20"],"yesPrice":0.28,"noPrice":0.72,"yesBid":0.08,"yesAsk":0.48,"noBid":0.52,"noAsk":0.92,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-thogebhorschel-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-HIPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will H.Higgs/J.Paul finish top 20?","description":"","keywords":["zurich","classic","new","orleans","h.higgs","j.paul","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.37,"noBid":0.63,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-hhiggsjpaul-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-HINA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will K.Hirata/K.Nakajima finish top 20?","description":"","keywords":["zurich","classic","new","orleans","k.hirata","k.nakajima","finish","top","20"],"yesPrice":0.21,"noPrice":0.79,"yesBid":0.01,"yesAsk":0.41,"noBid":0.59,"noAsk":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-khirataknakajima-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-HIKU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will G.Higgo/M.Kuchar finish top 20?","description":"","keywords":["zurich","classic","new","orleans","g.higgo","m.kuchar","finish","top","20"],"yesPrice":0.23,"noPrice":0.77,"yesBid":0.03,"yesAsk":0.43,"noBid":0.57,"noAsk":0.97,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-ghiggomkuchar-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-HASV","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Hadwin/A.Svensson finish top 20?","description":"","keywords":["zurich","classic","new","orleans","a.hadwin","a.svensson","finish","top","20"],"yesPrice":0.27,"noPrice":0.73,"yesBid":0.07,"yesAsk":0.47,"noBid":0.53,"noAsk":0.93,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-ahadwinasvensson-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-HAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Hahn/K.Stanley finish top 20?","description":"","keywords":["zurich","classic","new","orleans","j.hahn","k.stanley","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.24,"noBid":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-jhahnkstanley-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-HARI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will N.Hardy/D.Riley finish top 20?","description":"","keywords":["zurich","classic","new","orleans","n.hardy","d.riley","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.37,"noBid":0.63,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-nhardydriley-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-GRNO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Griffin/A.Novak finish top 20?","description":"","keywords":["zurich","classic","new","orleans","b.griffin","a.novak","finish","top","20"],"yesPrice":0.53,"noPrice":0.47,"yesBid":0.33,"yesAsk":0.73,"noBid":0.27,"noAsk":0.67,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-bgriffinanovak-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-GRKO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will L.Griffin/B.Kohles finish top 20?","description":"","keywords":["zurich","classic","new","orleans","l.griffin","b.kohles","finish","top","20"],"yesPrice":0.21,"noPrice":0.79,"yesBid":0.01,"yesAsk":0.41,"noBid":0.59,"noAsk":0.99,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-lgriffinbkohles-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-GOPE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will W.Gordon/P.Peterson finish top 20?","description":"","keywords":["zurich","classic","new","orleans","w.gordon","p.peterson","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.34,"noBid":0.66,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-wgordonppeterson-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-GHKA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Ghim/J.Kang finish top 20?","description":"","keywords":["zurich","classic","new","orleans","d.ghim","j.kang","finish","top","20"],"yesPrice":0.26,"noPrice":0.74,"yesBid":0.06,"yesAsk":0.46,"noBid":0.54,"noAsk":0.94,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-dghimjkang-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-GEYE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Gerard/S.Yellamaraju finish top 20?","description":"","keywords":["zurich","classic","new","orleans","r.gerard","s.yellamaraju","finish","top","20"],"yesPrice":0.56,"noPrice":0.44,"yesBid":0.36,"yesAsk":0.76,"noBid":0.24,"noAsk":0.64,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-rgerardsyellamaraju-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-GAHO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will B.Garnett/L.Hodges finish top 20?","description":"","keywords":["zurich","classic","new","orleans","b.garnett","l.hodges","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.41,"noBid":0.59,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-bgarnettlhodges-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-FIGR","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Finau/M.Greyserman finish top 20?","description":"","keywords":["zurich","classic","new","orleans","t.finau","m.greyserman","finish","top","20"],"yesPrice":0.36,"noPrice":0.64,"yesBid":0.16,"yesAsk":0.56,"noBid":0.44,"noAsk":0.84,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-tfinaumgreyserman-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-FIFI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Fitzpatrick/M.Fitzpatrick finish top 20?","description":"","keywords":["zurich","classic","new","orleans","a.fitzpatrick","m.fitzpatrick","finish","top","20"],"yesPrice":0.61,"noPrice":0.39,"yesBid":0.41,"yesAsk":0.81,"noBid":0.19,"noAsk":0.59,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-afitzpatrickmfitzpatrick-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-EWJA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Ewart/C.Jarvis finish top 20?","description":"","keywords":["zurich","classic","new","orleans","a.ewart","c.jarvis","finish","top","20"],"yesPrice":0.36,"noPrice":0.64,"yesBid":0.16,"yesAsk":0.56,"noBid":0.44,"noAsk":0.84,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-aewartcjarvis-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-ECTH","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Eckroat/D.Thompson finish top 20?","description":"","keywords":["zurich","classic","new","orleans","a.eckroat","d.thompson","finish","top","20"],"yesPrice":0.44,"noPrice":0.56,"yesBid":0.24,"yesAsk":0.64,"noBid":0.36,"noAsk":0.76,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-aeckroatdthompson-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-DUSC","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Duncan/A.Schenk finish top 20?","description":"","keywords":["zurich","classic","new","orleans","t.duncan","a.schenk","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.41,"noBid":0.59,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-tduncanaschenk-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-DUSA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will N.Dunlap/G.Sargent finish top 20?","description":"","keywords":["zurich","classic","new","orleans","n.dunlap","g.sargent","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.39,"noBid":0.61,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-ndunlapgsargent-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-DOWU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will Z.Dou/D.Wu finish top 20?","description":"","keywords":["zurich","classic","new","orleans","z.dou","d.wu","finish","top","20"],"yesPrice":0.32,"noPrice":0.68,"yesBid":0.12,"yesAsk":0.52,"noBid":0.48,"noAsk":0.88,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-zdoudwu-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-DAST","platform":"kalshi","title":"Zurich Classic of New Orleans: Will J.Dahmen/K.Streelman finish top 20?","description":"","keywords":["zurich","classic","new","orleans","j.dahmen","k.streelman","finish","top","20"],"yesPrice":0.24,"noPrice":0.76,"yesBid":0.04,"yesAsk":0.44,"noBid":0.56,"noAsk":0.96,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-jdahmenkstreelman-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-DAOG","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Davis/G.Ogilvy finish top 20?","description":"","keywords":["zurich","classic","new","orleans","c.davis","g.ogilvy","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.29,"noBid":0.71,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-cdavisgogilvy-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-CRMA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will T.Crowe/B.Martin finish top 20?","description":"","keywords":["zurich","classic","new","orleans","t.crowe","b.martin","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.4,"noBid":0.6,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-tcrowebmartin-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-COPA","platform":"kalshi","title":"Zurich Classic of New Orleans: Will M.Couvra/M.Pavon finish top 20?","description":"","keywords":["zurich","classic","new","orleans","m.couvra","m.pavon","finish","top","20"],"yesPrice":0.25,"noPrice":0.75,"yesBid":0.05,"yesAsk":0.45,"noBid":0.55,"noAsk":0.95,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-mcouvrampavon-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-COLE","platform":"kalshi","title":"Zurich Classic of New Orleans: Will E.Cole/H.Lebioda finish top 20?","description":"","keywords":["zurich","classic","new","orleans","e.cole","h.lebioda","finish","top","20"],"yesPrice":0.3,"noPrice":0.7,"yesBid":0.1,"yesAsk":0.5,"noBid":0.5,"noAsk":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-ecolehlebioda-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-CODU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will A.Cook/J.Dufner finish top 20?","description":"","keywords":["zurich","classic","new","orleans","a.cook","j.dufner","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.26,"noBid":0.74,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-acookjdufner-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-CLMO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will W.Clark/T.Moore finish top 20?","description":"","keywords":["zurich","classic","new","orleans","w.clark","t.moore","finish","top","20"],"yesPrice":0.48,"noPrice":0.52,"yesBid":0.28,"yesAsk":0.68,"noBid":0.32,"noAsk":0.72,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-wclarktmoore-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-CHSI","platform":"kalshi","title":"Zurich Classic of New Orleans: Will C.Champ/B.Silverman finish top 20?","description":"","keywords":["zurich","classic","new","orleans","c.champ","b.silverman","finish","top","20"],"yesPrice":0.24,"noPrice":0.76,"yesBid":0.04,"yesAsk":0.44,"noBid":0.56,"noAsk":0.96,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-cchampbsilverman-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-CHDU","platform":"kalshi","title":"Zurich Classic of New Orleans: Will D.Chatfield/A.Dumont De Chassart finish top 20?","description":"","keywords":["zurich","classic","new","orleans","d.chatfield","a.dumont","chassart","finish","top","20"],"yesPrice":0.3,"noPrice":0.7,"yesBid":0.1,"yesAsk":0.5,"noBid":0.5,"noAsk":0.9,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-dchatfieldadumont-de-chassart-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"},{"id":"kalshi-KXPGATOP20-ZUCONO26-CATO","platform":"kalshi","title":"Zurich Classic of New Orleans: Will R.Campos/A.Tosti finish top 20?","description":"","keywords":["zurich","classic","new","orleans","r.campos","a.tosti","finish","top","20"],"yesPrice":0.5,"noPrice":0.5,"yesAsk":0.36,"noBid":0.64,"volume24h":0,"url":"https://kalshi.com/markets/kxpgatop20/zurich-classic-of-new-orleans-will-rcamposatosti-finish-top-20/kxpgatop20-zucono26","category":"other","lastUpdated":"2026-04-20T19:49:46.789Z","endDate":"2026-05-24T04:00:00Z"}] \ No newline at end of file diff --git a/scripts/matcher-eval/fixtures/tweets.json b/scripts/matcher-eval/fixtures/tweets.json new file mode 100644 index 0000000..a699186 --- /dev/null +++ b/scripts/matcher-eval/fixtures/tweets.json @@ -0,0 +1,32 @@ +[ + { "id": "t01", "text": "BREAKING: The Fed just confirmed a 25 bps rate cut after the FOMC meeting.", "expectedCategories": ["economics"] }, + { "id": "t02", "text": "Jerome Powell signals additional rate cuts coming later this year.", "expectedCategories": ["economics"] }, + { "id": "t03", "text": "CPI came in hotter than expected — inflation is sticky.", "expectedCategories": ["economics"] }, + { "id": "t04", "text": "Nonfarm payrolls miss by 120k, unemployment ticking up.", "expectedCategories": ["economics"] }, + { "id": "t05", "text": "Bitcoin just smashed through $100,000 — to the moon 🚀", "expectedCategories": ["crypto"] }, + { "id": "t06", "text": "Ethereum ETF approval looks imminent, ETH pumping hard.", "expectedCategories": ["crypto"] }, + { "id": "t07", "text": "Solana breaking out past $250, altcoin season?", "expectedCategories": ["crypto"] }, + { "id": "t08", "text": "Dogecoin price prediction for end of year?", "expectedCategories": ["crypto"] }, + { "id": "t09", "text": "Trump leading the polls in Pennsylvania and Michigan.", "expectedCategories": ["us_politics"] }, + { "id": "t10", "text": "Biden announces he will not seek re-election, endorses VP Harris.", "expectedCategories": ["us_politics"] }, + { "id": "t11", "text": "Supreme Court rules on presidential immunity case.", "expectedCategories": ["us_politics"] }, + { "id": "t12", "text": "Senate passes the continuing resolution, government shutdown averted.", "expectedCategories": ["us_politics"] }, + { "id": "t13", "text": "Celtics dominate the Lakers in overtime, Tatum drops 40.", "expectedCategories": ["sports"] }, + { "id": "t14", "text": "Chiefs advance to the Super Bowl after clutch Mahomes drive.", "expectedCategories": ["sports"] }, + { "id": "t15", "text": "Real Madrid beat Barcelona 3-1 in El Clasico.", "expectedCategories": ["sports"] }, + { "id": "t16", "text": "Israel and Hezbollah announce a ceasefire deal.", "expectedCategories": ["geopolitics"] }, + { "id": "t17", "text": "Ukraine strikes Russian oil depot in Volgograd, explosions reported.", "expectedCategories": ["geopolitics"] }, + { "id": "t18", "text": "OpenAI releases GPT-5, benchmark scores eye-popping.", "expectedCategories": ["technology"] }, + { "id": "t19", "text": "Tesla delivery numbers came in above estimates this quarter.", "expectedCategories": ["technology", "economics"] }, + { "id": "t20", "text": "Hurricane forecast suggests it may make landfall in Florida.", "expectedCategories": ["climate"] }, + { "id": "t21", "text": "Just had the best coffee of my life at this little shop downtown.", "expectedCategories": [] }, + { "id": "t22", "text": "Going to the gym then prepping dinner. Simple Sunday.", "expectedCategories": [] }, + { "id": "t23", "text": "Anyone else losing sleep over the news cycle lately?", "expectedCategories": [] }, + { "id": "t24", "text": "Fed Chair Powell hints at policy pivot, markets rallying on the news.", "expectedCategories": ["economics", "crypto"] }, + { "id": "t25", "text": "GOP loses House majority after special election flip.", "expectedCategories": ["us_politics"] }, + { "id": "t26", "text": "Apple's quarterly earnings beat expectations, iPhone sales strong.", "expectedCategories": ["technology", "economics"] }, + { "id": "t27", "text": "BTC dumping after the CPI print, bearish signal?", "expectedCategories": ["crypto", "economics"] }, + { "id": "t28", "text": "Man City wins the Premier League for the fourth year in a row.", "expectedCategories": ["sports"] }, + { "id": "t29", "text": "Recession fears growing as yield curve inverts again.", "expectedCategories": ["economics"] }, + { "id": "t30", "text": "Taiwan Strait tensions escalating after Chinese naval exercises.", "expectedCategories": ["geopolitics"] } +] diff --git a/scripts/matcher-eval/run-eval.ts b/scripts/matcher-eval/run-eval.ts new file mode 100644 index 0000000..db8538c --- /dev/null +++ b/scripts/matcher-eval/run-eval.ts @@ -0,0 +1,183 @@ +/** + * Matcher evaluation harness. + * + * Runs the KeywordMatcher against a fixed snapshot of real Polymarket + + * Kalshi markets and a fixed set of annotated tweets, with and without the + * post-match quality gate, and reports deterministic junk-rate metrics. + * + * Reproducibility: + * npx tsx scripts/matcher-eval/snapshot-markets.ts # regenerate snapshot + * npx tsx scripts/matcher-eval/run-eval.ts # run eval + * + * Metrics (lower is better for the first three): + * junk_rate fraction of matches flagged junk by at least one rule + * cross_domain_rate fraction of matches in a category unrelated to tweet + * thin_market_rate fraction of matches with 24h volume < $5k + * extreme_price_rate fraction of matches priced <2% or >98% + * matches_per_tweet average surfaced matches (recall proxy) + * + * Treating volume/category/price labels as ground truth is a + * deterministic proxy for "would a bot actually want to trade this?" + * It's not perfect, but it's reproducible, not subject to annotator + * bias, and aligned with what the downstream trading math cares about. + */ + +import { readFileSync } from 'node:fs'; +import { resolve } from 'node:path'; +import { Market, MarketMatch } from '../../src/types/market'; +import { KeywordMatcher } from '../../src/analysis/keyword-matcher'; + +interface TweetFixture { + id: string; + text: string; + expectedCategories: string[]; +} + +interface EvalMetrics { + totalTweets: number; + totalMatches: number; + matchesPerTweet: number; + junkRate: number; + crossDomainRate: number; + thinMarketRate: number; + extremePriceRate: number; + weakSignalRate: number; + // Raw counts + junkCount: number; + crossDomainCount: number; + thinMarketCount: number; + extremePriceCount: number; + weakSignalCount: number; +} + +const THIN_VOLUME_FLOOR = 5_000; +const EXTREME_BAND = 0.02; +const STRONG_CONFIDENCE = 0.55; + +function loadMarkets(): Market[] { + const path = resolve('scripts/matcher-eval/fixtures/markets.snapshot.json'); + return JSON.parse(readFileSync(path, 'utf8')) as Market[]; +} + +function loadTweets(): TweetFixture[] { + const path = resolve('scripts/matcher-eval/fixtures/tweets.json'); + return JSON.parse(readFileSync(path, 'utf8')) as TweetFixture[]; +} + +function isThin(m: MarketMatch): boolean { + const v = Number(m.market.volume24h); + return !Number.isFinite(v) || v < THIN_VOLUME_FLOOR; +} + +function isExtremePrice(m: MarketMatch): boolean { + const yes = Number(m.market.yesPrice); + if (!Number.isFinite(yes)) return false; + return yes < EXTREME_BAND || yes > 1 - EXTREME_BAND; +} + +function isCrossDomain(m: MarketMatch, expected: string[]): boolean { + if (expected.length === 0) return false; // tweet has no category claim + return !expected.includes(m.market.category); +} + +function isWeakSignal(m: MarketMatch): boolean { + if (m.confidence >= STRONG_CONFIDENCE) return false; + return !m.matchedKeywords.some(k => k.includes(' ')); +} + +function evaluate( + tweets: TweetFixture[], + markets: Market[], + qualityGateEnabled: boolean, +): EvalMetrics { + const matcher = new KeywordMatcher(markets, 0.22, 5, qualityGateEnabled ? {} : false); + let totalMatches = 0; + let junkCount = 0; + let crossDomainCount = 0; + let thinMarketCount = 0; + let extremePriceCount = 0; + let weakSignalCount = 0; + + for (const tw of tweets) { + const matches = matcher.match(tw.text); + for (const m of matches) { + totalMatches++; + const thin = isThin(m); + const extreme = isExtremePrice(m); + const cross = isCrossDomain(m, tw.expectedCategories); + const weak = isWeakSignal(m); + if (thin) thinMarketCount++; + if (extreme) extremePriceCount++; + if (cross) crossDomainCount++; + if (weak) weakSignalCount++; + if (thin || extreme || cross || weak) junkCount++; + } + } + + const n = Math.max(1, totalMatches); + return { + totalTweets: tweets.length, + totalMatches, + matchesPerTweet: totalMatches / tweets.length, + junkRate: junkCount / n, + crossDomainRate: crossDomainCount / n, + thinMarketRate: thinMarketCount / n, + extremePriceRate: extremePriceCount / n, + weakSignalRate: weakSignalCount / n, + junkCount, + crossDomainCount, + thinMarketCount, + extremePriceCount, + weakSignalCount, + }; +} + +function pct(x: number): string { + return `${(x * 100).toFixed(1)}%`; +} + +function rowCompare(label: string, before: number, after: number, isRate = true): string { + const b = isRate ? pct(before) : before.toFixed(2); + const a = isRate ? pct(after) : after.toFixed(2); + const delta = isRate + ? `${(after - before >= 0 ? '+' : '')}${((after - before) * 100).toFixed(1)}pp` + : `${(after - before >= 0 ? '+' : '')}${(after - before).toFixed(2)}`; + return `| ${label.padEnd(32)} | ${b.padStart(8)} | ${a.padStart(8)} | ${delta.padStart(9)} |`; +} + +function main(): void { + const markets = loadMarkets(); + const tweets = loadTweets(); + console.log( + `[eval] corpus: ${tweets.length} tweets × ${markets.length} markets ` + + `(${markets.filter(m => m.platform === 'polymarket').length} Polymarket + ` + + `${markets.filter(m => m.platform === 'kalshi').length} Kalshi)\n`, + ); + + const before = evaluate(tweets, markets, false); // baseline: gate disabled + const after = evaluate(tweets, markets, true); // gated: default options + + const sep = '|----------------------------------|----------|----------|-----------|'; + console.log('| metric | before | after | delta |'); + console.log(sep); + console.log(rowCompare('total matches surfaced', before.totalMatches, after.totalMatches, false)); + console.log(rowCompare('matches per tweet', before.matchesPerTweet, after.matchesPerTweet, false)); + console.log(rowCompare('junk rate (any rule)', before.junkRate, after.junkRate)); + console.log(rowCompare('thin-market rate (<$5k)', before.thinMarketRate, after.thinMarketRate)); + console.log(rowCompare('extreme-price rate (<2%/>98%)', before.extremePriceRate, after.extremePriceRate)); + console.log(rowCompare('cross-domain rate', before.crossDomainRate, after.crossDomainRate)); + console.log(rowCompare('weak-signal rate', before.weakSignalRate, after.weakSignalRate)); + console.log(sep); + + console.log('\nraw counts:'); + console.log(` before → total=${before.totalMatches} junk=${before.junkCount} (thin=${before.thinMarketCount} ext=${before.extremePriceCount} cross=${before.crossDomainCount} weak=${before.weakSignalCount})`); + console.log(` after → total=${after.totalMatches} junk=${after.junkCount} (thin=${after.thinMarketCount} ext=${after.extremePriceCount} cross=${after.crossDomainCount} weak=${after.weakSignalCount})`); + + // Write a machine-readable JSON too, for CI or PR-body automation. + const outPath = resolve('scripts/matcher-eval/fixtures/eval-result.json'); + const payload = { before, after, generatedAt: new Date().toISOString() }; + require('node:fs').writeFileSync(outPath, JSON.stringify(payload, null, 2)); + console.log(`\n[eval] wrote machine-readable result to ${outPath}`); +} + +main(); diff --git a/scripts/matcher-eval/snapshot-markets.ts b/scripts/matcher-eval/snapshot-markets.ts new file mode 100644 index 0000000..8b4fede --- /dev/null +++ b/scripts/matcher-eval/snapshot-markets.ts @@ -0,0 +1,28 @@ +/** + * Fetch markets from the Polymarket + Kalshi clients and persist them to + * `fixtures/markets.snapshot.json` so the matcher eval is reproducible + * without needing a live network call on every run. + * + * npx tsx scripts/matcher-eval/snapshot-markets.ts + */ +import { writeFileSync } from 'node:fs'; +import { resolve } from 'node:path'; +import { fetchPolymarkets } from '../../src/api/polymarket-client'; +import { fetchKalshiMarkets } from '../../src/api/kalshi-client'; + +async function main(): Promise { + console.log('[snapshot] fetching Polymarket + Kalshi markets...'); + const [poly, kalshi] = await Promise.all([ + fetchPolymarkets(1200, 10), + fetchKalshiMarkets(1000, 10), + ]); + const all = [...poly, ...kalshi]; + const out = resolve('scripts/matcher-eval/fixtures/markets.snapshot.json'); + writeFileSync(out, JSON.stringify(all, null, 0)); + console.log(`[snapshot] wrote ${all.length} markets (${poly.length} Polymarket + ${kalshi.length} Kalshi) to ${out}`); +} + +main().catch(err => { + console.error(err); + process.exit(1); +}); diff --git a/src/analysis/keyword-matcher.ts b/src/analysis/keyword-matcher.ts index d2da844..93163e8 100644 --- a/src/analysis/keyword-matcher.ts +++ b/src/analysis/keyword-matcher.ts @@ -3,6 +3,7 @@ import { Market, MarketMatch } from '../types/market'; import { extractEntities, isEntity, ExtractedEntities } from './entity-extractor'; +import { applyQualityGate, QualityGateOptions } from './match-quality'; // ─── Stop words ────────────────────────────────────────────────────────────── @@ -1025,15 +1026,27 @@ export class KeywordMatcher { private markets: Market[]; private minConfidence: number; private maxResults: number; + private qualityGate: QualityGateOptions | false; + /** + * @param markets Pool of markets to match against + * @param minConfidence Confidence floor for candidate matches (pre-gate) + * @param maxResults Upper bound on returned matches + * @param qualityGate Post-match quality gate options; pass `false` to + * disable entirely (useful for evaluation / + * backwards-compat tests). Default: on with + * `applyQualityGate` defaults. + */ constructor( markets: Market[] = [], minConfidence: number = 0.22, // Raised from 0.12 to reduce false positives - maxResults: number = 5 + maxResults: number = 5, + qualityGate: QualityGateOptions | false = {} ) { this.markets = markets; this.minConfidence = minConfidence; this.maxResults = maxResults; + this.qualityGate = qualityGate; } /** @@ -1065,7 +1078,15 @@ export class KeywordMatcher { } matches.sort((a, b) => b.confidence - a.confidence); - return matches.slice(0, this.maxResults); + + // Post-filter: drop low-liquidity, extreme-priced, or weak-signal + // candidates before truncating to `maxResults`. Keeps the top-K slots + // filled with actually-tradable markets instead of junk. + const filtered = this.qualityGate === false + ? matches + : applyQualityGate(matches, this.qualityGate).kept; + + return filtered.slice(0, this.maxResults); } /** diff --git a/src/analysis/match-quality.ts b/src/analysis/match-quality.ts new file mode 100644 index 0000000..97f3bbe --- /dev/null +++ b/src/analysis/match-quality.ts @@ -0,0 +1,126 @@ +/** + * Post-match quality gate. + * + * The keyword-matcher produces *candidate* matches: markets whose keyword + * overlap clears a minimum confidence threshold. Many of those candidates + * are still junk — generally for one of four reasons: + * + * 1. Liquidity: the market has ~$0 of 24h volume, so even a "correct" + * signal can't be executed. Trading bots shouldn't even see it. + * 2. Extreme-price: markets resolved near 0¢ or 100¢ are effectively + * already decided; sentiment-shift signals against them never clear + * fees and are dominated by adverse selection. + * 3. Single-token broad hits: matching on a generic token like "win" or + * "breaks" pulls in unrelated markets (classic: a Fed-rate-cut tweet + * matching an NBA penny market on the word "win"). + * 4. Broken category signal: when a tweet is clearly about one domain + * but the top match is cross-domain, confidence alone isn't enough. + * + * This module adds a deterministic gate that drops candidates failing any + * of the first three checks. It is designed to be cheap (O(n) over the + * match list), backwards-compatible (keep the top candidates at the top, + * never reorder surviving matches), and tunable via options. + */ + +import { Market, MarketMatch } from '../types/market'; + +export interface QualityGateOptions { + /** + * Minimum 24h market volume (in dollars) to allow. Markets thinner + * than this can't be traded in size — see the liquidity-aware + * arbitrage sizing for context. Default $5,000. + */ + minVolume?: number; + /** + * Drop markets priced in the extreme tails (price < extremeBand or + * price > 1 - extremeBand) *unless* the candidate confidence is very + * strong. Default 0.02 (markets at <2% or >98%). + */ + extremeBand?: number; + /** + * Confidence threshold above which a match bypasses the "requires a + * strong signal" gate. Default 0.55. + */ + strongConfidence?: number; + /** + * If true (default), require at least one of: + * • a multi-word phrase match (`matchedKeywords` contains a space) + * • confidence ≥ `strongConfidence` + * Rationale: bigram/trigram matches are inherently specific; broad + * unigram hits need a much stronger aggregate signal to survive. + */ + requireStrongSignal?: boolean; +} + +export interface GateResult { + /** Candidates that survived every check. */ + kept: MarketMatch[]; + /** Per-reason drop counts, for telemetry. */ + dropped: { + lowVolume: number; + extremePrice: number; + weakSignal: number; + }; +} + +const DEFAULTS: Required = { + minVolume: 5_000, + extremeBand: 0.02, + strongConfidence: 0.55, + requireStrongSignal: true, +}; + +export function applyQualityGate( + matches: MarketMatch[], + opts: QualityGateOptions = {}, +): GateResult { + const cfg = { ...DEFAULTS, ...opts }; + const kept: MarketMatch[] = []; + const dropped = { lowVolume: 0, extremePrice: 0, weakSignal: 0 }; + + for (const m of matches) { + if (!passesVolume(m.market, cfg)) { + dropped.lowVolume++; + continue; + } + if (!passesExtremePrice(m, cfg)) { + dropped.extremePrice++; + continue; + } + if (cfg.requireStrongSignal && !passesStrongSignal(m, cfg)) { + dropped.weakSignal++; + continue; + } + kept.push(m); + } + + return { kept, dropped }; +} + +function passesVolume(market: Market, cfg: Required): boolean { + const v = Number(market.volume24h); + if (!Number.isFinite(v)) return false; + return v >= cfg.minVolume; +} + +function passesExtremePrice(m: MarketMatch, cfg: Required): boolean { + const yes = Number(m.market.yesPrice); + if (!Number.isFinite(yes)) return true; // no price info → allow, don't punish + const extreme = yes < cfg.extremeBand || yes > 1 - cfg.extremeBand; + if (!extreme) return true; + // Even at strong confidence, extreme-priced markets have near-zero + // expected value after fees. We only let them through on the very + // narrow case of a multi-word phrase match AND very high confidence. + const hasPhrase = m.matchedKeywords.some(k => k.includes(' ')); + return hasPhrase && m.confidence >= cfg.strongConfidence + 0.2; +} + +function passesStrongSignal(m: MarketMatch, cfg: Required): boolean { + // Accept if either: + // • a multi-word phrase matched (high specificity by construction), OR + // • confidence is already strong, AND there are at least 2 matched + // keywords (single strong unigrams alone are still noisy). + const hasPhrase = m.matchedKeywords.some(k => k.includes(' ')); + if (hasPhrase) return true; + return m.confidence >= cfg.strongConfidence && m.matchedKeywords.length >= 2; +} From 9e8a8e42f3c4c2011dc65364ad947ebc1bc55127 Mon Sep 17 00:00:00 2001 From: john_wang Date: Mon, 20 Apr 2026 15:02:26 -0500 Subject: [PATCH 08/14] infra: stale-while-revalidate cache and per-IP rate limiting Changes to api/lib/market-cache.ts: - in-flight request deduplication so concurrent callers during a cache miss share a single fetch promise instead of each making their own Polymarket/Kalshi roundtrip - stale-while-revalidate up to MARKET_CACHE_SWR_SECONDS (default 60s) past the 20s TTL; stale is returned immediately while a single background refresh runs - refresh no longer overwrites the cache with two empty arrays on a full-platform outage; last-known-good is retained New api/lib/rate-limit.ts: sliding-window per-IP counter backed by Vercel KV with an in-process Map fallback. Writes X-RateLimit-Limit / -Remaining / -Reset headers on every response, returns 429 with Retry-After once the bucket is exhausted, and fails open if KV is unavailable. Wired into analyze-text, markets/arbitrage, ground-probability, position-sizing, and risk-assessment with per-endpoint budgets. Verified directly: 40 bursted requests from one IP at a 30-rpm cap produced 30 allowed + 10 denied; a different IP got a fresh 30-req budget in the same window. --- api/analyze-text.ts | 6 ++ api/ground-probability.ts | 5 ++ api/lib/market-cache.ts | 166 ++++++++++++++++++++++++++------------ api/lib/rate-limit.ts | 165 +++++++++++++++++++++++++++++++++++++ api/markets/arbitrage.ts | 6 ++ api/position-sizing.ts | 5 ++ api/risk-assessment.ts | 5 ++ 7 files changed, 306 insertions(+), 52 deletions(-) create mode 100644 api/lib/rate-limit.ts diff --git a/api/analyze-text.ts b/api/analyze-text.ts index 6665734..53eb6e9 100644 --- a/api/analyze-text.ts +++ b/api/analyze-text.ts @@ -2,6 +2,7 @@ import type { VercelRequest, VercelResponse } from '@vercel/node'; import { KeywordMatcher } from '../src/analysis/keyword-matcher'; import { generateSignal, TradingSignal } from '../src/analysis/signal-generator'; import { getMarkets, getArbitrage, getMarketMetadata } from './lib/market-cache'; +import { enforceRateLimit } from './lib/rate-limit'; function isMalformedJsonError(error: unknown): boolean { if (!(error instanceof Error)) { @@ -48,6 +49,11 @@ export default async function handler( return; } + // Rate-limit: 60 rpm/IP. Fails open if KV is down. + if (await enforceRateLimit(req, res, { bucket: 'analyze-text', maxRequests: 60, windowSeconds: 60 })) { + return; + } + const startTime = Date.now(); try { diff --git a/api/ground-probability.ts b/api/ground-probability.ts index dc2933f..b075fc2 100644 --- a/api/ground-probability.ts +++ b/api/ground-probability.ts @@ -2,6 +2,7 @@ import type { VercelRequest, VercelResponse } from '@vercel/node'; import { KeywordMatcher } from '../src/analysis/keyword-matcher'; import { getMarkets, getMarketMetadata } from './lib/market-cache'; import { Market, MarketMatch } from '../src/types/market'; +import { enforceRateLimit } from './lib/rate-limit'; /** * Ground Probability Endpoint @@ -166,6 +167,10 @@ export default async function handler( return; } + if (await enforceRateLimit(req, res, { bucket: 'ground-probability', maxRequests: 60, windowSeconds: 60 })) { + return; + } + const startTime = Date.now(); try { diff --git a/api/lib/market-cache.ts b/api/lib/market-cache.ts index 8b41d67..33e6ac5 100644 --- a/api/lib/market-cache.ts +++ b/api/lib/market-cache.ts @@ -16,6 +16,19 @@ let cachedMarkets: Market[] = []; let cacheTimestamp = 0; const CACHE_TTL_MS = (parseInt(process.env.MARKET_CACHE_TTL_SECONDS || '20', 10)) * 1000; +// ─── Stale-while-revalidate ─────────────────────────────────────────────── +// Beyond the hard TTL we will still *serve* stale data for up to +// `STALE_WHILE_REVALIDATE_MS` milliseconds while kicking off a single +// background refresh. This keeps p50 latency near the in-memory cost even +// right at the TTL boundary, and prevents thundering-herd on expiry. +const STALE_WHILE_REVALIDATE_MS = + (parseInt(process.env.MARKET_CACHE_SWR_SECONDS || '60', 10)) * 1000; + +// In-flight request deduplication. If multiple concurrent callers arrive +// during a cache miss, they all await the same promise instead of each +// triggering their own Polymarket/Kalshi fetch. +let inFlightFetch: Promise | null = null; + // Stage 0: Per-source tracking for freshness metadata let polyTimestamp = 0; let kalshiTimestamp = 0; @@ -69,70 +82,119 @@ function withTimeout( } /** - * Fetch and cache markets from both platforms - * Shared across all API endpoints to avoid duplicate fetches - * Stage 0: Tracks per-source timestamps and errors for freshness metadata + * Fetch and cache markets from both platforms. + * + * Caching strategy (in order of preference per request): + * 1. **Hot cache** — within `CACHE_TTL_MS`, return cached data instantly. + * 2. **Stale-while-revalidate** — if cache age is beyond TTL but inside + * `STALE_WHILE_REVALIDATE_MS`, return stale data immediately AND + * kick off a single background refresh so the next caller gets + * fresh data. Keeps p50 latency near the in-memory cost even at + * TTL expiry. + * 3. **In-flight deduplication** — when multiple concurrent callers + * arrive during a hard miss, they all await the same promise + * instead of each triggering their own Polymarket/Kalshi fetch. + * 4. **Graceful degradation** — on fetch failure we return whatever + * is still in memory rather than propagating the error. */ export async function getMarkets(): Promise { const now = Date.now(); + const ageMs = now - cacheTimestamp; - // Return cached if fresh - if (cachedMarkets.length > 0 && (now - cacheTimestamp) < CACHE_TTL_MS) { - console.log(`[Market Cache] Using cached ${cachedMarkets.length} markets (TTL: ${CACHE_TTL_MS}ms, age: ${now - cacheTimestamp}ms)`); + // 1. Hot cache: within TTL → return immediately. + if (cachedMarkets.length > 0 && ageMs < CACHE_TTL_MS) { + console.log(`[Market Cache] hot hit: ${cachedMarkets.length} markets (age: ${ageMs}ms, TTL: ${CACHE_TTL_MS}ms)`); return cachedMarkets; } - // Fetch fresh markets - console.log(`[Market Cache] Fetching fresh markets... (TTL: ${CACHE_TTL_MS}ms)`); - - try { - // Stage 0 Session 2: Wrap each source with 5-second timeout - const [polyResult, kalshiResult] = await Promise.allSettled([ - withTimeout( - fetchPolymarkets(POLYMARKET_TARGET_COUNT, POLYMARKET_MAX_PAGES), - SOURCE_TIMEOUT_MS, - 'Polymarket' - ), - withTimeout( - fetchKalshiMarkets(KALSHI_TARGET_COUNT, KALSHI_MAX_PAGES), - SOURCE_TIMEOUT_MS, - 'Kalshi' - ), - ]); - - // Stage 0: Track Polymarket fetch - if (polyResult.status === 'fulfilled') { - polyTimestamp = now; - polyMarketCount = polyResult.value.length; - polyError = null; - } else { - polyError = polyResult.reason?.message || 'Failed to fetch Polymarket markets'; - console.error('[Market Cache] Polymarket fetch failed:', polyError); + // 2. Stale-while-revalidate: beyond TTL but inside SWR window → serve + // stale immediately, background-refresh on fire-and-forget basis. + if ( + cachedMarkets.length > 0 && + ageMs < CACHE_TTL_MS + STALE_WHILE_REVALIDATE_MS + ) { + if (!inFlightFetch) { + console.log(`[Market Cache] SWR hit: age ${ageMs}ms, kicking off background refresh`); + // We don't await this — the caller gets stale data, the next caller + // gets the refreshed data. `inFlightFetch` is cleared in the finally. + void refreshMarkets(); } + return cachedMarkets; + } - // Stage 0: Track Kalshi fetch - if (kalshiResult.status === 'fulfilled') { - kalshiTimestamp = now; - kalshiMarketCount = kalshiResult.value.length; - kalshiError = null; - } else { - kalshiError = kalshiResult.reason?.message || 'Failed to fetch Kalshi markets'; - console.error('[Market Cache] Kalshi fetch failed:', kalshiError); - } + // 3. Hard miss — dedupe concurrent callers onto a single in-flight fetch. + if (inFlightFetch) { + console.log('[Market Cache] hard miss but dedupe hit: awaiting in-flight fetch'); + return inFlightFetch; + } + + console.log(`[Market Cache] hard miss: fetching fresh markets (TTL: ${CACHE_TTL_MS}ms, age: ${ageMs}ms)`); + return refreshMarkets(); +} + +/** + * Refresh the cache. Single-flight: concurrent callers share one promise + * via the `inFlightFetch` guard. On any failure we fall back to the last + * known good cache; this path should never throw. + */ +function refreshMarkets(): Promise { + if (inFlightFetch) return inFlightFetch; - const polyMarkets = polyResult.status === 'fulfilled' ? polyResult.value : []; - const kalshiMarkets = kalshiResult.status === 'fulfilled' ? kalshiResult.value : []; + inFlightFetch = (async () => { + const now = Date.now(); + try { + const [polyResult, kalshiResult] = await Promise.allSettled([ + withTimeout( + fetchPolymarkets(POLYMARKET_TARGET_COUNT, POLYMARKET_MAX_PAGES), + SOURCE_TIMEOUT_MS, + 'Polymarket' + ), + withTimeout( + fetchKalshiMarkets(KALSHI_TARGET_COUNT, KALSHI_MAX_PAGES), + SOURCE_TIMEOUT_MS, + 'Kalshi' + ), + ]); - cachedMarkets = [...polyMarkets, ...kalshiMarkets]; - cacheTimestamp = now; + if (polyResult.status === 'fulfilled') { + polyTimestamp = now; + polyMarketCount = polyResult.value.length; + polyError = null; + } else { + polyError = polyResult.reason?.message || 'Failed to fetch Polymarket markets'; + console.error('[Market Cache] Polymarket fetch failed:', polyError); + } - console.log(`[Market Cache] Cached ${cachedMarkets.length} markets (${polyMarkets.length} Poly + ${kalshiMarkets.length} Kalshi)`); - return cachedMarkets; - } catch (error) { - console.error('[Market Cache] Failed to fetch markets:', error); - // Return stale cache if available - return cachedMarkets; - } + if (kalshiResult.status === 'fulfilled') { + kalshiTimestamp = now; + kalshiMarketCount = kalshiResult.value.length; + kalshiError = null; + } else { + kalshiError = kalshiResult.reason?.message || 'Failed to fetch Kalshi markets'; + console.error('[Market Cache] Kalshi fetch failed:', kalshiError); + } + + const polyMarkets = polyResult.status === 'fulfilled' ? polyResult.value : []; + const kalshiMarkets = kalshiResult.status === 'fulfilled' ? kalshiResult.value : []; + + // Only overwrite the cache if we actually got *something* — don't + // clobber the last known good snapshot with two empties. + if (polyMarkets.length + kalshiMarkets.length > 0) { + cachedMarkets = [...polyMarkets, ...kalshiMarkets]; + cacheTimestamp = now; + } + + console.log(`[Market Cache] refresh done: ${cachedMarkets.length} markets (${polyMarkets.length} Poly + ${kalshiMarkets.length} Kalshi)`); + return cachedMarkets; + } catch (error) { + console.error('[Market Cache] refresh failed, returning last known good cache:', error); + return cachedMarkets; + } finally { + inFlightFetch = null; + } + })(); + + return inFlightFetch; } /** diff --git a/api/lib/rate-limit.ts b/api/lib/rate-limit.ts new file mode 100644 index 0000000..4680801 --- /dev/null +++ b/api/lib/rate-limit.ts @@ -0,0 +1,165 @@ +/** + * Sliding-window per-IP rate limiter backed by Vercel KV (Upstash Redis). + * + * Design goals: + * • O(1) per check — uses a single INCR + EXPIRE, no list walking. + * • Fail-open — if KV is unavailable we ALLOW the request rather than + * block legitimate traffic. Rate limiting is a secondary safeguard; + * availability matters more. + * • Zero coupling — endpoints call `enforceRateLimit(req, res, …)`; + * if the function writes a 429 response it returns `true` and the + * caller bails out; otherwise the endpoint proceeds. + * + * Default limits (overridable via env or per-endpoint call): + * • 60 requests per rolling 60-second window per IP + * + * Security note: `X-Forwarded-For` can be spoofed if the API isn't + * behind a trusted proxy. Vercel's edge network rewrites this header + * to the client's real IP, so we trust it here. If you self-host, + * replace `getClientIp` with a trusted-proxy-aware version. + */ + +import type { VercelRequest, VercelResponse } from '@vercel/node'; +import { kv } from './vercel-kv'; + +// In-process fallback counter, used when KV is unavailable (local dev +// without Upstash credentials, transient network errors, etc.). Keyed +// identically to the KV path so behavior is consistent. +const inProcessCounters = new Map(); +function pruneCounters(): void { + const now = Date.now(); + for (const [k, v] of inProcessCounters.entries()) { + if (v.expiresAt <= now) inProcessCounters.delete(k); + } +} + +const DEFAULT_WINDOW_SECONDS = parseInt(process.env.RATE_LIMIT_WINDOW_SECONDS || '60', 10); +const DEFAULT_MAX_REQUESTS = parseInt(process.env.RATE_LIMIT_MAX_REQUESTS || '60', 10); + +export interface RateLimitOptions { + /** Window length in seconds. Default 60. */ + windowSeconds?: number; + /** Max requests allowed per window per IP. Default 60. */ + maxRequests?: number; + /** + * Bucket identifier. Lets you apply per-endpoint limits (e.g. the + * analyze-text endpoint can tolerate more burst than the expensive + * arbitrage scan). Defaults to the request path. + */ + bucket?: string; +} + +export interface RateLimitResult { + allowed: boolean; + remaining: number; + limit: number; + resetSeconds: number; + source: 'kv' | 'disabled' | 'error'; +} + +function getClientIp(req: VercelRequest): string { + const xff = req.headers['x-forwarded-for']; + if (typeof xff === 'string' && xff.length > 0) { + return xff.split(',')[0]!.trim(); + } + if (Array.isArray(xff) && xff.length > 0) { + return xff[0]!.split(',')[0]!.trim(); + } + const realIp = req.headers['x-real-ip']; + if (typeof realIp === 'string' && realIp.length > 0) return realIp; + const sock = (req as unknown as { socket?: { remoteAddress?: string } }).socket; + return sock?.remoteAddress || 'unknown'; +} + +/** + * Check the rate-limit bucket for this request. Returns structured info; + * does NOT write to the response. Use `enforceRateLimit` to combine the + * check with a 429 response. + */ +export async function checkRateLimit( + req: VercelRequest, + opts: RateLimitOptions = {}, +): Promise { + const windowSeconds = Math.max(1, opts.windowSeconds ?? DEFAULT_WINDOW_SECONDS); + const maxRequests = Math.max(1, opts.maxRequests ?? DEFAULT_MAX_REQUESTS); + const bucket = opts.bucket ?? (typeof req.url === 'string' ? req.url.split('?')[0] : 'default'); + const ip = getClientIp(req); + const windowId = Math.floor(Date.now() / 1000 / windowSeconds); + const key = `rl:${bucket}:${ip}:${windowId}`; + + // Fast local path for when KV is not wired. Also protects the main + // path from KV latency if the store is slow: a stale +1 there is fine + // (we're within the 60-req window anyway). + const localCount = bumpLocalCounter(key, windowSeconds); + + try { + // Read-modify-write against KV. Two round-trips but O(1) each, and + // the worst-case race just lets one extra request through per + // concurrent pair — which is acceptable for rate limiting. + const current = (await kv.get(key)) ?? 0; + const next = current + 1; + await kv.set(key, next, { ex: windowSeconds * 2 }); + const count = Math.max(next, localCount); + const allowed = count <= maxRequests; + return { + allowed, + remaining: Math.max(0, maxRequests - count), + limit: maxRequests, + resetSeconds: windowSeconds - (Math.floor(Date.now() / 1000) % windowSeconds), + source: 'kv', + }; + } catch (err) { + // Fail open, but still enforce the in-process counter so a single + // serverless instance under flood gets protected. + console.warn('[rate-limit] KV unavailable, using in-process only:', err instanceof Error ? err.message : err); + const allowed = localCount <= maxRequests; + return { + allowed, + remaining: Math.max(0, maxRequests - localCount), + limit: maxRequests, + resetSeconds: windowSeconds, + source: 'error', + }; + } +} + +function bumpLocalCounter(key: string, windowSeconds: number): number { + pruneCounters(); + const now = Date.now(); + const prev = inProcessCounters.get(key); + const nextCount = (prev?.count ?? 0) + 1; + inProcessCounters.set(key, { + count: nextCount, + expiresAt: now + windowSeconds * 2 * 1000, + }); + return nextCount; +} + +/** + * Convenience wrapper: checks the limit AND writes a 429 response if + * exhausted. Returns `true` if the caller should short-circuit, `false` + * to proceed with normal handling. + */ +export async function enforceRateLimit( + req: VercelRequest, + res: VercelResponse, + opts: RateLimitOptions = {}, +): Promise { + const result = await checkRateLimit(req, opts); + + // Always surface rate-limit headers — useful even on 200s so bots can + // self-pace instead of waiting for a 429. + res.setHeader('X-RateLimit-Limit', String(result.limit)); + res.setHeader('X-RateLimit-Remaining', String(result.remaining)); + res.setHeader('X-RateLimit-Reset', String(result.resetSeconds)); + + if (result.allowed) return false; + + res.setHeader('Retry-After', String(result.resetSeconds)); + res.status(429).json({ + success: false, + error: `Rate limit exceeded. Max ${result.limit} requests per ${opts.windowSeconds ?? DEFAULT_WINDOW_SECONDS}s.`, + retry_after_seconds: result.resetSeconds, + }); + return true; +} diff --git a/api/markets/arbitrage.ts b/api/markets/arbitrage.ts index 0fff5dc..54530cf 100644 --- a/api/markets/arbitrage.ts +++ b/api/markets/arbitrage.ts @@ -1,5 +1,6 @@ import type { VercelRequest, VercelResponse } from '@vercel/node'; import { getMarkets, getArbitrage, getMarketMetadata } from '../lib/market-cache'; +import { enforceRateLimit } from '../lib/rate-limit'; export default async function handler( req: VercelRequest, @@ -26,6 +27,11 @@ export default async function handler( return; } + // Arbitrage scan is expensive; hold to 30 rpm/IP. + if (await enforceRateLimit(req, res, { bucket: 'markets-arbitrage', maxRequests: 30, windowSeconds: 60 })) { + return; + } + const startTime = Date.now(); try { diff --git a/api/position-sizing.ts b/api/position-sizing.ts index 7ac244b..0889cc9 100644 --- a/api/position-sizing.ts +++ b/api/position-sizing.ts @@ -1,6 +1,7 @@ import type { VercelRequest, VercelResponse } from '@vercel/node'; import { computeEdge } from '../src/analysis/edge'; import { DEFAULT_FEES, FeeModel, getFeeModel } from '../src/analysis/fees'; +import { enforceRateLimit } from './lib/rate-limit'; /** * POST /api/position-sizing @@ -56,6 +57,10 @@ export default async function handler(req: VercelRequest, res: VercelResponse): return; } + if (await enforceRateLimit(req, res, { bucket: 'position-sizing', maxRequests: 120, windowSeconds: 60 })) { + return; + } + const body = (req.body ?? {}) as PositionSizingRequest; if (typeof body !== 'object' || Array.isArray(body)) { bad(res, 'Request body must be a JSON object.'); diff --git a/api/risk-assessment.ts b/api/risk-assessment.ts index 8f128ca..aa1eef7 100644 --- a/api/risk-assessment.ts +++ b/api/risk-assessment.ts @@ -1,6 +1,7 @@ import type { VercelRequest, VercelResponse } from '@vercel/node'; import { assessRisk, Side } from '../src/analysis/risk'; import { FeeModel, getFeeModel } from '../src/analysis/fees'; +import { enforceRateLimit } from './lib/rate-limit'; /** * POST /api/risk-assessment @@ -61,6 +62,10 @@ export default async function handler(req: VercelRequest, res: VercelResponse): return; } + if (await enforceRateLimit(req, res, { bucket: 'risk-assessment', maxRequests: 120, windowSeconds: 60 })) { + return; + } + const body = (req.body ?? {}) as RiskRequest; if (typeof body !== 'object' || Array.isArray(body)) { bad(res, 'Request body must be a JSON object.'); From 2fe2a001e454c0ec890cdc5d8e84fa144bdba172 Mon Sep 17 00:00:00 2001 From: john_wang Date: Mon, 20 Apr 2026 15:02:46 -0500 Subject: [PATCH 09/14] backtest: Monte Carlo harness with calibration sensitivity scripts/backtest/run-backtest.ts runs the signal pipeline over the same 30-tweet corpus and 1,857-market snapshot used by the matcher eval, and compares three sizing strategies over 500 replications: KELLY (quarter-Kelly, 10% bankroll cap), FLAT ($100), and RANDOM ($100, random side). Execution realism: - only trades signals on markets priced in [0.10, 0.90] with 24h volume >= $25k; penny markets are theoretically +EV but not executable at any realistic size - Kelly stake is computed against min(current, 2x starting) bankroll so a streak does not size trades past book depth - fees and adverse-execution slippage come from fees.ts, so the PnL is apples-to-apples with what the API reports Results at calibration = 1.0 (pooled-trade Sharpe, 500 reps): strategy return Sharpe maxDD winRate Brier KELLY +17.4% 0.360 3.5% 17.8% 0.206 FLAT +5.6% 0.570 1.7% 54.2% 0.239 RANDOM +1.8% 0.228 1.9% 49.1% 0.240 Kelly sensitivity sweep: calibration return Sharpe 0.00 -1.2% -0.033 0.25 +3.7% 0.090 0.50 +8.3% 0.188 0.75 +13.5% 0.289 1.00 +18.4% 0.377 At calibration 0 (signals are noise) Kelly loses small rather than blowing up, because the EV check short-circuits to HOLD on negative- expectation trades. Results persisted to scripts/backtest/fixtures/ result.json and regenerable from scratch. --- scripts/backtest/README.md | 37 +++ scripts/backtest/fixtures/result.json | 108 +++++++ scripts/backtest/run-backtest.ts | 393 ++++++++++++++++++++++++++ 3 files changed, 538 insertions(+) create mode 100644 scripts/backtest/README.md create mode 100644 scripts/backtest/fixtures/result.json create mode 100644 scripts/backtest/run-backtest.ts diff --git a/scripts/backtest/README.md b/scripts/backtest/README.md new file mode 100644 index 0000000..e0f4f26 --- /dev/null +++ b/scripts/backtest/README.md @@ -0,0 +1,37 @@ +# Signal-pipeline backtest + +Monte Carlo backtest of the end-to-end signal pipeline +(`matcher → sentiment → signal → edge`) with calibration-sensitivity +analysis. Answers two questions a bot developer cares about: + +1. **Does the sizing math actually help?** Compare KELLY, FLAT, RANDOM + over the same signal stream. +2. **What happens when the signals are wrong?** Vary calibration from + 0.0 (signals are noise) to 1.0 (signals are perfectly calibrated) + and watch return + Sharpe degrade gracefully — Kelly should under- + perform FLAT at low calibration and over-perform at high. + +## Method + +* Corpus: the same 30 tweets used by the matcher eval × the same 1,857 + market snapshot. +* Per tweet → take the top non-HOLD signal (if any) with positive + `ev_per_dollar`. +* Only trade signals on markets priced in `[0.10, 0.90]` with 24h + volume ≥ $25k. Penny markets are theoretically +EV but not + executable at any realistic size. +* 500 replications per strategy, RNG seeded for reproducibility. +* Kelly stake = `min(kellyFraction, 10%) × min(current, 2 × starting) + bankroll` — the "fixed-fraction-of-peak" cap real desks use so a + lucky streak doesn't size subsequent trades past book depth. +* Fees and adverse-execution slippage priced via `src/analysis/fees.ts`. + +## How to reproduce + +```bash +# Requires the market snapshot from scripts/matcher-eval +npx tsx scripts/matcher-eval/snapshot-markets.ts # optional, regenerate +npx tsx scripts/backtest/run-backtest.ts +``` + +Results are persisted to `fixtures/result.json`. diff --git a/scripts/backtest/fixtures/result.json b/scripts/backtest/fixtures/result.json new file mode 100644 index 0000000..7e6ae48 --- /dev/null +++ b/scripts/backtest/fixtures/result.json @@ -0,0 +1,108 @@ +{ + "corpus": { + "tweets": 30, + "markets": 1857, + "signals": 4 + }, + "replications": 500, + "headline": { + "KELLY": { + "totalReturnPct": 0.1744658755739615, + "sharpe": 0.36043196281628453, + "maxDrawdownPct": 0.035196562750218034, + "winRate": 0.1775, + "trades": 4, + "meanPnl": 436.16468893490276, + "stdPnl": 1210.1165654867848, + "brier": 0.20626274322490995 + }, + "FLAT": { + "totalReturnPct": 0.056204351695656324, + "sharpe": 0.5702275032812809, + "maxDrawdownPct": 0.017411534869675803, + "winRate": 0.542, + "trades": 4, + "meanPnl": 140.51087923914105, + "stdPnl": 246.4119644012156, + "brier": 0.239065685806228 + }, + "RANDOM": { + "totalReturnPct": 0.018317739628056166, + "sharpe": 0.228416913978894, + "maxDrawdownPct": 0.018949250544563687, + "winRate": 0.491, + "trades": 4, + "meanPnl": 45.79434907014083, + "stdPnl": 200.4858058557445, + "brier": 0.23982950252985752 + } + }, + "sensitivity": [ + { + "calibration": 0, + "metrics": { + "totalReturnPct": -0.012200791092705646, + "sharpe": -0.03324064257980448, + "maxDrawdownPct": 0.08956918382641632, + "winRate": 0.0655, + "trades": 4, + "meanPnl": -30.50197773176413, + "stdPnl": 917.6109534746406, + "brier": 0.37735768931791497 + } + }, + { + "calibration": 0.25, + "metrics": { + "totalReturnPct": 0.03696587557396098, + "sharpe": 0.09026529795102647, + "maxDrawdownPct": 0.07524782381081074, + "winRate": 0.095, + "trades": 4, + "meanPnl": 92.41468893490303, + "stdPnl": 1023.8119303061815, + "brier": 0.33229250262377547 + } + }, + { + "calibration": 0.5, + "metrics": { + "totalReturnPct": 0.08279920890729482, + "sharpe": 0.18793323177629834, + "maxDrawdownPct": 0.061897403457280065, + "winRate": 0.1225, + "trades": 4, + "meanPnl": 206.998022268235, + "stdPnl": 1101.444488086226, + "brier": 0.290282582824154 + } + }, + { + "calibration": 0.75, + "metrics": { + "totalReturnPct": 0.13529920890729513, + "sharpe": 0.2889951413768627, + "maxDrawdownPct": 0.04660510377959908, + "winRate": 0.154, + "trades": 4, + "meanPnl": 338.2480222682361, + "stdPnl": 1170.4280586058208, + "brier": 0.24216212923549596 + } + }, + { + "calibration": 1, + "metrics": { + "totalReturnPct": 0.1836325422406279, + "sharpe": 0.37688850231655235, + "maxDrawdownPct": 0.03252647867951183, + "winRate": 0.183, + "trades": 4, + "meanPnl": 459.0813556015697, + "stdPnl": 1218.0826763878904, + "brier": 0.19786075926498542 + } + } + ], + "generatedAt": "2026-04-20T20:00:48.147Z" +} \ No newline at end of file diff --git a/scripts/backtest/run-backtest.ts b/scripts/backtest/run-backtest.ts new file mode 100644 index 0000000..144a237 --- /dev/null +++ b/scripts/backtest/run-backtest.ts @@ -0,0 +1,393 @@ +/** + * Signal pipeline backtest — Monte Carlo with calibration sensitivity. + * + * Runs the end-to-end signal pipeline (matcher → sentiment → signal → + * edge) over a fixed tweet corpus and a fixed market snapshot, then + * simulates trade outcomes and compares three sizing strategies: + * + * • KELLY — quarter-Kelly capped at 10% bankroll (our default) + * • FLAT — fixed $100 per signal + * • RANDOM — $100 per signal, random direction (placebo control) + * + * Per replication: + * 1. For each tweet → pick the top signal (if non-HOLD). + * 2. Simulate the event: with probability `p_actual` the recommended + * side wins. `p_actual` is controlled by the `calibration` + * parameter — at calibration=1.0 we honor the reported `true_prob`; + * at calibration=0.0 we fall back to the market price (zero edge). + * 3. Settle PnL with fee/slippage. + * 4. Aggregate over N replications. + * + * Metrics: + * • total_return_pct ending-bankroll / starting-bankroll - 1 + * • sharpe mean per-trade PnL / std of per-trade PnL + * • max_drawdown_pct peak-to-trough on the cumulative curve + * • win_rate fraction of trades with PnL > 0 + * • brier ∑ (true_prob - outcome)^2 / n, smaller is better + * + * Results printed as a markdown table and also persisted to + * `scripts/backtest/fixtures/result.json` for PR automation. + * + * Reproducibility: + * npx tsx scripts/matcher-eval/snapshot-markets.ts # regen market snapshot + * npx tsx scripts/backtest/run-backtest.ts # run backtest + */ + +import { readFileSync, writeFileSync } from 'node:fs'; +import { resolve } from 'node:path'; +import { Market } from '../../src/types/market'; +import { KeywordMatcher } from '../../src/analysis/keyword-matcher'; +import { generateSignal, TradingSignal } from '../../src/analysis/signal-generator'; +import { computeEdge } from '../../src/analysis/edge'; +import { costFraction, getFeeModel } from '../../src/analysis/fees'; +import { brierScore } from '../../src/analysis/edge'; + +// ─── Deterministic PRNG (Mulberry32) ────────────────────────────────────── +function makeRng(seed: number): () => number { + let a = seed >>> 0; + return () => { + a = (a + 0x6D2B79F5) >>> 0; + let t = a; + t = Math.imul(t ^ (t >>> 15), t | 1); + t ^= t + Math.imul(t ^ (t >>> 7), t | 61); + return ((t ^ (t >>> 14)) >>> 0) / 4294967296; + }; +} + +interface TweetFixture { + id: string; + text: string; + expectedCategories: string[]; +} + +interface SignalForBacktest { + tweetId: string; + signal: TradingSignal; + topMarket: Market; + trueProb: number; + yesPrice: number; +} + +type Strategy = 'KELLY' | 'FLAT' | 'RANDOM'; + +interface StrategyMetrics { + totalReturnPct: number; + sharpe: number; + maxDrawdownPct: number; + winRate: number; + trades: number; + meanPnl: number; + stdPnl: number; +} + +const BANKROLL_START = 10_000; +const FLAT_STAKE = 100; +const REPLICATIONS = 500; +const CALIBRATION_POINTS = [0.0, 0.25, 0.5, 0.75, 1.0]; + +function loadMarkets(): Market[] { + return JSON.parse(readFileSync(resolve('scripts/matcher-eval/fixtures/markets.snapshot.json'), 'utf8')) as Market[]; +} + +function loadTweets(): TweetFixture[] { + return JSON.parse(readFileSync(resolve('scripts/matcher-eval/fixtures/tweets.json'), 'utf8')) as TweetFixture[]; +} + +/** + * Collect tradable signals from the corpus. + * + * We apply stricter tradability filters here than the general matcher + * gate, because a backtest should simulate *what a real bot would + * actually execute* — not what the API merely surfaces. Specifically: + * + * • yes price in [0.10, 0.90] → caps single-trade payout at ≤ 9×, + * which is where realistic sportsbook-style edges live. + * • 24h volume ≥ $25k → bot-scale liquidity (our Kelly stakes are + * typically $100–$500, so we need a market that absorbs that). + */ +function collectSignals(markets: Market[], tweets: TweetFixture[]): SignalForBacktest[] { + const matcher = new KeywordMatcher(markets, 0.22, 5); + const out: SignalForBacktest[] = []; + + for (const t of tweets) { + const matches = matcher.match(t.text); + if (matches.length === 0) continue; + const signal = generateSignal(t.text, matches); + if (!signal.suggested_action || signal.suggested_action.direction === 'HOLD') continue; + if (signal.suggested_action.ev_per_dollar <= 0) continue; + const top = matches[0].market; + if (top.yesPrice < 0.1 || top.yesPrice > 0.9) continue; + if (!Number.isFinite(top.volume24h) || top.volume24h < 25_000) continue; + const trueProb = signal.metadata.implied_true_prob ?? top.yesPrice; + out.push({ + tweetId: t.id, + signal, + topMarket: top, + trueProb, + yesPrice: top.yesPrice, + }); + } + return out; +} + +/** + * Settle a single trade. + * + * @param stake Dollars staked (> 0 for YES/NO, 0 for no-trade) + * @param side 'YES' | 'NO' | 'HOLD' + * @param yesPrice Current YES price + * @param trueProbActual Actual probability the side wins (may differ from reported) + * @param volume24h Liquidity proxy + * @param rng PRNG + */ +function settleTrade( + stake: number, + side: 'YES' | 'NO' | 'HOLD', + yesPrice: number, + trueProbActual: number, + volume24h: number, + platform: string, + rng: () => number, +): { pnl: number; won: boolean } { + if (stake <= 0 || side === 'HOLD') return { pnl: 0, won: false }; + + const entry = side === 'YES' ? yesPrice : 1 - yesPrice; + const payoutIfWin = (1 - entry) / entry; + const winProb = side === 'YES' ? trueProbActual : 1 - trueProbActual; + + const cost = costFraction(stake, volume24h, entry, getFeeModel(platform)); + const drawU = rng(); + const won = drawU < winProb; + const pnl = won + ? stake * payoutIfWin - stake * cost + : -stake - stake * cost; + return { pnl, won }; +} + +function computeMetrics(pnlPath: number[]): StrategyMetrics { + if (pnlPath.length === 0) { + return { totalReturnPct: 0, sharpe: 0, maxDrawdownPct: 0, winRate: 0, trades: 0, meanPnl: 0, stdPnl: 0 }; + } + const total = pnlPath.reduce((s, x) => s + x, 0); + const mean = total / pnlPath.length; + const variance = pnlPath.reduce((s, x) => s + (x - mean) ** 2, 0) / pnlPath.length; + const std = Math.sqrt(variance); + const sharpe = std > 0 ? mean / std : 0; + + // Max drawdown on the cumulative curve + let equity = BANKROLL_START; + let peak = equity; + let maxDd = 0; + for (const p of pnlPath) { + equity += p; + peak = Math.max(peak, equity); + const dd = (peak - equity) / peak; + maxDd = Math.max(maxDd, dd); + } + + return { + totalReturnPct: total / BANKROLL_START, + sharpe, + maxDrawdownPct: maxDd, + winRate: pnlPath.filter(p => p > 0).length / pnlPath.length, + trades: pnlPath.length, + meanPnl: mean, + stdPnl: std, + }; +} + +function stakeForStrategy( + strategy: Strategy, + signal: SignalForBacktest, + bankroll: number, + rng: () => number, +): { stake: number; side: 'YES' | 'NO' } { + const recommendedSide = (signal.signal.suggested_action?.direction ?? 'YES') as 'YES' | 'NO'; + switch (strategy) { + case 'FLAT': + return { stake: FLAT_STAKE, side: recommendedSide }; + case 'RANDOM': + return { stake: FLAT_STAKE, side: rng() < 0.5 ? 'YES' : 'NO' }; + case 'KELLY': { + const fees = getFeeModel(signal.topMarket.platform); + const edge = computeEdge({ + trueProb: signal.trueProb, + yesPrice: signal.yesPrice, + volume24h: signal.topMarket.volume24h, + fees, + stake: Math.min(bankroll * 0.1, 1000), + confidence: signal.signal.sentiment?.confidence ?? 1, + kellyCap: 0.25, + }); + const side = edge.side === 'HOLD' ? recommendedSide : edge.side; + const fraction = Math.min(edge.kellyFraction, 0.1); + // Cap against the *starting* bankroll so a lucky streak doesn't + // size subsequent trades past what the book can absorb. This is + // the anti-blowup rule real desks apply (a.k.a. "fixed-fraction- + // of-peak" sizing). + const capBankroll = Math.min(bankroll, BANKROLL_START * 2); + return { stake: Math.max(0, capBankroll * fraction), side }; + } + } +} + +function runReplication( + signals: SignalForBacktest[], + strategy: Strategy, + calibration: number, + rng: () => number, +): { pnlPath: number[]; brierSum: number; brierCount: number } { + let bankroll = BANKROLL_START; + const pnlPath: number[] = []; + let brierSum = 0; + let brierCount = 0; + + for (const sig of signals) { + // Calibration: blend reported trueProb toward the market price. + // calibration=1 → use reported; calibration=0 → use market (zero edge). + const trueProbActual = calibration * sig.trueProb + (1 - calibration) * sig.yesPrice; + const { stake, side } = stakeForStrategy(strategy, sig, bankroll, rng); + if (stake <= 0) { pnlPath.push(0); continue; } + + const { pnl, won } = settleTrade( + stake, + side, + sig.yesPrice, + trueProbActual, + sig.topMarket.volume24h, + sig.topMarket.platform, + rng, + ); + bankroll += pnl; + pnlPath.push(pnl); + + // Brier on the reported prob vs realized outcome (side-agnostic). + const outcomeYes = side === 'YES' ? (won ? 1 : 0) : (won ? 0 : 1); + brierSum += brierScore(sig.trueProb, outcomeYes as 0 | 1); + brierCount++; + } + + return { pnlPath, brierSum, brierCount }; +} + +/** + * Aggregate metrics across replications. + * + * For Sharpe we *pool* all trades across all replications rather than + * averaging per-replication Sharpes, because with few trades per rep + * the per-rep Sharpe is a noisy division by a tiny std. Pooling gives + * the realized trade-level risk-adjusted return we'd actually observe + * if we ran the strategy over the full simulated universe. + */ +function averageMetrics(results: { pnlPath: number[]; brierSum: number; brierCount: number }[]): StrategyMetrics & { brier: number } { + const perRepMetrics = results.map(r => computeMetrics(r.pnlPath)); + const mean = (f: (m: StrategyMetrics) => number): number => + perRepMetrics.reduce((s, m) => s + f(m), 0) / perRepMetrics.length; + + const brier = results.reduce((s, r) => s + (r.brierCount > 0 ? r.brierSum / r.brierCount : 0), 0) / results.length; + + // Pool across ALL trades for Sharpe. + const allPnls: number[] = []; + for (const r of results) allPnls.push(...r.pnlPath); + const pooledMean = allPnls.reduce((s, x) => s + x, 0) / Math.max(1, allPnls.length); + const pooledVar = allPnls.reduce((s, x) => s + (x - pooledMean) ** 2, 0) / Math.max(1, allPnls.length); + const pooledStd = Math.sqrt(pooledVar); + const pooledSharpe = pooledStd > 0 ? pooledMean / pooledStd : 0; + + return { + totalReturnPct: mean(m => m.totalReturnPct), + sharpe: pooledSharpe, + maxDrawdownPct: mean(m => m.maxDrawdownPct), + winRate: mean(m => m.winRate), + trades: perRepMetrics[0]?.trades ?? 0, + meanPnl: pooledMean, + stdPnl: pooledStd, + brier, + }; +} + +function fmtPct(x: number): string { + return `${(x * 100).toFixed(1)}%`; +} + +function fmtMoney(x: number): string { + const sign = x >= 0 ? '+' : '-'; + return `${sign}$${Math.abs(x).toFixed(2)}`; +} + +function main(): void { + const markets = loadMarkets(); + const tweets = loadTweets(); + console.log( + `[backtest] corpus: ${tweets.length} tweets × ${markets.length} markets ` + + `(${markets.filter(m => m.platform === 'polymarket').length} Polymarket + ` + + `${markets.filter(m => m.platform === 'kalshi').length} Kalshi)`, + ); + + const signals = collectSignals(markets, tweets); + console.log(`[backtest] produced ${signals.length} non-HOLD signals (out of ${tweets.length} tweets)\n`); + if (signals.length === 0) { + console.log('No actionable signals; nothing to simulate.'); + return; + } + + const strategies: Strategy[] = ['KELLY', 'FLAT', 'RANDOM']; + const headline: Record = {} as Record; + + // 1) Headline results at calibration=1.0 (signal-calibration assumption) + for (const strategy of strategies) { + const results: { pnlPath: number[]; brierSum: number; brierCount: number }[] = []; + for (let i = 0; i < REPLICATIONS; i++) { + const rng = makeRng(20260420 + i); + results.push(runReplication(signals, strategy, 1.0, rng)); + } + headline[strategy] = averageMetrics(results); + } + + console.log('### Headline (calibration = 1.0, ' + REPLICATIONS + ' replications)\n'); + console.log('| strategy | total return | Sharpe | max DD | win rate | Brier |'); + console.log('|----------|-------------:|--------:|-------:|---------:|--------:|'); + for (const s of strategies) { + const m = headline[s]; + console.log( + `| ${s.padEnd(8)} | ${fmtPct(m.totalReturnPct).padStart(12)} |` + + ` ${m.sharpe.toFixed(3).padStart(7)} |` + + ` ${fmtPct(m.maxDrawdownPct).padStart(6)} |` + + ` ${fmtPct(m.winRate).padStart(8)} |` + + ` ${m.brier.toFixed(3).padStart(7)} |`, + ); + } + + // 2) Calibration sensitivity + console.log('\n### Kelly sensitivity to signal calibration\n'); + console.log('| calibration | total return | Sharpe | max DD | win rate |'); + console.log('|------------:|-------------:|--------:|-------:|---------:|'); + const sens: Array<{ calibration: number; metrics: StrategyMetrics & { brier: number } }> = []; + for (const c of CALIBRATION_POINTS) { + const results: { pnlPath: number[]; brierSum: number; brierCount: number }[] = []; + for (let i = 0; i < REPLICATIONS; i++) { + const rng = makeRng(20260421 + i * 7); + results.push(runReplication(signals, 'KELLY', c, rng)); + } + const m = averageMetrics(results); + sens.push({ calibration: c, metrics: m }); + console.log( + `| ${c.toFixed(2).padStart(11)} | ${fmtPct(m.totalReturnPct).padStart(12)} |` + + ` ${m.sharpe.toFixed(3).padStart(7)} |` + + ` ${fmtPct(m.maxDrawdownPct).padStart(6)} |` + + ` ${fmtPct(m.winRate).padStart(8)} |`, + ); + } + + const outPath = resolve('scripts/backtest/fixtures/result.json'); + writeFileSync(outPath, JSON.stringify({ + corpus: { tweets: tweets.length, markets: markets.length, signals: signals.length }, + replications: REPLICATIONS, + headline, + sensitivity: sens, + generatedAt: new Date().toISOString(), + }, null, 2)); + console.log(`\n[backtest] wrote machine-readable result to ${outPath}`); +} + +main(); From d002d67c48d5c487e4d352098d5526e090d039e9 Mon Sep 17 00:00:00 2001 From: john_wang Date: Mon, 20 Apr 2026 16:06:24 -0500 Subject: [PATCH 10/14] signal: suppress HOLD-by-default when sentiment is neutral sentimentToProbability returned 0.5 for neutral sentiment, which then flowed into computeEdge as a hardcoded prior. computeEdge would find positive EV on whichever side was cheaper and emit a YES/NO recommendation, effectively betting against the market price based on nothing. Neutral sentiment means we have no directional evidence. When there is no arbitrage to dominate, the right call is HOLD and deferral to the market. generateSignal now short-circuits to that suggested_action in the neutral case, with implied_true_prob set to the market yesPrice so downstream consumers know we did not derive an independent prior. This was surfaced while inspecting the backtest: 3 of 4 signals on the fixture corpus had trueProb = 0.5 exactly, came from neutral-sentiment tweets like "Real Madrid beat Barcelona 3-1", and were generating coin-flip trades against the market. They are now filtered at signal generation, not at the strategy layer. --- src/analysis/signal-generator.ts | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/analysis/signal-generator.ts b/src/analysis/signal-generator.ts index 6ce0d3a..03f8390 100644 --- a/src/analysis/signal-generator.ts +++ b/src/analysis/signal-generator.ts @@ -212,6 +212,36 @@ export function generateSignal( const topMarket = topMatch.market; const sentiment = analyzeSentimentForMarket(tweetText, topMarket.title); + + // Neutral sentiment means we have no directional evidence. The legacy + // behaviour was to set trueProb = 0.5 and let computeEdge pick whichever + // side was cheapest — which amounts to betting against the market price + // using a hardcoded 50/50 prior. That's a false signal. If there's no + // arbitrage to dominate, defer to the market and return HOLD. + if (sentiment.sentiment === 'neutral' && !arbitrageOpportunity) { + return { + event_id: generateEventId(tweetText), + signal_type: 'user_interest', + urgency: 'low', + matches, + suggested_action: { + direction: 'HOLD', + confidence: 0, + edge: 0, + ev_per_dollar: 0, + kelly_fraction: 0, + breakeven_prob: topMarket.yesPrice, + reasoning: 'Sentiment provides no directional evidence; deferring to the market.', + }, + sentiment, + metadata: { + processing_time_ms: Date.now() - startTime, + tweet_text: tweetText, + implied_true_prob: topMarket.yesPrice, + }, + }; + } + const trueProb = sentimentToProbability(sentiment); // Use shared edge / Kelly math so arbitrage and position-sizing agree. From 86cdb3af0c1c018877113488573425c3eb374a3c Mon Sep 17 00:00:00 2001 From: john_wang Date: Mon, 20 Apr 2026 16:06:37 -0500 Subject: [PATCH 11/14] backtest: report active-trade win rate and active-trade Sharpe The original computeMetrics counted skipped-signal slots (stake=0) in the denominators of both winRate and Sharpe. A selective strategy like KELLY, which correctly refuses low-evidence trades, was penalised for doing so: its reported win rate was 17.8% and its Sharpe 0.36 while FLAT, which took every signal, showed 54.2% and 0.57. Both numbers were an artefact of the zero-pad on the pnl path. Metrics are now split: - totalReturn and maxDrawdown still walk the full pnlPath (zeros do not move equity, so they're correct as a full-path metric) - sharpe, winRate, meanPnl, stdPnl are computed over active trades (entries with pnl != 0) only - activeTrades and activeRate are reported alongside the other numbers so a reviewer can see how selective each strategy was After the fix plus the matching signal-generator change that removes coin-flip trades on neutral-sentiment tweets, KELLY and FLAT converge to the same 71% win rate (they take the same single well-calibrated bet per replication) and near-identical Sharpe (0.92 vs 0.98). The total return gap (17.4% vs 1.9%) is the intended effect of staking 10% of bankroll vs a flat $100, and max drawdown scales the same way (3.5% vs 0.3%). --- scripts/backtest/fixtures/result.json | 112 ++++++++++-------- scripts/backtest/run-backtest.ts | 107 ++++++++++++----- .../matcher-eval/fixtures/eval-result.json | 2 +- 3 files changed, 140 insertions(+), 81 deletions(-) diff --git a/scripts/backtest/fixtures/result.json b/scripts/backtest/fixtures/result.json index 7e6ae48..e02db5f 100644 --- a/scripts/backtest/fixtures/result.json +++ b/scripts/backtest/fixtures/result.json @@ -2,39 +2,45 @@ "corpus": { "tweets": 30, "markets": 1857, - "signals": 4 + "signals": 1 }, "replications": 500, "headline": { "KELLY": { "totalReturnPct": 0.1744658755739615, - "sharpe": 0.36043196281628453, + "sharpe": 0.9227702038203712, "maxDrawdownPct": 0.035196562750218034, - "winRate": 0.1775, - "trades": 4, - "meanPnl": 436.16468893490276, - "stdPnl": 1210.1165654867848, + "winRate": 0.71, + "totalSlots": 1, + "activeTrades": 1, + "activeRate": 1, + "meanPnl": 1744.658755739611, + "stdPnl": 1890.67521742307, "brier": 0.20626274322490995 }, "FLAT": { - "totalReturnPct": 0.056204351695656324, - "sharpe": 0.5702275032812809, - "maxDrawdownPct": 0.017411534869675803, - "winRate": 0.542, - "trades": 4, - "meanPnl": 140.51087923914105, - "stdPnl": 246.4119644012156, - "brier": 0.239065685806228 + "totalReturnPct": 0.018532627001076798, + "sharpe": 0.9802120866817153, + "maxDrawdownPct": 0.0032047048363544202, + "winRate": 0.71, + "totalSlots": 1, + "activeTrades": 1, + "activeRate": 1, + "meanPnl": 185.32627001076727, + "stdPnl": 189.06752174230695, + "brier": 0.20626274322490995 }, "RANDOM": { - "totalReturnPct": 0.018317739628056166, - "sharpe": 0.228416913978894, - "maxDrawdownPct": 0.018949250544563687, - "winRate": 0.491, - "trades": 4, - "meanPnl": 45.79434907014083, - "stdPnl": 200.4858058557445, - "brier": 0.23982950252985752 + "totalReturnPct": 0.006280806797670875, + "sharpe": 0.33064253626935813, + "maxDrawdownPct": 0.005297763040545185, + "winRate": 0.5, + "totalSlots": 1, + "activeTrades": 1, + "activeRate": 1, + "meanPnl": 62.808067976709445, + "stdPnl": 189.9576161173129, + "brier": 0.2093180101194281 } }, "sensitivity": [ @@ -42,12 +48,14 @@ "calibration": 0, "metrics": { "totalReturnPct": -0.012200791092705646, - "sharpe": -0.03324064257980448, + "sharpe": -0.06659174663426193, "maxDrawdownPct": 0.08956918382641632, - "winRate": 0.0655, - "trades": 4, - "meanPnl": -30.50197773176413, - "stdPnl": 917.6109534746406, + "winRate": 0.262, + "totalSlots": 1, + "activeTrades": 1, + "activeRate": 1, + "meanPnl": -122.00791092705651, + "stdPnl": 1832.1776660575317, "brier": 0.37735768931791497 } }, @@ -55,12 +63,14 @@ "calibration": 0.25, "metrics": { "totalReturnPct": 0.03696587557396098, - "sharpe": 0.09026529795102647, + "sharpe": 0.18277828414400002, "maxDrawdownPct": 0.07524782381081074, - "winRate": 0.095, - "trades": 4, - "meanPnl": 92.41468893490303, - "stdPnl": 1023.8119303061815, + "winRate": 0.38, + "totalSlots": 1, + "activeTrades": 1, + "activeRate": 1, + "meanPnl": 369.6587557396121, + "stdPnl": 2022.4435165852644, "brier": 0.33229250262377547 } }, @@ -68,12 +78,14 @@ "calibration": 0.5, "metrics": { "totalReturnPct": 0.08279920890729482, - "sharpe": 0.18793323177629834, + "sharpe": 0.3975157138496869, "maxDrawdownPct": 0.061897403457280065, - "winRate": 0.1225, - "trades": 4, - "meanPnl": 206.998022268235, - "stdPnl": 1101.444488086226, + "winRate": 0.49, + "totalSlots": 1, + "activeTrades": 1, + "activeRate": 1, + "meanPnl": 827.99208907294, + "stdPnl": 2082.916624991659, "brier": 0.290282582824154 } }, @@ -81,12 +93,14 @@ "calibration": 0.75, "metrics": { "totalReturnPct": 0.13529920890729513, - "sharpe": 0.2889951413768627, + "sharpe": 0.6676525787045284, "maxDrawdownPct": 0.04660510377959908, - "winRate": 0.154, - "trades": 4, - "meanPnl": 338.2480222682361, - "stdPnl": 1170.4280586058208, + "winRate": 0.616, + "totalSlots": 1, + "activeTrades": 1, + "activeRate": 1, + "meanPnl": 1352.9920890729445, + "stdPnl": 2026.491220476084, "brier": 0.24216212923549596 } }, @@ -94,15 +108,17 @@ "calibration": 1, "metrics": { "totalReturnPct": 0.1836325422406279, - "sharpe": 0.37688850231655235, + "sharpe": 0.9950340691255316, "maxDrawdownPct": 0.03252647867951183, - "winRate": 0.183, - "trades": 4, - "meanPnl": 459.0813556015697, - "stdPnl": 1218.0826763878904, + "winRate": 0.732, + "totalSlots": 1, + "activeTrades": 1, + "activeRate": 1, + "meanPnl": 1836.325422406279, + "stdPnl": 1845.4899981666974, "brier": 0.19786075926498542 } } ], - "generatedAt": "2026-04-20T20:00:48.147Z" + "generatedAt": "2026-04-20T21:05:05.535Z" } \ No newline at end of file diff --git a/scripts/backtest/run-backtest.ts b/scripts/backtest/run-backtest.ts index 144a237..47b874f 100644 --- a/scripts/backtest/run-backtest.ts +++ b/scripts/backtest/run-backtest.ts @@ -72,10 +72,25 @@ type Strategy = 'KELLY' | 'FLAT' | 'RANDOM'; interface StrategyMetrics { totalReturnPct: number; + /** + * Per-trade Sharpe pooled over the *active* trades only (stake > 0). + * Including skipped slots in the denominator deflates Kelly's number + * because a selective strategy pads the distribution with zeros. The + * active-only pooled Sharpe matches what a bot would actually see. + */ sharpe: number; maxDrawdownPct: number; + /** + * Win rate over active trades. Skipped slots are not counted as + * "losses" because no position was taken. + */ winRate: number; - trades: number; + /** Slots considered (signals × replications). */ + totalSlots: number; + /** Slots the strategy actually traded (stake > 0). */ + activeTrades: number; + /** activeTrades / totalSlots, per-replication mean. */ + activeRate: number; meanPnl: number; stdPnl: number; } @@ -164,17 +179,35 @@ function settleTrade( return { pnl, won }; } +/** + * Per-replication metrics. + * + * `pnlPath` contains one entry per *signal slot* (stake=0 for a slot the + * strategy skipped, actual PnL otherwise). Max drawdown and total return + * walk the full path (zeros don't change equity). Win rate and Sharpe + * are computed over **active** entries only, so a selective strategy + * isn't penalised for the slots it correctly refused to trade. + */ function computeMetrics(pnlPath: number[]): StrategyMetrics { if (pnlPath.length === 0) { - return { totalReturnPct: 0, sharpe: 0, maxDrawdownPct: 0, winRate: 0, trades: 0, meanPnl: 0, stdPnl: 0 }; + return { + totalReturnPct: 0, sharpe: 0, maxDrawdownPct: 0, winRate: 0, + totalSlots: 0, activeTrades: 0, activeRate: 0, meanPnl: 0, stdPnl: 0, + }; } + + const active = pnlPath.filter(p => p !== 0); const total = pnlPath.reduce((s, x) => s + x, 0); - const mean = total / pnlPath.length; - const variance = pnlPath.reduce((s, x) => s + (x - mean) ** 2, 0) / pnlPath.length; - const std = Math.sqrt(variance); - const sharpe = std > 0 ? mean / std : 0; - // Max drawdown on the cumulative curve + const activeMean = active.length > 0 + ? active.reduce((s, x) => s + x, 0) / active.length + : 0; + const activeVariance = active.length > 0 + ? active.reduce((s, x) => s + (x - activeMean) ** 2, 0) / active.length + : 0; + const activeStd = Math.sqrt(activeVariance); + const activeSharpe = activeStd > 0 ? activeMean / activeStd : 0; + let equity = BANKROLL_START; let peak = equity; let maxDd = 0; @@ -187,12 +220,16 @@ function computeMetrics(pnlPath: number[]): StrategyMetrics { return { totalReturnPct: total / BANKROLL_START, - sharpe, + sharpe: activeSharpe, maxDrawdownPct: maxDd, - winRate: pnlPath.filter(p => p > 0).length / pnlPath.length, - trades: pnlPath.length, - meanPnl: mean, - stdPnl: std, + winRate: active.length > 0 + ? active.filter(p => p > 0).length / active.length + : 0, + totalSlots: pnlPath.length, + activeTrades: active.length, + activeRate: active.length / pnlPath.length, + meanPnl: activeMean, + stdPnl: activeStd, }; } @@ -273,11 +310,10 @@ function runReplication( /** * Aggregate metrics across replications. * - * For Sharpe we *pool* all trades across all replications rather than - * averaging per-replication Sharpes, because with few trades per rep - * the per-rep Sharpe is a noisy division by a tiny std. Pooling gives - * the realized trade-level risk-adjusted return we'd actually observe - * if we ran the strategy over the full simulated universe. + * Sharpe and mean/std are pooled across *active* trades from every + * replication; per-rep Sharpe on a handful of active trades is too + * noisy to average. totalReturn, maxDD, winRate, activeRate are means + * of the per-replication numbers. */ function averageMetrics(results: { pnlPath: number[]; brierSum: number; brierCount: number }[]): StrategyMetrics & { brier: number } { const perRepMetrics = results.map(r => computeMetrics(r.pnlPath)); @@ -286,11 +322,14 @@ function averageMetrics(results: { pnlPath: number[]; brierSum: number; brierCou const brier = results.reduce((s, r) => s + (r.brierCount > 0 ? r.brierSum / r.brierCount : 0), 0) / results.length; - // Pool across ALL trades for Sharpe. - const allPnls: number[] = []; - for (const r of results) allPnls.push(...r.pnlPath); - const pooledMean = allPnls.reduce((s, x) => s + x, 0) / Math.max(1, allPnls.length); - const pooledVar = allPnls.reduce((s, x) => s + (x - pooledMean) ** 2, 0) / Math.max(1, allPnls.length); + const activePnls: number[] = []; + for (const r of results) for (const p of r.pnlPath) if (p !== 0) activePnls.push(p); + const pooledMean = activePnls.length > 0 + ? activePnls.reduce((s, x) => s + x, 0) / activePnls.length + : 0; + const pooledVar = activePnls.length > 0 + ? activePnls.reduce((s, x) => s + (x - pooledMean) ** 2, 0) / activePnls.length + : 0; const pooledStd = Math.sqrt(pooledVar); const pooledSharpe = pooledStd > 0 ? pooledMean / pooledStd : 0; @@ -299,7 +338,9 @@ function averageMetrics(results: { pnlPath: number[]; brierSum: number; brierCou sharpe: pooledSharpe, maxDrawdownPct: mean(m => m.maxDrawdownPct), winRate: mean(m => m.winRate), - trades: perRepMetrics[0]?.trades ?? 0, + totalSlots: perRepMetrics[0]?.totalSlots ?? 0, + activeTrades: Math.round(mean(m => m.activeTrades)), + activeRate: mean(m => m.activeRate), meanPnl: pooledMean, stdPnl: pooledStd, brier, @@ -345,23 +386,25 @@ function main(): void { } console.log('### Headline (calibration = 1.0, ' + REPLICATIONS + ' replications)\n'); - console.log('| strategy | total return | Sharpe | max DD | win rate | Brier |'); - console.log('|----------|-------------:|--------:|-------:|---------:|--------:|'); + console.log('| strategy | active / slots | total return | active Sharpe | max DD | active win rate | Brier |'); + console.log('|----------|---------------:|-------------:|--------------:|-------:|----------------:|--------:|'); for (const s of strategies) { const m = headline[s]; + const slots = m.totalSlots; console.log( - `| ${s.padEnd(8)} | ${fmtPct(m.totalReturnPct).padStart(12)} |` + - ` ${m.sharpe.toFixed(3).padStart(7)} |` + + `| ${s.padEnd(8)} | ${`${m.activeTrades}/${slots}`.padStart(14)} |` + + ` ${fmtPct(m.totalReturnPct).padStart(12)} |` + + ` ${m.sharpe.toFixed(3).padStart(13)} |` + ` ${fmtPct(m.maxDrawdownPct).padStart(6)} |` + - ` ${fmtPct(m.winRate).padStart(8)} |` + + ` ${fmtPct(m.winRate).padStart(15)} |` + ` ${m.brier.toFixed(3).padStart(7)} |`, ); } // 2) Calibration sensitivity console.log('\n### Kelly sensitivity to signal calibration\n'); - console.log('| calibration | total return | Sharpe | max DD | win rate |'); - console.log('|------------:|-------------:|--------:|-------:|---------:|'); + console.log('| calibration | total return | active Sharpe | max DD | active win rate |'); + console.log('|------------:|-------------:|--------------:|-------:|----------------:|'); const sens: Array<{ calibration: number; metrics: StrategyMetrics & { brier: number } }> = []; for (const c of CALIBRATION_POINTS) { const results: { pnlPath: number[]; brierSum: number; brierCount: number }[] = []; @@ -373,9 +416,9 @@ function main(): void { sens.push({ calibration: c, metrics: m }); console.log( `| ${c.toFixed(2).padStart(11)} | ${fmtPct(m.totalReturnPct).padStart(12)} |` + - ` ${m.sharpe.toFixed(3).padStart(7)} |` + + ` ${m.sharpe.toFixed(3).padStart(13)} |` + ` ${fmtPct(m.maxDrawdownPct).padStart(6)} |` + - ` ${fmtPct(m.winRate).padStart(8)} |`, + ` ${fmtPct(m.winRate).padStart(15)} |`, ); } diff --git a/scripts/matcher-eval/fixtures/eval-result.json b/scripts/matcher-eval/fixtures/eval-result.json index d4cf400..10d10e4 100644 --- a/scripts/matcher-eval/fixtures/eval-result.json +++ b/scripts/matcher-eval/fixtures/eval-result.json @@ -29,5 +29,5 @@ "extremePriceCount": 22, "weakSignalCount": 0 }, - "generatedAt": "2026-04-20T19:52:11.127Z" + "generatedAt": "2026-04-20T21:05:51.127Z" } \ No newline at end of file From b43dc8245859865d1dbcc8e9dc2cc9f787eb2be0 Mon Sep 17 00:00:00 2001 From: john_wang Date: Mon, 20 Apr 2026 16:56:07 -0500 Subject: [PATCH 12/14] review: correct arbitrage profit formula, sentiment polarity match, and worst-case loss Arbitrage `expectedDollarProfit` in `estimateExecutableSizing` used `refinedEdge * maxStake`. `refinedEdge` is profit per $1 of bundle payout, while `maxStake` is dollars outlaid; the correct expression is `refinedEdge * maxStake / (1 - refinedEdge)`. Under-statement was approximately 1-5% at typical edges and ~43% at 30%+ edges. Sentiment polarity flipping in `analyzeSentimentForMarket` used `title.toLowerCase().includes(key)` against `BEARISH_LEXICON`, which produced false matches on substrings (for example, `fall` inside "Falcons roster 2026"). Replaced with a word-boundary regex that also supports multi-word keys. `EdgeResult.worstCaseLoss` was set to `1 + cost`, which propagated through `/api/position-sizing` and `/api/risk-assessment` responses as a loss exceeding the stake. Binary-option longs on Polymarket and Kalshi cannot lose more than the stake, and fees are already reflected in `evPerDollar`. Corrected to `1`; `bestCaseGain` floored at `0` for symmetry. Reproducibility unchanged: matcher evaluation junk-rate delta -22.9 pp; back-test KELLY total return 17.4%, Sharpe (active) 0.923, win rate (active) 71.0%. Typecheck and wallet tests pass. --- scripts/backtest/fixtures/result.json | 2 +- .../matcher-eval/fixtures/eval-result.json | 2 +- src/analysis/edge.ts | 12 +++++-- src/analysis/sentiment-analyzer.ts | 35 ++++++++++++++----- src/api/arbitrage-detector.ts | 8 ++++- 5 files changed, 46 insertions(+), 13 deletions(-) diff --git a/scripts/backtest/fixtures/result.json b/scripts/backtest/fixtures/result.json index e02db5f..7d96010 100644 --- a/scripts/backtest/fixtures/result.json +++ b/scripts/backtest/fixtures/result.json @@ -120,5 +120,5 @@ } } ], - "generatedAt": "2026-04-20T21:05:05.535Z" + "generatedAt": "2026-04-20T21:55:29.992Z" } \ No newline at end of file diff --git a/scripts/matcher-eval/fixtures/eval-result.json b/scripts/matcher-eval/fixtures/eval-result.json index 10d10e4..e97ff0e 100644 --- a/scripts/matcher-eval/fixtures/eval-result.json +++ b/scripts/matcher-eval/fixtures/eval-result.json @@ -29,5 +29,5 @@ "extremePriceCount": 22, "weakSignalCount": 0 }, - "generatedAt": "2026-04-20T21:05:51.127Z" + "generatedAt": "2026-04-20T21:55:28.978Z" } \ No newline at end of file diff --git a/src/analysis/edge.ts b/src/analysis/edge.ts index 2c0a57b..a0fab7a 100644 --- a/src/analysis/edge.ts +++ b/src/analysis/edge.ts @@ -185,8 +185,16 @@ export function computeEdge(input: EdgeInputs): EdgeResult { evPerDollar, kellyFraction: side === 'HOLD' ? 0 : kelly, breakevenProb: clamp(breakevenProb, 0, 1), - worstCaseLoss: side === 'HOLD' ? 0 : 1 + cost, // you lose stake + costs - bestCaseGain: side === 'HOLD' ? 0 : payoutIfWin - cost, + // worst case: we lose the stake. Fees are accounted for in `cost` + // (and therefore in `evPerDollar`); they are not an extra loss on + // top of the stake because in both Polymarket and Kalshi the stake + // is the total at risk. Reporting `1 + cost` here caused + // user-facing confusion about losing more than 100% of stake. + worstCaseLoss: side === 'HOLD' ? 0 : 1, + // best case: we win and keep `payoutIfWin` dollars per $1 staked, + // minus the fees that didn't go into shares. This matches the + // expected-value accounting used above. + bestCaseGain: side === 'HOLD' ? 0 : Math.max(0, payoutIfWin - cost), reasoning, }; } diff --git a/src/analysis/sentiment-analyzer.ts b/src/analysis/sentiment-analyzer.ts index 645f058..8c5ce56 100644 --- a/src/analysis/sentiment-analyzer.ts +++ b/src/analysis/sentiment-analyzer.ts @@ -292,8 +292,9 @@ export function analyzeSentiment(text: string): SentimentResult { * *negative* score on "Will BTC crash?" is bullish YES (the crash is what * the market is *asking about*). * - * We flip the sign if the market title contains any bearish keyword — i.e. - * the market is framed around a bad outcome, so confirming it is YES. + * We flip the sign if the market title contains any bearish keyword as a + * whole-token match — "fall" triggers on "will Tesla fall" but not on + * "Falcons roster", "red" triggers on "red wave" but not on "redux". */ export function analyzeSentimentForMarket( text: string, @@ -303,13 +304,31 @@ export function analyzeSentimentForMarket( if (base.sentiment === 'neutral') return base; const titleLower = marketTitle.toLowerCase(); - const titleHasNegative = Object.keys(BEARISH_LEXICON).some(k => - titleLower.includes(k) && !Object.keys(BULLISH_LEXICON).some(b => titleLower.includes(b) && b.length > k.length), - ); + const bearishHit = findKeyAsWord(titleLower, Object.keys(BEARISH_LEXICON)); + if (!bearishHit) return base; + // If a longer bullish phrase also matches, the bearish hit may be + // inside it (e.g. "soft landing" contains "fail" — hypothetically). + // Prefer the longer match. + const bullishHit = findKeyAsWord(titleLower, Object.keys(BULLISH_LEXICON)); + if (bullishHit && bullishHit.length > bearishHit.length) return base; - if (!titleHasNegative) return base; - - // Flip polarity: confirming a bearish event is bullish for YES. const flipped: Sentiment = base.sentiment === 'bullish' ? 'bearish' : 'bullish'; return { ...base, sentiment: flipped, score: -base.score }; } + +/** + * Return the first key from `keys` that appears in `haystack` as a + * whole-token match (word boundaries on both sides). Returns the + * matched key, or `undefined` if none match. Keys containing spaces + * match across whitespace in the haystack (phrase-level match). + */ +function findKeyAsWord(haystack: string, keys: string[]): string | undefined { + for (const key of keys) { + const escaped = key.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); + // `\b` at both ends for unigrams; for phrases containing spaces + // the interior spaces match any run of whitespace. + const pattern = escaped.replace(/ /g, '\\s+'); + if (new RegExp(`\\b${pattern}\\b`).test(haystack)) return key; + } + return undefined; +} diff --git a/src/api/arbitrage-detector.ts b/src/api/arbitrage-detector.ts index 4599605..c3765c9 100644 --- a/src/api/arbitrage-detector.ts +++ b/src/api/arbitrage-detector.ts @@ -422,7 +422,13 @@ function estimateExecutableSizing( maxStake = Math.min(maxStake, 10); } - const expectedDollarProfit = Math.max(0, refinedEdge) * maxStake; + // Convert bundle-edge (profit per $1 of payout) to dollar profit per + // $1 of outlay. For every $maxStake outlaid, we buy maxStake / + // refinedCostPerBundle bundles, each paying $1 at resolution. Profit + // per outlay dollar = refinedEdge / refinedCostPerBundle. + const safeRefinedEdge = Math.max(0, refinedEdge); + const refinedCostPerBundle = Math.max(1e-6, 1 - safeRefinedEdge); + const expectedDollarProfit = (safeRefinedEdge / refinedCostPerBundle) * maxStake; const daysToExpiry = soonestExpiryDays(poly, kalshi) ?? 30; const annualisedReturn = daysToExpiry > 0 && maxStake > 0 From 165edaf449cdd2c5ef51732e6953f266a7a89510 Mon Sep 17 00:00:00 2001 From: john_wang Date: Mon, 20 Apr 2026 16:56:23 -0500 Subject: [PATCH 13/14] review: tighten arbitrage cache invalidation and rate-limit algorithm `getArbitrage` previously validated its cache by TTL alone. A request arriving after a market-cache refresh but before the arbitrage TTL expired received fresh market prices alongside arbitrage opportunities computed against the previous market snapshot. The arbitrage cache now records the `cacheTimestamp` under which it was computed and invalidates whenever that timestamp advances. The same change replaces the empty-array "uncached" sentinel with an explicit timestamp sentinel, so a legitimate no-arbitrage result no longer triggers a full O(n*m) rescan on every subsequent request. `api/lib/rate-limit.ts` has been replaced with a two-bucket weighted sliding-window implementation (`current + previous * (1 - elapsed fraction)`). The previous fixed-window counter permitted up to twice the configured limit across a window boundary. The Vercel KV read-modify-write sequence remains non-atomic; the docstring now states this explicitly. The `source` field distinguishes `kv-with-local` from `local-only` so operators can detect KV degradation. Verified: a 40-request burst at a 30-rpm cap yields 30 allowed and 10 denied, with per-IP isolation intact. Typecheck and wallet tests pass. --- api/lib/market-cache.ts | 47 ++++++++++---- api/lib/rate-limit.ts | 133 +++++++++++++++++++++++++++------------- 2 files changed, 123 insertions(+), 57 deletions(-) diff --git a/api/lib/market-cache.ts b/api/lib/market-cache.ts index 33e6ac5..30cb82a 100644 --- a/api/lib/market-cache.ts +++ b/api/lib/market-cache.ts @@ -41,6 +41,12 @@ let kalshiError: string | null = null; // Default: 15 seconds (configurable via ARBITRAGE_CACHE_TTL_SECONDS env var) let cachedArbitrage: ArbitrageOpportunity[] = []; let arbCacheTimestamp = 0; +// `cacheTimestamp` value that was current when `cachedArbitrage` was +// computed. If it diverges from the live `cacheTimestamp`, the arb cache +// is stale regardless of its own TTL because the underlying markets have +// been refreshed. Initialized to -1 as a sentinel for "never computed" +// so an empty result from detectArbitrage is still considered cached. +let arbCacheMarketsStamp = -1; const ARB_CACHE_TTL_MS = (parseInt(process.env.ARBITRAGE_CACHE_TTL_SECONDS || '15', 10)) * 1000; const POLYMARKET_TARGET_COUNT = parsePositiveInt(process.env.MUSASHI_POLYMARKET_TARGET_COUNT, 1200); @@ -242,31 +248,46 @@ export function getMarketMetadata(): FreshnessMetadata { } /** - * Get cached arbitrage opportunities + * Get cached arbitrage opportunities. * - * Caches with low minSpread (0.01) and filters client-side. - * This allows different callers to request different thresholds - * without recomputing the expensive O(n×m) scan. + * Caches at a low threshold (0.01) and filters client-side so different + * callers can request different `minSpread` thresholds without + * recomputing the O(n×m) scan. + * + * Invalidation rules: + * 1. TTL — `ARB_CACHE_TTL_MS` (default 15s). + * 2. Markets refresh — if the underlying market-cache timestamp has + * advanced since we last scanned, the cached opportunities are + * stale by definition (they reference a previous snapshot) and + * are recomputed even within their own TTL. + * + * A separate `arbCacheMarketsStamp` sentinel tracks the markets-cache + * timestamp at scan time, which also fixes the edge case where a + * legitimate "no opportunities" result would otherwise trigger a fresh + * scan on every call (because an empty array was being used as the + * "never computed" sentinel). * * @param minSpread - Minimum spread threshold (default: 0.03) - * @returns Arbitrage opportunities filtered by minSpread */ export async function getArbitrage(minSpread: number = 0.03): Promise { const markets = await getMarkets(); const now = Date.now(); - // Recompute if cache is stale - if (cachedArbitrage.length === 0 || (now - arbCacheTimestamp) >= ARB_CACHE_TTL_MS) { - console.log('[Arbitrage Cache] Computing arbitrage opportunities...'); - // Cache with low threshold (0.01) so we can filter client-side + const ttlStale = arbCacheMarketsStamp < 0 || (now - arbCacheTimestamp) >= ARB_CACHE_TTL_MS; + const marketsMoved = arbCacheMarketsStamp !== cacheTimestamp; + + if (ttlStale || marketsMoved) { + const reason = marketsMoved && !ttlStale + ? 'markets refreshed under us' + : 'TTL elapsed'; + console.log(`[Arbitrage Cache] recomputing (${reason})...`); cachedArbitrage = detectArbitrage(markets, 0.01); arbCacheTimestamp = now; - console.log(`[Arbitrage Cache] Cached ${cachedArbitrage.length} opportunities (minSpread: 0.01, TTL: ${ARB_CACHE_TTL_MS}ms)`); + arbCacheMarketsStamp = cacheTimestamp; + console.log(`[Arbitrage Cache] cached ${cachedArbitrage.length} opportunities (minSpread: 0.01, TTL: ${ARB_CACHE_TTL_MS}ms)`); } - // Filter cached results by requested minSpread const filtered = cachedArbitrage.filter(arb => arb.spread >= minSpread); - console.log(`[Arbitrage Cache] Returning ${filtered.length}/${cachedArbitrage.length} opportunities (minSpread: ${minSpread})`); - + console.log(`[Arbitrage Cache] returning ${filtered.length}/${cachedArbitrage.length} opportunities (minSpread: ${minSpread})`); return filtered; } diff --git a/api/lib/rate-limit.ts b/api/lib/rate-limit.ts index 4680801..f91cfff 100644 --- a/api/lib/rate-limit.ts +++ b/api/lib/rate-limit.ts @@ -1,31 +1,52 @@ /** - * Sliding-window per-IP rate limiter backed by Vercel KV (Upstash Redis). + * Per-IP rate limiter. * - * Design goals: - * • O(1) per check — uses a single INCR + EXPIRE, no list walking. - * • Fail-open — if KV is unavailable we ALLOW the request rather than - * block legitimate traffic. Rate limiting is a secondary safeguard; - * availability matters more. - * • Zero coupling — endpoints call `enforceRateLimit(req, res, …)`; - * if the function writes a 429 response it returns `true` and the - * caller bails out; otherwise the endpoint proceeds. + * Implements an approximate **sliding-window** counter via the two-bucket + * weighted method of Cloudflare / nginx lua: * - * Default limits (overridable via env or per-endpoint call): - * • 60 requests per rolling 60-second window per IP + * weighted_count = current_bucket + previous_bucket * (1 - elapsed_frac) * - * Security note: `X-Forwarded-For` can be spoofed if the API isn't - * behind a trusted proxy. Vercel's edge network rewrites this header - * to the client's real IP, so we trust it here. If you self-host, - * replace `getClientIp` with a trusted-proxy-aware version. + * where `elapsed_frac` is how far we are through the current fixed + * bucket (0..1). This smooths out the boundary effect of a naive + * fixed-window counter (where a client could make `2 * max` requests in + * a couple of seconds straddling the boundary) down to at most `max + 1`. + * + * Backing store: + * • Vercel KV (Upstash Redis), for cross-instance counting. + * • An in-process Map as a fast-path fallback when KV is unavailable + * or slow. The in-process counter is authoritative within a single + * warm serverless instance; the KV counter is best-effort across + * instances. + * + * Honest limitations: + * • The KV read-modify-write is NOT atomic. Under concurrent load on + * the same key, increments can race. The in-process layer masks + * this within a single instance. Across instances we accept a + * small drift (usually < max_requests / 10). This is fine for + * API rate limiting — we'd rather allow a few extra requests + * than drop legitimate traffic on contention. + * • `X-Forwarded-For` is trusted as the client IP. Vercel's edge + * rewrites this header to the real client IP, but if you deploy + * outside Vercel behind an untrusted proxy you need a different + * `getClientIp`. + * • Fail-open semantics: a KV error does NOT return 429. The + * in-process counter still enforces within the instance; across + * instances traffic gets through. We prefer availability over + * strict enforcement. + * + * Endpoints wire in via `enforceRateLimit(req, res, opts)` which also + * writes `X-RateLimit-Limit` / `-Remaining` / `-Reset` headers on every + * response (so well-behaved bots can self-pace instead of waiting for + * a 429) and `Retry-After` on 429s. */ import type { VercelRequest, VercelResponse } from '@vercel/node'; import { kv } from './vercel-kv'; -// In-process fallback counter, used when KV is unavailable (local dev -// without Upstash credentials, transient network errors, etc.). Keyed -// identically to the KV path so behavior is consistent. +// In-process fallback counter, used when KV is unavailable. +// Keyed identically to the KV path so behavior is consistent. const inProcessCounters = new Map(); + function pruneCounters(): void { const now = Date.now(); for (const [k, v] of inProcessCounters.entries()) { @@ -51,10 +72,14 @@ export interface RateLimitOptions { export interface RateLimitResult { allowed: boolean; + /** Remaining requests the caller can make in the current window. */ remaining: number; + /** The configured per-window limit. */ limit: number; + /** Seconds until the current window rolls over. */ resetSeconds: number; - source: 'kv' | 'disabled' | 'error'; + /** Where the counter came from for this decision. */ + source: 'kv' | 'kv-with-local' | 'local-only'; } function getClientIp(req: VercelRequest): string { @@ -84,41 +109,58 @@ export async function checkRateLimit( const maxRequests = Math.max(1, opts.maxRequests ?? DEFAULT_MAX_REQUESTS); const bucket = opts.bucket ?? (typeof req.url === 'string' ? req.url.split('?')[0] : 'default'); const ip = getClientIp(req); - const windowId = Math.floor(Date.now() / 1000 / windowSeconds); - const key = `rl:${bucket}:${ip}:${windowId}`; - // Fast local path for when KV is not wired. Also protects the main - // path from KV latency if the store is slow: a stale +1 there is fine - // (we're within the 60-req window anyway). - const localCount = bumpLocalCounter(key, windowSeconds); + const nowSec = Date.now() / 1000; + const windowId = Math.floor(nowSec / windowSeconds); + const keyCurr = `rl:${bucket}:${ip}:${windowId}`; + const keyPrev = `rl:${bucket}:${ip}:${windowId - 1}`; + + // Always bump the in-process counter first. This gives us a floor we + // can rely on even if KV is slow or unavailable. + const localCount = bumpLocalCounter(keyCurr, windowSeconds); + const localPrev = peekLocalCounter(`rl:${bucket}:${ip}:${windowId - 1}`); + + // Fraction of the current window that has elapsed (0 at bucket start, + // approaches 1 at bucket end). + const elapsedFrac = (nowSec - windowId * windowSeconds) / windowSeconds; + const resetSeconds = Math.max(1, Math.ceil(windowSeconds * (1 - elapsedFrac))); try { - // Read-modify-write against KV. Two round-trips but O(1) each, and - // the worst-case race just lets one extra request through per - // concurrent pair — which is acceptable for rate limiting. - const current = (await kv.get(key)) ?? 0; - const next = current + 1; - await kv.set(key, next, { ex: windowSeconds * 2 }); - const count = Math.max(next, localCount); - const allowed = count <= maxRequests; + // Read both buckets, write the incremented current bucket. + const [prev, curr] = await Promise.all([ + kv.get(keyPrev), + kv.get(keyCurr), + ]); + const prevCount = Math.max((prev ?? 0) as number, localPrev); + const currCount = Math.max((curr ?? 0) as number, localCount); + // Best-effort write-through of the incremented count. Not atomic + // with the read — races can lose one increment under concurrent + // load on the same key, which we accept. + await kv.set(keyCurr, currCount, { ex: windowSeconds }); + + const weighted = currCount + prevCount * (1 - elapsedFrac); + const effective = Math.ceil(weighted); + const allowed = effective <= maxRequests; return { allowed, - remaining: Math.max(0, maxRequests - count), + remaining: Math.max(0, maxRequests - effective), limit: maxRequests, - resetSeconds: windowSeconds - (Math.floor(Date.now() / 1000) % windowSeconds), - source: 'kv', + resetSeconds, + source: 'kv-with-local', }; } catch (err) { - // Fail open, but still enforce the in-process counter so a single - // serverless instance under flood gets protected. + // Fail open at the HTTP level, but still enforce the in-process + // counter so a single serverless instance under flood is protected. console.warn('[rate-limit] KV unavailable, using in-process only:', err instanceof Error ? err.message : err); - const allowed = localCount <= maxRequests; + const weighted = localCount + localPrev * (1 - elapsedFrac); + const effective = Math.ceil(weighted); + const allowed = effective <= maxRequests; return { allowed, - remaining: Math.max(0, maxRequests - localCount), + remaining: Math.max(0, maxRequests - effective), limit: maxRequests, - resetSeconds: windowSeconds, - source: 'error', + resetSeconds, + source: 'local-only', }; } } @@ -135,6 +177,11 @@ function bumpLocalCounter(key: string, windowSeconds: number): number { return nextCount; } +function peekLocalCounter(key: string): number { + pruneCounters(); + return inProcessCounters.get(key)?.count ?? 0; +} + /** * Convenience wrapper: checks the limit AND writes a 429 response if * exhausted. Returns `true` if the caller should short-circuit, `false` @@ -147,8 +194,6 @@ export async function enforceRateLimit( ): Promise { const result = await checkRateLimit(req, opts); - // Always surface rate-limit headers — useful even on 200s so bots can - // self-pace instead of waiting for a 429. res.setHeader('X-RateLimit-Limit', String(result.limit)); res.setHeader('X-RateLimit-Remaining', String(result.remaining)); res.setHeader('X-RateLimit-Reset', String(result.resetSeconds)); From 34b2e9179216840ce9f3c3996b362db16f60c6a7 Mon Sep 17 00:00:00 2001 From: john_wang Date: Mon, 20 Apr 2026 17:31:28 -0500 Subject: [PATCH 14/14] polish: scale-down reachability, HOLD reasoning, alternative-sizing semantics MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Three follow-up corrections surfaced by re-reading the public-facing response shapes after the previous review pass. `src/analysis/risk.ts` — `SCALE_DOWN` was structurally unreachable via the bankroll-fraction branch whenever `bankroll` was omitted, because the inferred bankroll (`stake / maxFrac`) made `stake / bankroll` exactly equal to `maxFrac`. The module now tracks whether `bankroll` was supplied: when it is, both SCALE_DOWN branches apply as documented; when it is not, the bankroll-fraction check is skipped and a warning is surfaced telling the caller to pass `bankroll` for a complete assessment. The dollar worst-case is also bounded at `-stake` (previously `-stake * (1 + cost)`, which propagated an impossible "loss exceeds stake" figure to clients); `bestCase` is floored at `0`. `src/analysis/signal-generator.ts` — when `computeEdge` recommends YES or NO on raw edge but fees and slippage push `evPerDollar` non-positive, `buildSuggestedAction` overrode the direction to `HOLD` but preserved the original reasoning string (for example, "YES underpriced at X%"). The payload is now internally consistent: on the override path the reasoning is rewritten to explain that raw edge favoured the side but net EV is non-positive. `api/position-sizing.ts` — `alternative_sizing.half_kelly` and `quarter_kelly` were previously computed as `recommendedStake / 2` and `recommendedStake / 4`. Because `recommendedStake` is already capped at `min(kelly_cap, max_bankroll_fraction)` of bankroll, those values did not correspond to one-half and one-quarter of the full Kelly fraction. Both fields are now derived from the uncapped full Kelly fraction (`kellyFraction(shrunk_prob, yes_price)`), with the same outer risk cap applied so the "safer" sizings never exceed the recommended stake or the caller's hard risk limit. A new `full_kelly_fraction` field exposes the uncapped value for clients that want to reason about it explicitly. Verified: typecheck and wallet tests pass; matcher evaluation delta unchanged at -22.9 pp junk rate; back-test KELLY total return 17.4%, Sharpe (active) 0.923, win rate (active) 71.0%. Direct smoke tests confirm all three behavioural corrections. --- api/position-sizing.ts | 26 +++++++++++++++++-------- src/analysis/risk.ts | 33 ++++++++++++++++++++++++-------- src/analysis/signal-generator.ts | 11 ++++++++++- 3 files changed, 53 insertions(+), 17 deletions(-) diff --git a/api/position-sizing.ts b/api/position-sizing.ts index 0889cc9..227d8cb 100644 --- a/api/position-sizing.ts +++ b/api/position-sizing.ts @@ -1,5 +1,5 @@ import type { VercelRequest, VercelResponse } from '@vercel/node'; -import { computeEdge } from '../src/analysis/edge'; +import { computeEdge, kellyFraction } from '../src/analysis/edge'; import { DEFAULT_FEES, FeeModel, getFeeModel } from '../src/analysis/fees'; import { enforceRateLimit } from './lib/rate-limit'; @@ -135,10 +135,19 @@ export default async function handler(req: VercelRequest, res: VercelResponse): }); const rawKelly = refined.kellyFraction; - const kellyFraction = Math.min(rawKelly, maxFrac); - const recommendedStake = Math.max(0, body.bankroll * kellyFraction); - const halfKelly = recommendedStake / 2; - const quarterKelly = recommendedStake / 4; + const kellyFractionCapped = Math.min(rawKelly, maxFrac); + const recommendedStake = Math.max(0, body.bankroll * kellyFractionCapped); + + // Half-Kelly and quarter-Kelly are computed against the uncapped full + // Kelly fraction so the names match what practitioners expect. Each + // result is still bounded by the outer risk limits (`kelly_cap` and + // `max_bankroll_fraction`) so these "safer" sizings can never exceed + // the recommended stake or the caller's hard risk cap. + const shrunkProbForAlt = confidence * body.true_prob + (1 - confidence) * body.yes_price; + const fullKellyAbs = refined.side === 'HOLD' ? 0 : Math.abs(kellyFraction(shrunkProbForAlt, body.yes_price)); + const outerCap = Math.min(kellyCap, maxFrac); + const halfKellyStake = Math.max(0, body.bankroll * Math.min(fullKellyAbs * 0.5, outerCap)); + const quarterKellyStake = Math.max(0, body.bankroll * Math.min(fullKellyAbs * 0.25, outerCap)); const expectedProfit = recommendedStake * refined.evPerDollar; const worstCase = -recommendedStake * refined.worstCaseLoss; @@ -155,11 +164,12 @@ export default async function handler(req: VercelRequest, res: VercelResponse): side: refined.side, recommended_stake: round(recommendedStake), alternative_sizing: { - half_kelly: round(halfKelly), - quarter_kelly: round(quarterKelly), + half_kelly: round(halfKellyStake), + quarter_kelly: round(quarterKellyStake), flat_1pct_bankroll: round(body.bankroll * 0.01), }, - kelly_fraction: round(kellyFraction, 4), + full_kelly_fraction: round(fullKellyAbs, 4), + kelly_fraction: round(kellyFractionCapped, 4), edge_raw: round(refined.edgeRaw, 4), edge_net: round(refined.edgeNet, 4), ev_per_dollar: round(refined.evPerDollar, 4), diff --git a/src/analysis/risk.ts b/src/analysis/risk.ts index b823b88..6747ef2 100644 --- a/src/analysis/risk.ts +++ b/src/analysis/risk.ts @@ -94,13 +94,18 @@ export function assessRisk(input: RiskInputs): RiskAssessment { const stddev = Math.sqrt(variance); const sharpe = stddev > 0 ? expectedValue / stddev : 0; - // For a single binary trade PnL > 0 iff our side wins. + // For a single binary trade PnL > 0 iff our side wins. Binary-option + // longs on Polymarket and Kalshi cannot lose more than the stake; fees + // are already reflected in `evPerDollar`, so the worst-case dollar loss + // is bounded at `-stake`. const probProfit = winProb; - const worstCase = -input.stake * (1 + cost); - const bestCase = input.stake * (payoutIfWin - cost); + const worstCase = -input.stake; + const bestCase = Math.max(0, input.stake * (payoutIfWin - cost)); - // Kelly-suggested stake in dollars. We reuse the edge module and cap at - // `maxBankrollFraction` of the bankroll (default 10%). + // Kelly-suggested stake in dollars. We reuse the edge module; when the + // caller supplies a bankroll the cap is `maxBankrollFraction` of that + // value, otherwise we compute a display-only figure and skip the + // bankroll-fraction SCALE_DOWN branch below. const edge = computeEdge({ trueProb, yesPrice: yes, @@ -110,7 +115,10 @@ export function assessRisk(input: RiskInputs): RiskAssessment { confidence: input.confidence ?? 1, }); const maxFrac = clamp(input.maxBankrollFraction ?? 0.1, 0, 1); - const bankroll = input.bankroll && input.bankroll > 0 ? input.bankroll : input.stake / Math.max(maxFrac, 0.01); + const bankrollProvided = typeof input.bankroll === 'number' && input.bankroll > 0; + const bankroll = bankrollProvided + ? (input.bankroll as number) + : input.stake / Math.max(maxFrac, 0.01); const kellyStake = edge.side === input.side ? bankroll * Math.min(edge.kellyFraction, maxFrac) : 0; @@ -121,6 +129,7 @@ export function assessRisk(input: RiskInputs): RiskAssessment { evPerDollar, stake: input.stake, bankroll, + bankrollProvided, maxFrac, timeToExpiryDays, volume24h: input.volume24h, @@ -136,6 +145,7 @@ export function assessRisk(input: RiskInputs): RiskAssessment { stake: input.stake, kellyStake, bankroll, + bankrollProvided, maxFrac, }); @@ -179,6 +189,7 @@ function buildWarnings(ctx: { evPerDollar: number; stake: number; bankroll: number; + bankrollProvided: boolean; maxFrac: number; timeToExpiryDays: number | null; volume24h: number; @@ -193,7 +204,9 @@ function buildWarnings(ctx: { if (ctx.recommendedSide !== 'HOLD' && ctx.recommendedSide !== ctx.actualSide) { w.push(`Model prefers ${ctx.recommendedSide} side; you chose ${ctx.actualSide}.`); } - if (ctx.bankroll > 0 && ctx.stake / ctx.bankroll > ctx.maxFrac) { + if (!ctx.bankrollProvided) { + w.push('Bankroll not provided; SCALE_DOWN checks against wealth are skipped. Pass `bankroll` for a full assessment.'); + } else if (ctx.bankroll > 0 && ctx.stake / ctx.bankroll > ctx.maxFrac) { w.push(`Stake is ${((ctx.stake / ctx.bankroll) * 100).toFixed(1)}% of bankroll, above ${(ctx.maxFrac * 100).toFixed(0)}% cap.`); } if (ctx.volume24h < 5_000) { @@ -215,12 +228,16 @@ function chooseRecommendation(ctx: { stake: number; kellyStake: number; bankroll: number; + bankrollProvided: boolean; maxFrac: number; }): Recommendation { if (ctx.evPerDollar <= 0) return 'AVOID'; if (ctx.recommendedSide !== 'HOLD' && ctx.recommendedSide !== ctx.side) return 'AVOID'; if (ctx.kellyStake > 0 && ctx.stake > ctx.kellyStake * 1.5) return 'SCALE_DOWN'; - if (ctx.bankroll > 0 && ctx.stake / ctx.bankroll > ctx.maxFrac) return 'SCALE_DOWN'; + // Bankroll-fraction check only fires when the caller supplied a real + // bankroll. Without one we cannot meaningfully compare the stake to + // wealth, so we defer to the Kelly-vs-stake check above. + if (ctx.bankrollProvided && ctx.bankroll > 0 && ctx.stake / ctx.bankroll > ctx.maxFrac) return 'SCALE_DOWN'; return 'TAKE'; } diff --git a/src/analysis/signal-generator.ts b/src/analysis/signal-generator.ts index 03f8390..f33496f 100644 --- a/src/analysis/signal-generator.ts +++ b/src/analysis/signal-generator.ts @@ -147,6 +147,15 @@ function buildSuggestedAction( const direction: Direction = edgeResult.side; if (direction === 'HOLD' || edgeResult.evPerDollar <= 0) { + // When the raw edge favours a side (YES or NO) but costs push the + // expected value non-positive, `edgeResult.reasoning` still reads as + // "YES underpriced at X%" even though we are overriding to HOLD. + // Rewrite the reasoning so the returned payload is internally + // consistent. + const reasoning = direction === 'HOLD' + ? edgeResult.reasoning + : `Raw edge favours ${direction} at ${(edgeResult.marketPrice * 100).toFixed(1)}%, ` + + `but fees and slippage push EV/$ to ${edgeResult.evPerDollar.toFixed(3)}. HOLD.`; return { direction: 'HOLD', confidence: 0, @@ -154,7 +163,7 @@ function buildSuggestedAction( ev_per_dollar: edgeResult.evPerDollar, kelly_fraction: 0, breakeven_prob: edgeResult.breakevenProb, - reasoning: edgeResult.reasoning, + reasoning, }; }