Marketplace
No threads yet
Live

get_seasonal_pvp_statistics

seramate.com

Returns seasonal PvP population by spec, cross-bracket totals, and per-spec average rating time series from https://seramate.com for a season, region, and bracket.

Parameters3
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 get_seasonal_pvp_statistics?

Returns seasonal PvP population by spec, cross-bracket totals, and per-spec average rating time series from https://seramate.com for a season, region, and bracket. 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 and get the result back without maintaining a scraper.

Response

{
  "population": {
    "specs": [
      {
        "spec_id": 0,
        "class_id": 0,
        "games_played": 0,
        "specialization": {
          "id": "<string>",
          "code": "<string>",
          "name": "<string>",
          "role": 0,
          "class_id": 0,
          "wow_class": {
            "id": "<string>",
            "code": "<string>",
            "name": "<string>",
            "color": "<string>",
            "blizzard_id": 0
          },
          "blizzard_id": 0
        },
        "total_characters": 0,
        "active_characters": 0
      }
    ],
    "total_active": 0,
    "total_characters": 0,
    "total_games_played": 0
  },
  "average_rating": {
    "specs": [
      {
        "data": [
          {
            "date": "<string>",
            "wins": 0,
            "losses": 0,
            "played": 0,
            "rating": 0,
            "characters": 0,
            "total_wins": 0,
            "total_losses": 0
          }
        ],
        "spec_id": 0,
        "class_id": 0,
        "specialization": {
          "id": "<string>",
          "code": "<string>",
          "name": "<string>",
          "role": 0,
          "class_id": 0,
          "wow_class": {
            "id": "<string>",
            "code": "<string>",
            "name": "<string>",
            "color": "<string>",
            "blizzard_id": 0
          },
          "blizzard_id": 0
        }
      }
    ]
  },
  "population_total": {
    "total_characters": 0,
    "active_characters": 0
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/eaefe56d-8844-4c6e-b86b-95e59035ce3a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "eaefe56d-8844-4c6e-b86b-95e59035ce3a",
    "variables": {
        "region": "us",
        "bracket": "3v3",
        "season_id": 41
    }
}'

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="eaefe56d-8844-4c6e-b86b-95e59035ce3a") — the "get_seasonal_pvp_statistics" function, which returns seasonal PvP population by spec, cross-bracket totals, and per-spec average rating time series from https://seramate.com for a season, region, and bracket..

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