Marketplace
No threads yet
Live

get_top_esports_players

bo3.gg

Retrieves top-ranked professional players and historical performance statistics for CS2, Valorant, or League of Legends from https://bo3.gg. Results cover a caller-selected date window and are ordered descending by the chosen performance metric.

Parameters6
Runs14
Updated8d ago
Operational14 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 get_top_esports_players?

Retrieves top-ranked professional players and historical performance statistics for CS2, Valorant, or League of Legends from https://bo3.gg. Results cover a caller-selected date window and are ordered descending by the chosen performance metric. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass title, sort_metric, start_date, end_date, limit, offset and get the result back without maintaining a scraper.

Response

{
  "title": "<string>",
  "players": [
    {}
  ],
  "summary": {},
  "end_date": "<string>",
  "start_date": "<string>",
  "sort_metric": "<string>",
  "source_sort_field": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/503265cb-da86-480d-a2f6-da9d61a36a59/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "503265cb-da86-480d-a2f6-da9d61a36a59",
    "variables": {
        "title": "cs2",
        "sort_metric": "kills",
        "start_date": "",
        "end_date": "today",
        "limit": 10,
        "offset": 0
    }
}'

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="503265cb-da86-480d-a2f6-da9d61a36a59") — the "get_top_esports_players" function, which retrieves top-ranked professional players and historical performance statistics for CS2, Valorant, or League of Legends from https://bo3.gg. Results cover a caller-selected date window and are ordered descending by the chosen performance metric..

It takes title (str), sort_metric (str), start_date (str), end_date (str), limit (int), offset (int). Return the result as structured JSON.