Install
openclaw skills install polymarket-football-oddsAnalyze Polymarket football/soccer match URLs and estimate match win/draw probabilities using API-Football/API-SPORTS. Use when the user provides a polymarket.com event or market URL for a soccer match and asks to identify the teams, query API-Football, calculate 1X2 probabilities, compare with Polymarket implied odds, or produce a win-probability summary.
openclaw skills install polymarket-football-oddsUse this skill to turn a Polymarket football URL into a football fixture lookup and a probability summary. The bundled TypeScript script extracts the Polymarket slug, fetches Gamma event/market metadata, infers the two teams, matches the fixture in API-Football, calls API-Football predictions, and prints home/draw/away probabilities.
Require an API-Football/API-SPORTS key in the environment. Do not hardcode the key in files or messages.
API_FOOTBALL_KEY="..." node --experimental-strip-types scripts/analyze-polymarket-football.ts "https://polymarket.com/event/..."
Use --json when the caller wants machine-readable output:
API_FOOTBALL_KEY="..." node --experimental-strip-types scripts/analyze-polymarket-football.ts "https://polymarket.com/event/..." --json
/event/{slug} URLs, /market/{slug} URLs, and raw slugs.--fixture-id.--json: print structured JSON instead of a human summary.--fixture-id <id>: bypass fixture matching and call API-Football predictions for a known fixture ID.--date YYYY-MM-DD: override the date used for fixture search.--days <n>: search plus/minus n days around the Polymarket date or --date; default is 1.--self-test: run local parser tests without network calls or API keys.Read references/api-football-polymarket.md before changing endpoint behavior. Use official endpoints only:
x-apisports-key request header./predictions.If the script cannot confidently identify two teams, do not invent team names. Explain which Polymarket title/outcomes were found and ask the user for the teams or fixture ID.
If API-Football returns no prediction for a fixture, report the fixture match and say prediction coverage is unavailable for that match. Do not substitute bookmaker odds as model probabilities unless the user explicitly asks for an odds-implied calculation.