Polymarket Monitor
by @rsquaredsolutions2026
Monitor Polymarket prediction markets for price movements, volume spikes, and new listings. Track specific markets, check order book depth, and surface trend...
clawhub install agentbets-polymarket-monitor📖 About This Skill
name: polymarket-monitor description: "Monitor Polymarket prediction markets for price movements, volume spikes, and new listings. Track specific markets, check order book depth, and surface trending predictions. Use when asked about Polymarket, prediction market prices, market volume, or contract probabilities." metadata: openclaw: emoji: "🔮" requires: bins: ["curl", "jq"]
Polymarket Monitor
Track prediction market prices, volume, and liquidity on Polymarket using the Gamma API and CLOB API.
When to Use
Use this skill when the user asks about:
Key Concepts
Operations
1. List Trending Markets
Show the top active markets sorted by 24-hour volume:
```bash curl -s "https://gamma-api.polymarket.com/markets?closed=false&active=true&order=volume24hr&ascending=false&limit=10" \ | jq '[.[] | { question: .question, price_yes: (.outcomePrices // "[]" | fromjson | .[0] // "N/A"), price_no: (.outcomePrices // "[]" | fromjson | .[1] // "N/A"), volume_24h: ((.volume24hr // 0) | tonumber | round), total_volume: ((.volumeNum // 0) | tonumber | round), liquidity: ((.liquidityNum // 0) | tonumber | round), end_date: .endDate }]'
About
Built by AgentBets — full tutorial at agentbets.ai/guides/openclaw-polymarket-monitor-skill/.
Part of the OpenClaw Skills series for the Agent Betting Stack.