VlrDevApi

Events

List events, get event info, matches and standings

The vlrdevapi.events module provides event listings and details.

Functions

Quick Example

List ongoing VCT events
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