Marketplace
No threads yet
Live

list_team_rankings

vlr.gg

Returns current regional team rankings from https://vlr.gg with rank, rating, country, team and core IDs, detail paths, recent form, records, and earnings.

Parameters2
Runs5
Updated52m ago
Operational5 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_team_rankings?

Returns current regional team rankings from https://vlr.gg with rank, rating, country, team and core IDs, detail paths, recent form, records, and earnings. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass region, limit and get the result back without maintaining a scraper.

Response

{
  "site": "<string>",
  "teams": [
    {
      "rank": 0,
      "rating": 0,
      "streak": "<string>",
      "core_id": 0,
      "country": "<string>",
      "team_id": 0,
      "logo_url": "<string>",
      "core_code": "<string>",
      "team_name": "<string>",
      "team_path": "<string>",
      "rating_change": 0,
      "last_match_ago": "<string>",
      "last_match_path": "<string>",
      "core_record_wins": 0,
      "team_record_wins": 0,
      "core_record_losses": 0,
      "team_record_losses": 0,
      "career_earnings_usd": 0,
      "last_match_opponent": "<string>",
      "last_match_opponent_logo_url": "<string>"
    }
  ],
  "region": "<string>",
  "as_of_date": "<string>",
  "region_name": "<string>",
  "teams_returned": 0,
  "total_teams_available": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/007044e9-47f2-4815-88ae-4b119eb30902/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "007044e9-47f2-4815-88ae-4b119eb30902",
    "variables": {
        "region": "north-america",
        "limit": 50
    }
}'

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="007044e9-47f2-4815-88ae-4b119eb30902") — the "list_team_rankings" function, which returns current regional team rankings from https://vlr.gg with rank, rating, country, team and core IDs, detail paths, recent form, records, and earnings..

It takes region (str), limit (int). Return the result as structured JSON.