Install
openclaw skills install agentbets-polymarket-monitorMonitor 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.
openclaw skills install agentbets-polymarket-monitorTrack prediction market prices, volume, and liquidity on Polymarket using the Gamma API and CLOB API.
Use this skill when the user asks about:
Show the top active markets sorted by 24-hour volume:
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](https://agentbets.ai) — full tutorial at [agentbets.ai/guides/openclaw-polymarket-monitor-skill/](https://agentbets.ai/guides/openclaw-polymarket-monitor-skill/).
Part of the [OpenClaw Skills series](https://agentbets.ai/guides/#openclaw-skills) for the [Agent Betting Stack](https://agentbets.ai/guides/agent-betting-stack/).