Valorant coverage. Champions Tour, end-to-end.
Valorant is a Phase-1 game alongside LoL, CS2 and Dota 2. Fixtures, results, brackets
and roster history sourced from Liquipedia (CC-BY-SA 3.0); per-map scores when
available. The VCT international leagues (Americas, EMEA, Pacific, China), Challengers
and Game Changers all land in the same game=valorant filter.
What you can call
Active VCT tournaments
VCT international leagues, Masters, Champions, Challengers regional circuits, and Game Changers.
Matches by game
Bo3 and Bo5 with per-map results. Cursor pagination, never offset. Up to 200 per page.
One match
Canonical record — teams, map pick/ban when carried by Liquipedia, broadcast, scheduled time, final score.
Team page
Roster, recent results, head-to-head, regional partnership. Backfilled to the start of franchising.
Capability flags
Valorant carries the full Phase-1 MOBA-equivalent feature set on /v1/games/valorant:
fixtures— every scheduled matchresults— every completed match with final scorematch_stats— per-match participant stats (Hobbyist+)brackets— tournament bracket DAG (Hobbyist+)
The capability middleware returns 200 plus meta.note when a tier carries the
capability but the game’s depth doesn’t reach it yet — never 402. That way an
under-covered surface stays visible without becoming a billing error.
Try it
curl -H "Authorization: Bearer $STADAR_API_KEY"
"https://api.stadar.net/v1/matches?game=valorant&status=live&limit=20" from stadar import Stadar
client = Stadar(api_key="esp_live_...")
for match in client.matches.list(game="valorant", status="live", limit=20):
print(match.id, match.scheduled_at, match.teams) Attribution
Valorant reference data is sourced from Liquipedia contributors. Every response
includes a meta.sources array with article URLs and licence. Do not strip it —
same hard rule as the other Phase-1 games, set out in our Attribution Policy.