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

MethodPathDescription
GET/v1/eventsReturns all events
GET/v1/events/{uuid}Returns a single event by UUID

GET /v1/events

Returns an array of all Valorant in-game events.

Request parameters

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

Example request

curl --request GET \
  --url "https://astra.teamfortuna.xyz/v1/events" \
  --header "User-Agent: MyApp/1.0 (+https://example.com)"

Response

{
  "status": 200,
  "data": [
    {
      "uuid": "68143e6d-473a-0593-22a5-daadbe65807b",
      "displayName": "",
      "shortDisplayName": "",
      "startTime": "2025-01-24T22:00:00Z",
      "endTime": "2025-02-13T22:00:00Z",
      "assetPath": "ShooterGame/Content/Events/2025LNY_Event_Pass/Event_2025LNY_DataAssetV2"
    }
  ]
}

GET /v1/events/

Returns a single event matching the provided UUID.

Request parameters

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

Example request

cURL
curl --request GET \
  --url "https://astra.teamfortuna.xyz/v1/events/68143e6d-473a-0593-22a5-daadbe65807b" \
  --header "User-Agent: MyApp/1.0 (+https://example.com)"

Response

{
  "status": 200,
  "data": {
    "uuid": "68143e6d-473a-0593-22a5-daadbe65807b",
    "displayName": "",
    "shortDisplayName": "",
    "startTime": "2025-01-24T22:00:00Z",
    "endTime": "2025-02-13T22:00:00Z",
    "assetPath": "ShooterGame/Content/Events/2025LNY_Event_Pass/Event_2025LNY_DataAssetV2"
  }
}

Response fields

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