Marketplace
No threads yet
Live

list_pvp_leaderboard_entries

seramate.com

Returns current or archived WoW PvP leaderboard entries from https://seramate.com with full character records, rank, rating, season stats, and pagination.

Parameters6
Runs7
Updated3d ago
Operational7 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_pvp_leaderboard_entries?

Returns current or archived WoW PvP leaderboard entries from https://seramate.com with full character records, rank, rating, season stats, and pagination. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass region, bracket, season_id, page, per_page, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "count": 0,
  "region": "<string>",
  "bracket": "<string>",
  "entries": [
    {}
  ],
  "per_page": 0,
  "season_id": 0,
  "total_items": 0,
  "total_pages": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/25bdb004-5316-4c57-ad97-db2c15544f6c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "25bdb004-5316-4c57-ad97-db2c15544f6c",
    "variables": {
        "region": "us",
        "bracket": "shuffle",
        "season_id": 42,
        "page": 1,
        "per_page": 20,
        "timeout_seconds": 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="25bdb004-5316-4c57-ad97-db2c15544f6c") — the "list_pvp_leaderboard_entries" function, which returns current or archived WoW PvP leaderboard entries from https://seramate.com with full character records, rank, rating, season stats, and pagination..

It takes region (str), bracket (str), season_id (int), page (int), per_page (int), timeout_seconds (int). Return the result as structured JSON.