euroleague_game_stats
Retrieve box score for one EuroLeague game: player lines for both teams, team totals, and coach, using season and game code.
Instructions
Box score for one game: both teams' player lines plus team totals and coach.
Returns: {local:{team, coach, total:{…team totals…}, players:[{player:{person, dorsal, position, club}, stats:{timePlayed, valuation, points, fieldGoalsMade2/3, freeThrowsMade, offensiveRebounds, defensiveRebounds, assistances, steals, turnovers, plusMinus, foulsCommited}}]}, road:{…}} — a player line is NESTED as {player, stats}: identity under player, numbers under stats. valuation is EuroLeague's PIR efficiency metric. timePlayed is SECONDS as a float (1088.0 = 18:08), not a MM:SS string.
Example: Box score for game 1 {"competition": "E", "season": "E2024", "gameCode": 1}
Auth: none needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| season | Yes | Season code. Required — part of the URL path. | |
| gameCode | Yes | Per-season game code. Required — part of the URL path. | |
| competition | No | Competition letter. One of: E, U. | E |