Live
list_pvp_title_earners
seramate.comReturns paginated PvP title earners from https://seramate.com with complete non-empty character and title records sorted by completion time.
Parameters7
Runs6
Updated3d ago
Operational6 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_pvp_title_earners?
Returns paginated PvP title earners from https://seramate.com with complete non-empty character and title records sorted by completion time. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass region, title_type, season_id, page, per_page, direction, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"count": 0,
"region": "<string>",
"players": [
{
"title": {},
"character": {}
}
],
"per_page": 0,
"direction": "<string>",
"season_id": 0,
"title_type": "<string>",
"total_items": 0,
"total_pages": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/cc5d2784-c949-4db6-b69d-27cc1e8eb3f5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "cc5d2784-c949-4db6-b69d-27cc1e8eb3f5",
"variables": {
"region": "us",
"title_type": "gladiator",
"season_id": 34,
"page": 1,
"per_page": 50,
"direction": "fast",
"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="cc5d2784-c949-4db6-b69d-27cc1e8eb3f5") — the "list_pvp_title_earners" function, which returns paginated PvP title earners from https://seramate.com with complete non-empty character and title records sorted by completion time.. It takes region (str), title_type (str), season_id (int), page (int), per_page (int), direction (str), timeout_seconds (int). Return the result as structured JSON.