{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/odds-checker-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=odds-checker-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "references/odds-api-reference.md",
      "scripts/odds_api.py",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/odds-checker-api",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Overview",
        "body": "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."
      },
      {
        "title": "Quick workflow",
        "body": "Provide the API key via ODDS_API_KEY or --api-key (never store it in this skill).\nFind sports and bookmakers if needed.\nSearch for the event to get its ID.\nFetch odds for the event with a bookmaker list.\n\n# 1) List sports and bookmakers\npython3 odds-api-io/scripts/odds_api.py sports\npython3 odds-api-io/scripts/odds_api.py bookmakers\n\n# 2) Search for an event\npython3 odds-api-io/scripts/odds_api.py search --query \"Inter vs Arsenal\" --sport football\n\n# 3) Fetch odds for the chosen event ID\npython3 odds-api-io/scripts/odds_api.py odds --event-id 123456 --bookmakers \"Bet365,Unibet\"\n\n# Optional: one-step search + odds\npython3 odds-api-io/scripts/odds_api.py matchup --query \"Inter vs Arsenal\" --sport football --bookmakers \"Bet365,Unibet\""
      },
      {
        "title": "CLI helper",
        "body": "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."
      },
      {
        "title": "Reference material",
        "body": "Load references/odds-api-reference.md for base URL, endpoint summaries, and response fields."
      }
    ],
    "body": "Odds-API.io\nOverview\n\nUse Odds-API.io to search events and fetch odds by event ID. This skill includes a small CLI helper and a concise endpoint reference.\n\nQuick workflow\nProvide the API key via ODDS_API_KEY or --api-key (never store it in this skill).\nFind sports and bookmakers if needed.\nSearch for the event to get its ID.\nFetch odds for the event with a bookmaker list.\n# 1) List sports and bookmakers\npython3 odds-api-io/scripts/odds_api.py sports\npython3 odds-api-io/scripts/odds_api.py bookmakers\n\n# 2) Search for an event\npython3 odds-api-io/scripts/odds_api.py search --query \"Inter vs Arsenal\" --sport football\n\n# 3) Fetch odds for the chosen event ID\npython3 odds-api-io/scripts/odds_api.py odds --event-id 123456 --bookmakers \"Bet365,Unibet\"\n\n# Optional: one-step search + odds\npython3 odds-api-io/scripts/odds_api.py matchup --query \"Inter vs Arsenal\" --sport football --bookmakers \"Bet365,Unibet\"\n\nCLI helper\n\nUse 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.\n\nReference material\n\nLoad references/odds-api-reference.md for base URL, endpoint summaries, and response fields."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/diegopetrucci/odds-checker-api",
    "publisherUrl": "https://clawhub.ai/diegopetrucci/odds-checker-api",
    "owner": "diegopetrucci",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}