Marketplace
No threads yet
Live

list_team_statistics

hltv.org

Returns all Counter-Strike teams from https://hltv.org for a recent-day window with identity, country, maps, K-D difference, K/D and rating, sorted by rating descending.

Parameters1
Runs4
Updated53m ago
Degraded4 runs · 75% 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_team_statistics?

Returns all Counter-Strike teams from https://hltv.org for a recent-day window with identity, country, maps, K-D difference, K/D and rating, sorted by rating descending. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass days and get the result back without maintaining a scraper.

Response

{
  "days": 0,
  "teams": [
    {
      "maps": 0,
      "name": "<string>",
      "rating": 0,
      "team_id": 0,
      "team_url": "<string>",
      "country_code": "<string>",
      "country_name": "<string>",
      "country_flag_url": "<string>",
      "kill_death_ratio": 0,
      "kill_death_difference": 0
    }
  ],
  "end_date": "<string>",
  "returned": 0,
  "source_url": "<string>",
  "start_date": "<string>",
  "rating_version": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/5205b1b0-ad25-4d50-bbc0-9c0f42052d8e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "5205b1b0-ad25-4d50-bbc0-9c0f42052d8e",
    "variables": {
        "days": 30
    }
}'

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="5205b1b0-ad25-4d50-bbc0-9c0f42052d8e") — the "list_team_statistics" function, which returns all Counter-Strike teams from https://hltv.org for a recent-day window with identity, country, maps, K-D difference, K/D and rating, sorted by rating descending..

It takes days (int). Return the result as structured JSON.