Polymarket Markets Scraper avatar

Polymarket Markets Scraper

Pricing

from $1.00 / 1,000 results

Go to Apify Store
Polymarket Markets Scraper

Polymarket Markets Scraper

Scrapes all active prediction markets from Polymarket including prices, token IDs, volume, liquidity, end dates, and categories. Optionally fetches live CLOB prices. Filter by category tag, minimum volume, or minimum liquidity.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

Max Galli

Max Galli

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Scrapes active prediction markets from Polymarket via the Gamma API and returns clean, structured JSON data ready for analysis, trading bots, research, or dashboards.

What you get per market

FieldDescription
market_idUnique Polymarket market ID
condition_idOn-chain condition ID (Polygon)
event_titleParent event name
questionThe market question
tagsCategory tags (e.g. temperature, crypto, politics)
token_yesYES token ID for CLOB trading
token_noNO token ID for CLOB trading
yes_priceCurrent YES probability (0–1)
no_priceCurrent NO probability (0–1)
clob_yes_priceLive orderbook YES price (if includeLivePrices=true)
volume_24h24-hour trading volume in USDC
volume_totalAll-time trading volume in USDC
liquidityCurrent liquidity in USDC
end_dateMarket close date/time (ISO 8601)
time_remainingHuman-readable time left (e.g. 12h 30m)
resolvedWhether the market has resolved
resolution_valueResolution outcome (if resolved)
scraped_atTimestamp of this scrape

Input options

ParameterDefaultDescription
tags[] (all)Filter by category: temperature, crypto, politics, sports, economics, etc.
activeOnlytrueOnly return open markets
includeResolvedfalseInclude resolved markets for historical data
includeLivePricesfalseFetch real-time CLOB prices (slower)
maxMarkets2000Cap on results returned
minVolume24h0Minimum 24h USDC volume filter
minLiquidity0Minimum USDC liquidity filter

Example use cases

  • Trading bots — feed market data into your own strategy engine
  • Arbitrage scanners — compare Polymarket prices to Kalshi or other platforms
  • Research & analytics — export all markets to CSV for analysis
  • Price monitoring — track specific market prices over time
  • Weather/temperature markets — filter tags: ["temperature"] for all weather buckets

Example output

{
"market_id": "12345",
"event_title": "Highest temperature in London on March 24, 2026",
"question": "Will the high be 14-14°C?",
"tags": ["temperature"],
"token_yes": "0xabc123...",
"token_no": "0xdef456...",
"yes_price": 0.18,
"no_price": 0.82,
"volume_24h": 450.50,
"liquidity": 1200.00,
"time_remaining": "11h 30m",
"end_date": "2026-03-24T23:00:00Z",
"resolved": false,
"scraped_at": "2026-03-23T18:00:00+00:00"
}

Notes

  • Data is sourced from Polymarket's public Gamma API — no API key required
  • Prices reflect the last traded price, not live orderbook mid. Use includeLivePrices=true for real-time orderbook prices
  • Polymarket operates on Polygon blockchain; token IDs can be used directly with the py-clob-client SDK