> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sportsapipro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Constructor / Team Endpoints

> 12 endpoints for motorsport constructor data: Red Bull, Mercedes, Ferrari, Ducati

## Constructor / Team Endpoints (12)

All endpoints use base URL `https://api.sportsapipro.com/v2/motorsport`.

<Note>
  In motorsport, both **drivers** and **constructors** are exposed as teams. A driver-team (e.g. Verstappen `191417`) supports `/events/last`, `/near-events`, `/performance`, `/media`. A constructor-team (e.g. Ducati Lenovo `214539`, Red Bull Racing `214902`) does **not** expose `/players`, `/events/last`, or `/near-events` from upstream — those return `404` by design. To list a constructor's drivers, use the championship roster via `/api/motorsport/tournament/:id/season/:sid/standings` or search.
</Note>

```bash theme={null}
GET /api/teams/:id                      # Constructor details (Red Bull, Mercedes, Ferrari, Ducati)
GET /api/teams/:id/image                # Team logo URL
GET /api/teams/:id/players              # Current drivers / riders
GET /api/teams/:id/events/last/:page    # Recent race results (paginated)
GET /api/teams/:id/events/next/:page    # Upcoming races
GET /api/teams/:id/near-events          # Next scheduled race
GET /api/teams/:id/unique-tournaments   # Championships entered
GET /api/teams/:id/performance          # Recent form
GET /api/teams/:id/media                # Team media
GET /api/teams/:id/featured-event       # Next big race
GET /api/teams/:id/player-statistics/seasons
GET /api/teams/:id/tournament/:tid/season/:sid/statistics?type=overall
```
