Events
List events, get event info, matches and standings
The vlrdevapi.events module provides event listings and details.
Functions
events.list_events()
List events with filters for tier, region, and status
events.info()
Get event header information and metadata
events.matches()
Retrieve matches for a specific event
events.stages()
List available stages (Playoffs, Groups, etc.) for an event
events.standings()
Fetch standings and prize distribution data
events.match_summary()
Summarize match statistics for an event
Quick Example
import vlrdevapi as vlr
from vlrdevapi.events import EventTier, EventStatus
# Get ongoing VCT events
events = vlr.events.list_events(
tier=EventTier.VCT,
status=EventStatus.ONGOING,
limit=5
)
for e in events:
print(f"{e.name}")
print(f" Status: {e.status}")
print(f" Prize: {e.prize or 'N/A'}")
print(f" Dates: {e.start_text} - {e.end_text}")Related
- Search events: /docs/api/search/search-events
- Matches: /docs/api/matches/index
Source
- Data scraped from: https://www.vlr.gg/events