Awesome-openclaw-skills the-sports-db
Access sports data via TheSportsDB (teams, events, scores).
install
source · Clone the upstream repo
git clone https://github.com/sundial-org/awesome-openclaw-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/the-sports-db" ~/.claude/skills/sundial-org-awesome-openclaw-skills-the-sports-db && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/the-sports-db" ~/.openclaw/skills/sundial-org-awesome-openclaw-skills-the-sports-db && rm -rf "$T"
manifest:
skills/the-sports-db/SKILL.mdsource content
TheSportsDB
Free sports database.
Configuration
Ensure
THE_SPORTS_DB_KEY is set in ~/.clawdbot/.env. (Default test key is often 123 or 3).
Usage
Search Team
curl -s "https://www.thesportsdb.com/api/v1/json/$THE_SPORTS_DB_KEY/searchteams.php?t=Palmeiras"
Last Events (Scores)
Get last 5 events for a team ID:
curl -s "https://www.thesportsdb.com/api/v1/json/$THE_SPORTS_DB_KEY/eventslast.php?id=134465"
Next Events (Fixtures)
Get next 5 events for a team ID:
curl -s "https://www.thesportsdb.com/api/v1/json/$THE_SPORTS_DB_KEY/eventsnext.php?id=134465"
Note: Rate limit is 30 requests/minute.