Game APIs/Valorant API

Valorant API

Planned VCT matches, player stats, teams, and agent data

BASEhttps://api.citoapi.com/api/v1
Valorant 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/live
Live MatchesPlanned live competitive match feed

Summary

Planned live competitive match feed

REST
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

Summary

Planned match detail endpoint

REST
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

Summary

Planned player statistics and history

REST
curl "https://api.citoapi.com/api/v1/valorant/players/{username}" \
  -H "x-api-key: YOUR_API_KEY"
GET/api/v1/valorant/tournaments
List TournamentsPlanned VCT tournament list

Summary

Planned VCT tournament list

REST
curl "https://api.citoapi.com/api/v1/valorant/tournaments" \
  -H "x-api-key: YOUR_API_KEY"
GET/api/v1/valorant/teams
List TeamsPlanned professional team directory

Summary

Planned professional team directory

REST
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
        }
      ]
    }
  }
}