Marketplace
No threads yet
Live

list_world_rankings

hltv.org

Returns every current world-ranked Counter-Strike team from https://hltv.org with position, points, movement, profile details, logos, and active roster.

Parameters0
Runs3
Updated51m ago
Operational3 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_world_rankings?

Returns every current world-ranked Counter-Strike team from https://hltv.org with position, points, movement, profile details, logos, and active roster. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.

Response

{
  "teams": [
    {
      "name": "<string>",
      "slug": "<string>",
      "change": "<string>",
      "points": 0,
      "players": [
        {
          "slug": "<string>",
          "country": "<string>",
          "nickname": "<string>",
          "full_name": "<string>",
          "image_url": "<string>",
          "player_id": 0,
          "player_url": "<string>"
        }
      ],
      "team_id": 0,
      "movement": "<string>",
      "position": 0,
      "team_url": "<string>",
      "logo_url_day": "<string>",
      "logo_url_night": "<string>",
      "movement_positions": 0,
      "ranking_details_url": "<string>"
    }
  ],
  "source_url": "<string>",
  "ranking_date": "<string>",
  "updated_weekly": true,
  "total_ranked_teams": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/bcd2ff24-1b5b-4b94-9b76-1b88d8aae372/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "bcd2ff24-1b5b-4b94-9b76-1b88d8aae372",
    "variables": {}
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="bcd2ff24-1b5b-4b94-9b76-1b88d8aae372") — the "list_world_rankings" function, which returns every current world-ranked Counter-Strike team from https://hltv.org with position, points, movement, profile details, logos, and active roster..

It takes no parameters. Return the result as structured JSON.