Documentation Index
Fetch the complete documentation index at: https://docs.nextsportsapi.com/llms.txt
Use this file to discover all available pages before exploring further.
Team pages usually combine team metadata, fixtures, standings, and paginated player statistics.
curl --request GET \
"https://api.nextsportsapi.com/v1/football/teams?id=T3MUN7A" \
--header "Authorization: Bearer YOUR_API_KEY"
Team fixtures
curl --request GET \
"https://api.nextsportsapi.com/v1/football/fixtures?team=T3MUN7A&season=2026&league=L7K9Q2R" \
--header "Authorization: Bearer YOUR_API_KEY"
Team standings
curl --request GET \
"https://api.nextsportsapi.com/v1/football/standings?team=T3MUN7A&season=2026" \
--header "Authorization: Bearer YOUR_API_KEY"
Player statistics
curl --request GET \
"https://api.nextsportsapi.com/v1/football/players?team=T3MUN7A&season=2026&page=1" \
--header "Authorization: Bearer YOUR_API_KEY"
Recommended workflow
- Cache
teams as reference data.
- Refresh player statistics after match completion.
- Refresh fixture lists around schedule changes and matchdays.
- Use paginated player statistics when building full squad tables.