Prefer to chat? Query the API with natural language using our AI Skill →

Give your AI tool live Cito endpoint context before you write integration code.

Open AI Skill

Public docs assistant

Tell Cito API what you are building.

Get endpoint recommendations, exact requests, code snippets, and a free-key CTA without digging through every page.

Game APIs/Valorant API

Valorant API

Planned 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.

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

Planned live competitive match feed

GET/api/v1/valorant/matches/{id}

Planned match detail endpoint

GET/api/v1/valorant/players/{username}

Planned player statistics and history

GET/api/v1/valorant/tournaments

Planned VCT tournament list

GET/api/v1/valorant/teams

Planned professional team directory

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