Valorant API
Planned VCT matches, player stats, teams, and agent data
BASE
https://api.citoapi.com/api/v1Valorant API RootAppend any endpoint path below.
COMING SOON
Valorant API Launching Soon
We're working hard to bring you comprehensive Valorant esports data. Be the first to know when it's ready - enter your email below.
Planned Endpoints
These paths are not live yet. Join the waitlist above if you want early access when Valorant coverage opens.
GET/api/v1/valorant/matches/liveLive MatchesPlanned live competitive match feed
GET
/api/v1/valorant/matches/liveLive MatchesPlanned live competitive match feed
curl "https://api.citoapi.com/api/v1/valorant/matches/live" \
-H "x-api-key: YOUR_API_KEY"GET/api/v1/valorant/matches/{id}IdPlanned match detail endpoint
GET
/api/v1/valorant/matches/{id}IdPlanned match detail endpoint
curl "https://api.citoapi.com/api/v1/valorant/matches/{id}" \
-H "x-api-key: YOUR_API_KEY"GET/api/v1/valorant/players/{username}UsernamePlanned player statistics and history
GET
/api/v1/valorant/players/{username}UsernamePlanned player statistics and history
curl "https://api.citoapi.com/api/v1/valorant/players/{username}" \
-H "x-api-key: YOUR_API_KEY"GET/api/v1/valorant/tournamentsList TournamentsPlanned VCT tournament list
GET
/api/v1/valorant/tournamentsList TournamentsPlanned VCT tournament list
curl "https://api.citoapi.com/api/v1/valorant/tournaments" \
-H "x-api-key: YOUR_API_KEY"GET/api/v1/valorant/teamsList TeamsPlanned professional team directory
GET
/api/v1/valorant/teamsList TeamsPlanned professional team directory
curl "https://api.citoapi.com/api/v1/valorant/teams" \
-H "x-api-key: YOUR_API_KEY"Live Matches
Get real-time data from VCT and ranked matches including round-by-round scores, player stats, and economy tracking.
Example Response
{
"data": [
{
"id": "match_val_98765",
"tournament": "VCT Americas",
"teams": {
"team_a": {
"name": "Sentinels",
"score": 9,
"players": [
{
"username": "TenZ",
"agent": "Jett",
"kills": 18,
"deaths": 12,
"assists": 4,
"acs": 287,
"first_bloods": 5
}
]
},
"team_b": {
"name": "Cloud9",
"score": 7,
"players": [...]
}
},
"map": "Ascent",
"status": "live",
"current_round": 17,
"started_at": "2026-01-15T20:00:00Z"
}
]
}Player Statistics
{
"data": {
"username": "TenZ",
"tag": "SEN",
"team": "Sentinels",
"region": "NA",
"rank": "Radiant",
"stats": {
"career": {
"matches": 2847,
"kills": 48293,
"deaths": 31204,
"assists": 12847,
"kd_ratio": 1.55,
"headshot_pct": 28.4,
"avg_acs": 256
},
"agents": [
{
"agent": "Jett",
"games": 847,
"win_rate": 58.2,
"avg_acs": 278
},
{
"agent": "Reyna",
"games": 412,
"win_rate": 55.1,
"avg_acs": 265
}
]
}
}
}