# Send Odds for sports events to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "odds-checker-api",
    "name": "Odds for sports events",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/diegopetrucci/odds-checker-api",
    "canonicalUrl": "https://clawhub.ai/diegopetrucci/odds-checker-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/odds-checker-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=odds-checker-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "references/odds-api-reference.md",
      "scripts/odds_api.py",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "odds-checker-api",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T08:21:33.915Z",
      "expiresAt": "2026-05-13T08:21:33.915Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=odds-checker-api",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=odds-checker-api",
        "contentDisposition": "attachment; filename=\"odds-checker-api-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "odds-checker-api"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/odds-checker-api"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/odds-checker-api",
    "downloadUrl": "https://openagent3.xyz/downloads/odds-checker-api",
    "agentUrl": "https://openagent3.xyz/skills/odds-checker-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/odds-checker-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/odds-checker-api/agent.md"
  }
}
```
## Documentation

### 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

Provide the API key via ODDS_API_KEY or --api-key (never store it in this skill).
Find sports and bookmakers if needed.
Search for the event to get its ID.
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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: diegopetrucci
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T08:21:33.915Z
- Expires at: 2026-05-13T08:21:33.915Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/odds-checker-api)
- [Send to Agent page](https://openagent3.xyz/skills/odds-checker-api/agent)
- [JSON manifest](https://openagent3.xyz/skills/odds-checker-api/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/odds-checker-api/agent.md)
- [Download page](https://openagent3.xyz/downloads/odds-checker-api)