Polymarket Scraper avatar
Polymarket Scraper

Pricing

$5.00/month + usage

Go to Apify Store
Polymarket Scraper

Polymarket Scraper

A lightweight Polymarket scraper that collects real-time market data, including events, outcomes, prices, and volumes. Designed for speed and reliability, it enables analysis, monitoring, and data-driven insights from Polymarket markets.

Pricing

$5.00/month + usage

Rating

0.0

(0)

Developer

FetchCraft Labs

FetchCraft Labs

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a month ago

Last modified

Share

Polymarket Events Feed

Pull a clean feed of Polymarket events (with their markets) sorted the way you need. Use it for quick scans or to plug into dashboards and alerts.

Where it helps

  • Traders and curators: spot the most active or liquid events without opening the site.
  • Newsrooms and researchers: grab a snapshot of what people are betting on right now.
  • Dashboard/automation users: drop the feed into your ETL or scripts for alerts, watchlists, or reports.

Inputs

  • results (integer, default 20, max 1000): Total events to fetch.
  • order (select, default volume24hr): Sort by volume24hr, volume1wk, volume1mo, volume1yr, volume, liquidity, or startDate (set ascending=false for latest first).
  • ascending (boolean, default false): Sort direction.
  • proxyConfiguration (object, default {"useApifyProxy": true}): Apify proxy settings.

Example input:

{
"results": 200,
"order": "startDate",
"ascending": false,
"proxyConfiguration": { "useApifyProxy": true }
}

Output

One item per event in the default dataset, plus a compact markets array. Key fields: eventId, ticker, title, startDate, endDate, volume24hr, liquidity, marketCount, and per-market basics (marketId, question, bestBid, bestAsk, outcomes, outcomePrices, etc.). Duplicate icons are removed if they match the event image.

Download via dataset URL:

$curl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?clean=true&format=json"

Example output (truncated):

{
"eventId": "84898",
"ticker": "will-trump-release-epstein-files-by",
"title": "Will Trump release Epstein files by...?",
"startDate": "2024-12-30T22:06:34.105524Z",
"endDate": null,
"volume24hr": 3852379.264017,
"liquidity": 92081.52379,
"marketCount": 1,
"markets": [
{
"marketId": "459086",
"question": "Yes",
"bestBid": 0.37,
"bestAsk": 0.38,
"outcomes": ["Yes"],
"outcomePrices": [0.38]
}
]
}