> ## 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.

# Build Team Pages

> Build team profile pages with team metadata, fixtures, standings, and player statistics.

Team pages usually combine team metadata, fixtures, standings, and paginated player statistics.

## Team metadata

```bash theme={"system"}
curl --request GET \
  "https://api.nextsportsapi.com/v1/football/teams?id=T3MUN7A" \
  --header "Authorization: Bearer YOUR_API_KEY"
```

## Team fixtures

```bash theme={"system"}
curl --request GET \
  "https://api.nextsportsapi.com/v1/football/fixtures?team=T3MUN7A&season=2026&league=L7K9Q2R" \
  --header "Authorization: Bearer YOUR_API_KEY"
```

## Team standings

```bash theme={"system"}
curl --request GET \
  "https://api.nextsportsapi.com/v1/football/standings?team=T3MUN7A&season=2026" \
  --header "Authorization: Bearer YOUR_API_KEY"
```

## Player statistics

```bash theme={"system"}
curl --request GET \
  "https://api.nextsportsapi.com/v1/football/players?team=T3MUN7A&season=2026&page=1" \
  --header "Authorization: Bearer YOUR_API_KEY"
```

## Recommended workflow

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.
