Get Live Sports Scores
Fetch real-time scores for games currently in progress across major sports leagues.
Live scores, standings & schedules
Real-time game data across football, basketball, American football, baseball, and hockey. Live scores, results by date, team schedules, league standings, and team search.
Get live scores across all supported sports. Returns all currently in-progress games with teams, scores, match status, and elapsed time or period.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "sports-scores",
"skill": "live_scores",
"input": {
"sport": "football"
}
}' \
https://api.toolrouter.com/v1/tools/callGet game scores and schedules for a specific date. Returns all games for that date with teams, scores, status (scheduled, live, or finished), start time, and venue.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "sports-scores",
"skill": "scores_by_date",
"input": {
"sport": "football",
"date": "2026-03-20"
}
}' \
https://api.toolrouter.com/v1/tools/callGet upcoming and recent games for a specific team. Searches for the team by name, then returns their full season fixtures with opponents, scores, dates, and competition details.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "sports-scores",
"skill": "team_schedule",
"input": {
"sport": "football",
"team_name": "Arsenal"
}
}' \
https://api.toolrouter.com/v1/tools/callSearch for a team by name across any supported sport. Returns matching teams with their ID, name, logo, and league. Use team IDs with other skills.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "sports-scores",
"skill": "search_team",
"input": {
"sport": "football",
"query": "Manchester"
}
}' \
https://api.toolrouter.com/v1/tools/callGet league standings and table for any supported sport. Returns team rankings with wins, losses, draws, points, goal/point difference, and qualification status.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "sports-scores",
"skill": "standings",
"input": {
"sport": "football",
"league_name": "Premier League"
}
}' \
https://api.toolrouter.com/v1/tools/callclaude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"sports-scores","skill":"live_scores","input":{}}' \
https://api.toolrouter.com/v1/tools/callFetch real-time scores for games currently in progress across major sports leagues.
Monitor league standings and team rankings across conferences, divisions, and tables.
Find relevant academic papers on any research topic across millions of scholarly publications.
Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.
Create engaging trivia quizzes with general knowledge, fun facts, and current sports scores.
Yes. `live_scores` returns currently in-progress games with scores, match status, elapsed time or period, league, and venue across the supported sports.
Yes. `scores_by_date` shows fixtures and results for any `YYYY-MM-DD` date, including scheduled, live, and finished games.
`team_schedule` gives the full season calendar for one team, and `standings` returns league rankings with wins, losses, draws, points, and qualification status.
The tool covers football, basketball, American football, baseball, and hockey. `search_team` helps you find the exact team name before pulling schedules or standings.