Install
openclaw skills install @tonywangcn/prediction-markets-researchPulls prediction-market odds, order books, and forecast questions from Polymarket, Kalshi, and Metaculus via the Crawlora API, returning clean JSON. Use when the user asks what the market thinks will happen, wants current odds/prices for an event, wants a market's price history or order book, or wants a forecasting community's aggregate prediction on a question.
openclaw skills install @tonywangcn/prediction-markets-researchPull live and historical odds, order books, and forecast questions from Polymarket, Kalshi, and Metaculus as normalized JSON — no scraping market-maker sites or parsing raw order-book blobs.
export CRAWLORA_API_KEY=sk_your_key_herex-api-key: $CRAWLORA_API_KEY against
https://api.crawlora.net/api/v1. Missing/invalid key → 401./polymarket/search or /polymarket/events to find an
event; /polymarket/event/{slug} for detail (nested markets);
/polymarket/market/{id} for one market; then token-level pricing via
/polymarket/token/{token_id}/price|midpoint|orderbook|spread|price-history
(or the batched POST /polymarket/tokens/prices etc. for up to 25 at once).
/polymarket/leaderboard and /polymarket/dashboards/macro cover traders
and macro events./kalshi/events / /kalshi/markets to browse; /kalshi/event/{event_ticker}
or /kalshi/market/{ticker} for detail; /kalshi/market/{ticker}/history
for candlesticks, /kalshi/market/{ticker}/orderbook for depth,
/kalshi/trades for recent fills. /kalshi/historical/* covers settled
(closed) markets./metaculus/questions to browse; /metaculus/question/{id}
for detail; /metaculus/question/{id}/forecasts for the current
community aggregate, /forecast-history for how it moved over time.Full endpoint list, methods, and params: reference/endpoints.md.
# Polymarket:
scripts/crawlora.sh /polymarket/search q="fed rate cut" | jq '.'
scripts/crawlora.sh /polymarket/event/will-the-fed-cut-rates | jq '.'
# Kalshi:
scripts/crawlora.sh /kalshi/markets | jq '.markets[:5]'
scripts/crawlora.sh /kalshi/market/INXD-24DEC31-T5000/history | jq '.'
# Metaculus:
scripts/crawlora.sh /metaculus/questions | jq '.results[:5]'
scripts/crawlora.sh /metaculus/question/12345/forecasts | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/polymarket/markets" | jq '.'
See reference/endpoints.md for every Polymarket,
Kalshi, and Metaculus endpoint this skill uses.
/polymarket/search and /kalshi/markets
for the same real-world event, compare implied probabilities./kalshi/market/{ticker}/history or
/polymarket/token/{token_id}/price-history plotted over time to see how
sentiment shifted./metaculus/question/{id}/forecasts (community
aggregate) alongside the matching Polymarket/Kalshi market price.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it./polymarket/tokens/*) accept up to 25 ids per call —
chunk larger lists.