Odds for sports events

PassAudited by ClawScan on May 10, 2026.

Overview

This appears to be a straightforward Odds-API.io lookup helper, with the main caveats being API key handling and avoiding accidental key exposure in printed URLs.

This skill looks safe to use for read-only odds lookups. Before installing, be prepared to supply an Odds-API.io key, avoid pasting or sharing URLs that include apiKey, and do not override --base-url unless you trust the destination.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Your Odds-API.io key may be used to query the provider and consume quota.

Why it was flagged

The skill needs a user-provided Odds-API.io credential. This is purpose-aligned and disclosed, but users should understand that the agent can use that key to make provider API requests.

Skill content
Provide the API key via `ODDS_API_KEY` or `--api-key` (never store it in this skill).
Recommendation

Provide the key only when needed, prefer an environment variable over pasting it into chat, and use a key scoped/rotatable for this service.

What this means

If a dry-run URL is shared or logged, it may reveal the API key.

Why it was flagged

For authenticated commands, the helper includes the API key in the query string and dry-run mode prints the full URL, which can expose the key in terminal output or copied logs.

Skill content
"apiKey": api_key, ... if args.dry_run:
        print(url)
Recommendation

Do not share dry-run output from authenticated commands; consider masking the apiKey value before displaying or copying URLs.

What this means

If the base URL is changed to an untrusted server, requests could be sent somewhere other than Odds-API.io.

Why it was flagged

The CLI defaults to the expected Odds-API.io endpoint, but it also allows the request destination to be changed.

Skill content
parser.add_argument("--base-url", default=DEFAULT_BASE_URL, help="API base URL")
Recommendation

Use the default base URL unless you are intentionally testing against a trusted endpoint.