Marketplace
No threads yet
Live

fetch_pvp_activity

seramate.com

Fetches paginated recent World of Warcraft PvP activity from https://seramate.com for a chosen region, bracket, and timeframe. Returns complete character records with rating, games played, rank changes, and last-seen timestamps.

Parameters5
Runs14
Updated10d ago
Failing14 runs · 64.2% 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 fetch_pvp_activity?

Fetches paginated recent World of Warcraft PvP activity from https://seramate.com for a chosen region, bracket, and timeframe. Returns complete character records with rating, games played, rank changes, and last-seen timestamps. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass region, bracket, timeframe, page, per_page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "region": "<string>",
  "bracket": "<string>",
  "entries": [
    {
      "id": "<string>",
      "spec_id": 0,
      "character": {
        "id": "<string>",
        "name": "<string>",
        "race": {
          "id": "<string>",
          "code": "<string>",
          "name": "<string>",
          "blizzard_id": 0
        },
        "spec": {
          "id": "<string>",
          "code": "<string>",
          "name": "<string>",
          "role": 0,
          "class_id": 0,
          "blizzard_id": 0
        },
        "class": {
          "id": "<string>",
          "code": "<string>",
          "name": "<string>",
          "color": "<string>",
          "blizzard_id": 0
        },
        "guild": {
          "id": "<string>",
          "name": "<string>",
          "realm": {
            "id": "<string>",
            "code": "<string>",
            "lang": "<string>",
            "name": "<string>",
            "category": "<string>",
            "blizzard_id": 0
          },
          "region": {
            "id": "<string>",
            "code": "<string>",
            "name": "<string>"
          },
          "faction": {
            "id": "<string>",
            "code": "<string>",
            "name": "<string>"
          },
          "blizzard_id": 0
        },
        "realm": {
          "id": "<string>",
          "code": "<string>",
          "lang": "<string>",
          "name": "<string>",
          "category": "<string>",
          "blizzard_id": 0
        },
        "region": {
          "id": "<string>",
          "code": "<string>",
          "name": "<string>"
        },
        "faction": {
          "id": "<string>",
          "code": "<string>",
          "name": "<string>"
        },
        "owner_id": "<string>",
        "gender_id": 0,
        "created_at": "<string>",
        "group_hash": "<string>",
        "updated_at": "<string>",
        "blizzard_id": 0,
        "gender_code": "<string>",
        "hero_talent_tree_id": 0
      },
      "created_at": "<string>",
      "rank_delta": {
        "new_rank": 0,
        "old_rank": 0,
        "rank_delta": 0
      },
      "twitch_tag": "<string>",
      "updated_at": "<string>",
      "last_seen_at": "<string>",
      "played_delta": {
        "won": 0,
        "lost": 0,
        "played": 0
      },
      "rating_delta": {
        "new_rating": 0,
        "old_rating": 0,
        "rating_delta": 0
      },
      "global_rank_delta": {
        "new_rank": 0,
        "old_rank": 0,
        "rank_delta": 0
      },
      "last_seen_timeframe": 0,
      "basic_character_data": {
        "name": "<string>",
        "realm_id": 0,
        "realm_slug": "<string>",
        "character_id": 0,
        "faction_code": "<string>"
      }
    }
  ],
  "per_page": 0,
  "timeframe": "<string>",
  "total_items": 0,
  "total_pages": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/960ac828-a489-4d11-bb45-f04953634ebd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "960ac828-a489-4d11-bb45-f04953634ebd",
    "variables": {
        "region": "us",
        "bracket": "shuffle",
        "timeframe": "7d",
        "page": 1,
        "per_page": 20
    }
}'

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="960ac828-a489-4d11-bb45-f04953634ebd") — the "fetch_pvp_activity" function, which fetches paginated recent World of Warcraft PvP activity from https://seramate.com for a chosen region, bracket, and timeframe. Returns complete character records with rating, games played, rank changes, and last-seen timestamps..

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