skills$openclaw/odds-api-io
diegopetrucci8.1k

by diegopetrucci

odds-api-io – OpenClaw Skill

odds-api-io is an OpenClaw Skills integration for coding workflows. Query Odds-API.io for sports events, bookmakers, and betting odds (e.g., "what are the odds for Inter vs Arsenal", "get odds for Paddy the Baddie vs Gaethje"). Use when you need to call the Odds-API.io v3 API or interpret its responses; requires a user-provided API key.

8.1k stars5.8k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameodds-api-io
descriptionQuery Odds-API.io for sports events, bookmakers, and betting odds (e.g., "what are the odds for Inter vs Arsenal", "get odds for Paddy the Baddie vs Gaethje"). Use when you need to call the Odds-API.io v3 API or interpret its responses; requires a user-provided API key. OpenClaw Skills integration.
ownerdiegopetrucci
repositorydiegopetrucci/odds-checker-api
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @diegopetrucci/odds-checker-api
last updatedFeb 7, 2026

Maintainer

diegopetrucci

diegopetrucci

Maintains odds-api-io in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
references
odds-api-reference.md
1.7 KB
scripts
odds_api.py
10.8 KB
_meta.json
297 B
SKILL.md
1.6 KB
SKILL.md

name: odds-api-io description: Query Odds-API.io for sports events, bookmakers, and betting odds (e.g., "what are the odds for Inter vs Arsenal", "get odds for Paddy the Baddie vs Gaethje"). Use when you need to call the Odds-API.io v3 API or interpret its responses; requires a user-provided API key.

Odds-API.io

Overview

Use Odds-API.io to search events and fetch odds by event ID. This skill includes a small CLI helper and a concise endpoint reference.

Quick workflow

  1. Provide the API key via ODDS_API_KEY or --api-key (never store it in this skill).
  2. Find sports and bookmakers if needed.
  3. Search for the event to get its ID.
  4. Fetch odds for the event with a bookmaker list.
# 1) List sports and bookmakers
python3 odds-api-io/scripts/odds_api.py sports
python3 odds-api-io/scripts/odds_api.py bookmakers

# 2) Search for an event
python3 odds-api-io/scripts/odds_api.py search --query "Inter vs Arsenal" --sport football

# 3) Fetch odds for the chosen event ID
python3 odds-api-io/scripts/odds_api.py odds --event-id 123456 --bookmakers "Bet365,Unibet"

# Optional: one-step search + odds
python3 odds-api-io/scripts/odds_api.py matchup --query "Inter vs Arsenal" --sport football --bookmakers "Bet365,Unibet"

CLI helper

Use scripts/odds_api.py for API calls. Pass global flags like --api-key and --dry-run before the subcommand. Prefer --dry-run to preview the URL when testing without a key. Use --summary on odds or matchup for a compact output.

Reference material

Load references/odds-api-reference.md for base URL, endpoint summaries, and response fields.

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install odds-api-io?

Run openclaw add @diegopetrucci/odds-checker-api in your terminal. This installs odds-api-io into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/diegopetrucci/odds-checker-api. Review commits and README documentation before installing.