Season

This entity represents the seasons associated with an athlete. It is returned as a nested object within the athlete object in the getAthlete API response. Each season can include multiple statistics related to the athlete’s performance for that period.

Field

Type

Description

name

VARCHAR(9)

Name of the season (e.g., "2024-2025")

info

VARCHAR(256)

Additional information about the season (e.g., team name)

created

DATE

Timestamp when the season record was created

stats

Array of Season Stat

List of statistics for this season, each containing a name and value

Example:

The seasons field appears inside the athlete object as shown below:

"seasons": [
{
"name": "2024-2025",
"info": "Red Star",
"created": "2025-09-30 11:26",
"stats": [
{
"name": "Games Played",
"value": 45.0
},
{
"name": "Games as Starter",
"value": 42.0
},
{
"name": "3-Points",
"value": 12.0
},
{
"name": "Free Throws",
"value": 23.0
},
{
"name": "Points",
"value": 45.0
},
{
"name": "Rebounds",
"value": 34.0
},
{
"name": "Assists",
"value": 23.0
},
{
"name": "Blocks",
"value": 12.0
},
{
"name": "Turnover",
"value": 19.0
},
{
"name": "Minutes",
"value": 542.0
}
]
},
{
"name": "2022-2023",
"info": "Red Star",
"created": "2025-09-30 12:38",
"stats": [
{
"name": "Games Played",
"value": 23.0
},
{
"name": "Games as Starter",
"value": 15.0
},
{
"name": "3-Points",
"value": 10.0
},
{
"name": "Free Throws",
"value": 5.0
},
{
"name": "Points",
"value": 2.0
}
]
}
],

Published with Nuclino