The
User-Agent header is required for all requests. Use the format AppName/Version (+URL) — for example, MyApp/1.0 (+https://example.com).Endpoints
| Method | Path | Description |
|---|---|---|
| GET | /v1/seasons | Returns all seasons |
| GET | /v1/seasons/{uuid} | Returns a single season by UUID |
| GET | /v1/seasons/competitive | Returns all competitive season data |
| GET | /v1/seasons/competitive/{uuid} | Returns a single competitive season by UUID |
GET /v1/seasons
Returns an array of all Valorant seasons, including episodes and acts.Request parameters
Identifies your application. Format:
AppName/Version (+URL).Locale for localized display names. Example:
de-DE, vi-VN.Example request
Response
GET /v1/seasons/
Returns a single season matching the provided UUID.Request parameters
The UUID of the season to retrieve.
Identifies your application. Format:
AppName/Version (+URL).Locale for localized display names.
Example request
cURL
GET /v1/seasons/competitive
Returns an array of all competitive season records. Each record links a season act to the competitive tier set active during that period.Request parameters
Identifies your application. Format:
AppName/Version (+URL).Locale for localized data.
Example request
cURL
Response
GET /v1/seasons/competitive/
Returns a single competitive season record by UUID.Request parameters
The UUID of the competitive season to retrieve.
Identifies your application. Format:
AppName/Version (+URL).Locale for localized data.
Example request
cURL
Response fields
Season fields
Unique identifier for the season.
Localized display name of the season (e.g.,
"EPISODE 8 ACT 3").Season type identifier. Common values:
"EAresSeasonType::Act", "EAresSeasonType::Episode".ISO 8601 UTC timestamp for the season’s start date.
ISO 8601 UTC timestamp for the season’s end date.
UUID of the parent episode. Present on act-type seasons;
null on episode-type seasons.Internal Unreal Engine asset path.
Competitive season fields
Unique identifier for the competitive season record.
ISO 8601 UTC timestamp for when ranked play opened for this act.
ISO 8601 UTC timestamp for when ranked play closed for this act.
UUID of the corresponding season act. Use this to join with the
/v1/seasons response.UUID of the competitive tier set active during this season. Use this to join with the
/v1/competitivetiers response.Internal Unreal Engine asset path.