BetaRead the CS2 API docs

CS2 rankings, world and VRS.

The world team ranking and the Valve Regional Standings, with points and movement since the previous ranking, and a table for each region.

  • World ranking
  • Valve Regional Standings
  • Six regions
GET /cs2/rankings/vrs?limit=3200 OK
$ curl "https://api.citoapi.com/api/v1/cs2/rankings/vrs?limit=3" \ -H "x-api-key: $CITO_API_KEY"
{  "success": true,  "data": [    {      "rank": 1,      "teamName": "Spirit",      "points": 2039,      "change": 0,      "region": "Europe"    },    {      "rank": 2,      "teamName": "Legacy",      "points": 1897,      "change": 0,      "region": "South America"    },    {      "rank": 3,      "teamName": "Vitality",      "points": 1884,      "change": 2,      "region": "Europe"    }  ]}

Seamless Integration with our MCP Server

Give Claude, Cursor, and ChatGPT the CS2 data. One command writes the MCP config; agents call live scoreboard, team map stat, opening duel, and transfer tools instead of inventing match IDs, and your key stays on your machine.

MCPInstall the Cito MCP server
Claude
Cursor
OpenAI
Python
Cito API
Next.js
Discord
Slack
GitHub

Two rankings, one shape

Both tables return the same row shape, so one component renders either.

Valve Regional Standings

The latest VRS with each team's rank, points, and region.

World ranking

The latest world team ranking, one row per team, with points.

Movement

change is how many places a team moved since the previous ranking.

Regional tables

Europe, Americas, North America, South America, Asia, or Oceania, with world and regional rank.

Dated rankings

Every row carries the ranking date it belongs to.

Linked to teams

Each row carries the team id, so rosters, results, and map stats are one call away.

Endpoints you can ship with

Start on rankings: the VRS, the world ranking, and one region.

Rankings

The world team ranking and the Valve Regional Standings, with points and movement, plus one table per region.

View docs
  • GET/api/v1/cs2/rankings/world

    The latest world team ranking.

  • GET/api/v1/cs2/rankings/vrs

    The latest Valve Regional Standings (VRS).

  • GET/api/v1/cs2/rankings/region/{region}

    One region, with each team's world and regional rank.

  • GET/api/v1/cs2/rankings

    One row per team, with points and change since the previous ranking.

FAQs

VRS, regions, movement, and plans

Can't find what you're looking for? Contact our customer support team

Read the CS2 docs

Build ranking tables

Create a free key and pull the latest VRS in one call.