Screen Polymarket prediction markets by category, probability, liquidity, and track probability changes to find high-value opportunities.
Filter and analyze prediction markets on Polymarket using their public API. Find undervalued bets, track probability movements, and discover high-opportunity markets.
| Capability | Manual Browsing | Polymarket Screener |
|---|---|---|
| Filter by probability range | ❌ Limited | ✅ Exact range (e.g., 20%-40%) |
| Filter by liquidity | ❌ No | ✅ Min/max liquidity filters |
| Track probability changes | ❌ Manual checking | ✅ Automated tracking with delta |
| Multi-category scan | ❌ One at a time | ✅ All categories at once |
| Probability movement alerts | ❌ No | ✅ Configurable thresholds |
| Historical probability data | ❌ Limited chart | ✅ Exportable time series |
| Bulk opportunity scoring | ❌ No | ✅ Automated scoring |
| Custom watchlists | ❌ No | ✅ JSON watchlist with tracking |
| Export to HTML report | ❌ No | ✅ Professional report output |
| Sort by expected value | ❌ No | ✅ Built-in EV calculator |
No API key needed — Polymarket's public API is free.
# List active markets
bash scripts/polymarket-screener.sh list --limit 20
# Filter by category
bash scripts/polymarket-screener.sh list --category politics --limit 50
# Find high-opportunity markets (low probability, high liquidity)
bash scripts/polymarket-screener.sh opportunities --min-liquidity 50000 --prob-range "5-30"
# Track probability changes
bash scripts/polymarket-screener.sh track --market-id MARKET_SLUG --hours 48
# Generate full screening report
bash scripts/polymarket-screener.sh report --output polymarket-report.html
Markets are scored based on:
Score = (Liquidity Factor × 0.3) + (Probability Edge × 0.3) + (Time Value × 0.2) + (Movement × 0.2)
Liquidity Factor: Higher liquidity = higher score (easier to enter/exit)
Probability Edge: Markets with probabilities far from 50% but trending = opportunity
Time Value: Markets resolving soon with high uncertainty = valuable
Movement: Recent probability shifts indicate new information
| Command | Output File | Contents |
|---|---|---|
list | Console / JSON | Market listings with key stats |
opportunities | Console / JSON | Scored opportunity list |
track | tracking-SLUG.json | Probability time series |
report | polymarket-report.html | Full visual report |
watchlist | watchlist.json | Saved markets with alerts |
Polymarket's public API has rate limits. The screener respects these automatically:
⚠️ Prediction markets involve real money and financial risk. This tool provides analysis only — it does not place bets or manage positions. Always do your own research.
ZIP package — ready to use