Your agent's scores and fixtures are out of date; this returns live results, schedules, and team details.
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.
Current live scores for a sport, a specific league, or all sports.
A sport name (e.g. soccer, basketball, ice_hockey), a numeric league id, or "all".
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?"
}
}'askfaro describe sports/livescore
Install pip install askfaro-cli, then askfaro auth login.
next for upcoming events, previous for recent ones.
Numeric TheSportsDB league id (find it via search with type "league").
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?"
}
}'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.
Season, e.g. 2025-2026 or 2026.
Numeric TheSportsDB league id.
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"
}
}'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.
What kind of entity to search for.
The name to search for (e.g. Arsenal, Premier League).
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"
}
}'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.
Numeric TheSportsDB id (from a search result).
What kind of entity to look up.
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"
}
}'askfaro describe sports/lookup
Install pip install askfaro-cli, then askfaro auth login.