Get game history for a specific athlete with summary display stats
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
athleteId | number | Yes | - | The unique identifier of the athlete (also accepts athletes) |
numOfGames | number | No | 50 | Maximum number of games to return |
athleteId and athletes parameter names are supported. The API accepts either for convenience.| Field | Type | Description |
|---|---|---|
lastUpdateId | number | Internal versioning ID for incremental updates |
requestedUpdateId | number | Requested update ID (-1 = latest) |
ttl | number | Cache TTL in seconds (60 for this endpoint) |
games | array | Array of game objects with athlete summary stats |
sports | array | Sports definitions for matched entities |
countries | array | Countries referenced by games |
competitions | array | Competitions referenced by games |
competitors | array | Teams referenced by games |
| Field | Type | Description |
|---|---|---|
id | number | Unique game ID |
sportId | number | Sport ID (1 = Football) |
competitionId | number | Competition ID |
competitionDisplayName | string | Full competition name |
seasonNum | number | Season number |
stageNum | number | Stage number within competition |
roundNum | number | Round number |
roundName | string | Human-readable round name |
homeCompetitorId | number | Home team ID |
awayCompetitorId | number | Away team ID |
statusGroup | number | Game status group (4 = Ended) |
statusText | string | Human-readable status |
shortStatusText | string | Short status (FT, HT, etc.) |
gameTime | number | Current/final game time in minutes |
startTime | string | ISO 8601 kickoff time |
homeCompetitorScore | number | Home team score |
awayCompetitorScore | number | Away team score |
played | boolean | Whether athlete played in this game |
athleteStats | array | Summary display stats (see below) |
athleteStats field contains an array of summary display statistics with numeric type IDs:
| Type ID | Description |
|---|---|
| 229 | Jersey number |
| 0 | Match result indicator / rating |
| 27 | Goals (when available) |
| 26 | Assists (when available) |
/athletes/games endpoint provides summary data. For detailed performance metrics, combine it with /athletes/games/lineups:
| Status | Description |
|---|---|
| 400 | Missing required athleteId parameter |
| 401 | Invalid or missing API key |
| 429 | Rate limit exceeded |
| 500 | Internal server error |