Skip to main content

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.

Team metadata

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"
  1. Cache teams as reference data.
  2. Refresh player statistics after match completion.
  3. Refresh fixture lists around schedule changes and matchdays.
  4. Use paginated player statistics when building full squad tables.
Last modified on May 19, 2026