Skip to main content
The Events API provides data on Valorant’s time-limited in-game events, including seasonal celebrations like Night Market, annual tournaments such as VALORANT Champions, and anniversary activations. Each event entry includes its display name, short name, and start and end timestamps so you can accurately represent event windows in your application.
The User-Agent header is required for all requests. Use the format AppName/Version (+URL) — for example, MyApp/1.0 (+https://example.com).

Endpoints


GET /v1/events

Returns an array of all Valorant in-game events.

Request parameters

string
required
Identifies your application. Format: AppName/Version (+URL).
string
default:"en-US"
Locale for localized display names. Example: zh-CN, th-TH.

Example request

Response


GET /v1/events/

Returns a single event matching the provided UUID.

Request parameters

string
required
The UUID of the event to retrieve.
string
required
Identifies your application. Format: AppName/Version (+URL).
string
default:"en-US"
Locale for localized display names.

Example request

cURL

Response


Response fields

string
required
Unique identifier for the event.
string
required
Localized full display name of the event (e.g., "VALORANT Champions 2024").
string
Abbreviated localized name suitable for compact UI contexts (e.g., "Champions 2024").
string
ISO 8601 UTC timestamp for when the event began (e.g., "2024-08-01T00:00:00Z").
string
ISO 8601 UTC timestamp for when the event ended (e.g., "2024-08-25T00:00:00Z").
string
Internal Unreal Engine asset path.
Use startTime and endTime to filter for currently active events by comparing against the current UTC time.