Live
list_ranked_teams
vlr.ggReturns every active ranked team from one or all 13 regional rankings on https://vlr.gg with ranks, ratings, countries, regions, logos, detail paths, recent form, records, and earnings.
Parameters1
Runs4
Updated53m ago
Operational4 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_ranked_teams?
Returns every active ranked team from one or all 13 regional rankings on https://vlr.gg with ranks, ratings, countries, regions, logos, 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 and get the result back without maintaining a scraper.
Response
{
"site": "<string>",
"teams": [
{
"rank": 0,
"rating": 0,
"region": "<string>",
"streak": "<string>",
"core_id": 0,
"country": "<string>",
"team_id": 0,
"logo_url": "<string>",
"core_code": "<string>",
"team_name": "<string>",
"detail_path": "<string>",
"region_name": "<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>"
}
],
"regions": [
{
"region": "<string>",
"as_of_date": "<string>",
"team_count": 0,
"region_name": "<string>"
}
],
"team_count": 0,
"region_count": 0,
"requested_region": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/dc9f86c2-c7dc-453e-926d-f88379af452a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "dc9f86c2-c7dc-453e-926d-f88379af452a",
"variables": {
"region": "all"
}
}'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="dc9f86c2-c7dc-453e-926d-f88379af452a") — the "list_ranked_teams" function, which returns every active ranked team from one or all 13 regional rankings on https://vlr.gg with ranks, ratings, countries, regions, logos, detail paths, recent form, records, and earnings.. It takes region (str). Return the result as structured JSON.