GET Deprecated Auth User Season List
/web/user/season
Retrieve the authenticated player's season information using a valid JWT. Supports query parameter for localization (lang). Requires an Authorization header with the JWT from login.
Headers:
- Authorization:
Bearer <jwt>(JWT obtained during login).
Query parameters:
- lang: Language code for localized content (default:
en).
The response includes:
- sids: List of season identifiers representing the seasons in which the player has participated or has tracked statistics.
This endpoint is useful for:
- Displaying season history.
- Linking performance data to specific seasons.
- Enabling clients to fetch season-specific stats or achievements.
{
"code": 0,
"message": "Success",
"traceID": "74879d32961c1784a762671398979ac6",
"data": {
"sids": [
40,
39,
38,
37
]
}
}