Tools/sports
Sports

Sports

Active

Your agent's scores and fixtures are out of date; this returns live results, schedules, and team details.

5 tools

Live scores, fixtures, results, and details for teams, leagues, players, and events across soccer, basketball, and many other sports. Data provided by TheSportsDB (thesportsdb.com). Search by name to get an ID, then look up details, schedules, or live scores.

Knowledge & Referencesportsscoreslivescoresfixturesteamsleagues

Tools (5)

Current live scores for a sport, a specific league, or all sports.

0.1 credits/call ($0.0001) · 0.1 credits per call

Example prompts

  • What soccer games are live right now?
  • Show me all live scores
  • Live scores for basketball

Parameters

sportstringrequired

A sport name (e.g. soccer, basketball, ice_hockey), a numeric league id, or "all".

API Usage

curl -X POST "https://skill.askfaro.com/skills/sports/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "What soccer games are live right now?"
  }
}'

CLI Usage

askfaro describe sports/livescore

Install pip install askfaro-cli, then askfaro auth login.

The next or previous events for a league.

0.1 credits/call ($0.0001) · 0.1 credits per call

Example prompts

  • What are the next Premier League fixtures?
  • Show the most recent NBA results
  • Upcoming events for league 4328

Parameters

whenstringrequired

next for upcoming events, previous for recent ones.

league_idstringrequired

Numeric TheSportsDB league id (find it via search with type "league").

API Usage

curl -X POST "https://skill.askfaro.com/skills/sports/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "What are the next Premier League fixtures?"
  }
}'

CLI Usage

askfaro describe sports/schedule

Install pip install askfaro-cli, then askfaro auth login.

The full schedule of events for a league in a given season.

0.1 credits/call ($0.0001) · 0.1 credits per call

Example prompts

  • Full Premier League schedule for 2025-2026
  • All events for league 4328 in season 2025-2026

Parameters

seasonstringrequired

Season, e.g. 2025-2026 or 2026.

league_idstringrequired

Numeric TheSportsDB league id.

API Usage

curl -X POST "https://skill.askfaro.com/skills/sports/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "Full Premier League schedule for 2025-2026"
  }
}'

CLI Usage

askfaro describe sports/season_schedule

Install pip install askfaro-cli, then askfaro auth login.

Search for a team, player, league, event, or venue by name.

0.1 credits/call ($0.0001) · 0.1 credits per call

Example prompts

  • Search for the team Arsenal
  • Find the league English Premier League
  • Look up the player Lionel Messi

Parameters

typestringrequired

What kind of entity to search for.

querystringrequired

The name to search for (e.g. Arsenal, Premier League).

API Usage

curl -X POST "https://skill.askfaro.com/skills/sports/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "Search for the team Arsenal"
  }
}'

CLI Usage

askfaro describe sports/search

Install pip install askfaro-cli, then askfaro auth login.

Look up full details for a team, player, league, or event by id.

0.1 credits/call ($0.0001) · 0.1 credits per call

Example prompts

  • Look up team 133604
  • Get details for event 2477061
  • Look up league 4328

Parameters

idstringrequired

Numeric TheSportsDB id (from a search result).

typestringrequired

What kind of entity to look up.

API Usage

curl -X POST "https://skill.askfaro.com/skills/sports/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "Look up team 133604"
  }
}'

CLI Usage

askfaro describe sports/lookup

Install pip install askfaro-cli, then askfaro auth login.