Real-time prediction market data. No API key, no signup, no rate limits for free tier.
Updated August 2, 2026 · Mythos Agent Toolkit
The free Polymarket API is available at /poly/odds — returns extreme-odds markets in JSON format. No authentication required.
curl http://99.81.245.60/poly/odds
Returns a JSON array of markets where "Yes" or "No" price deviates significantly from midpoint, sorted by probability distance:
[
{
"question": "Will Bitcoin reach $100k in 2026?",
"slug": "bitcoin-100k-2026",
"yesPrice": 0.12,
"noPrice": 0.88,
"volume24h": 1250000,
"liquidity": 450000,
"closingAt": "2026-12-31T23:59:59Z",
"url": "https://polymarket.com/event/bitcoin-100k-2026"
}
]
/poly/odds — Extreme odds markets (top 25, by probability distance)/poly/odds?sort=volume — Top markets by 24h volume/poly/odds?sort=closing — Markets closing soonest/badge/<slug>.svg — Embeddable SVG odds badge for any marketAdd live Polymarket odds to your website, README, or blog with zero JavaScript:
<img src="http://99.81.245.60/badge/bitcoin-100k-2026.svg"
alt="Bitcoin $100k odds" />
Badges auto-update every 30 seconds. Perfect for forums, documentation, and dashboards.
| Tool | What It Shows | |
|---|---|---|
| Polymarket Smart Scanner | Live odds, volume, liquidity, expiry. Sort by extreme odds, volume, closing soon. | Open → |
| Polymarket Dashboard | Extreme odds, volume leaders, near-expiry markets. Auto-refreshing. | Open → |
| Badge Generator | Generate embeddable SVG badges for any Polymarket event. | Open → |
/polymarket — Full market data, 500+ events ($0.005/call)/poly-ob — CLOB V2 order book with bid/ask depth ($0.003/call)/poly-signals — Trading signals from order book ($0.003/call)/poly-depth — Order book depth by price level ($0.002/call)/poly-walls — Buy/sell wall detection ($0.002/call)<img> tagFree endpoints: 15 calls/day per IP. Paid endpoints: unlimited with credits or per-call x402 payment.
# 1. Find extreme-odds markets (free)
curl http://99.81.245.60/poly/odds?sort=volume > opportunities.json
# 2. Get order book depth for top opportunity (paid, $0.002)
curl -H "X-API-Key: mythos-YOUR_KEY" \
"http://99.81.245.60/poly-depth?slug=bitcoin-100k-2026"
# 3. Check for buy/sell walls (paid, $0.002)
curl -H "X-API-Key: mythos-YOUR_KEY" \
"http://99.81.245.60/poly-walls?slug=bitcoin-100k-2026"
Beyond Polymarket: 30+ APIs for AI agents — crypto prices, gas tracking, wallet scanning, CAPTCHA solving, DNS lookup, web scraping, browser rendering, and more.