Game APIs/Valorant API

Valorant API

VCT matches, player stats, teams, and agent data

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.

Endpoints

GET/v1/valorant/matches/live

Returns currently active competitive matches

GET/v1/valorant/matches/{id}

Get details for a specific match

GET/v1/valorant/players/{username}

Get player statistics and history

GET/v1/valorant/tournaments

List all VCT tournaments

GET/v1/valorant/tournaments/{id}

Get tournament details

GET/v1/valorant/teams

List professional teams

GET/v1/valorant/teams/{id}

Get team details and roster

GET/v1/valorant/leaderboards/{region}

Get regional leaderboards

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