DOCS / GAMES / VALORANT

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.

Get an API key Read the quickstart

What you can call

GET /v1/tournaments?game=valorant

Active VCT tournaments

VCT international leagues, Masters, Champions, Challengers regional circuits, and Game Changers.

GET /v1/matches?game=valorant

Matches by game

Bo3 and Bo5 with per-map results. Cursor pagination, never offset. Up to 200 per page.

GET /v1/matches/:id

One match

Canonical record — teams, map pick/ban when carried by Liquipedia, broadcast, scheduled time, final score.

GET /v1/teams/:slug

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:

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.