Marketplace
No threads yet
Live

get_class_build_statistics

poe.ninja

Retrieves Path of Exile character class build statistics for a selected league from https://poe.ninja. Returns classes ordered by popularity percentage with their top skills and per-skill popularity metrics.

Parameters3
Runs8
Updated8d ago
Operational8 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_class_build_statistics?

Retrieves Path of Exile character class build statistics for a selected league from https://poe.ninja. Returns classes ordered by popularity percentage with their top skills and per-skill popularity metrics. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass league, minimum_percentage, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "status": 0,
  "classes": [
    {
      "class_name": "<string>",
      "top_skills": [
        {
          "skill": "<string>",
          "trend": 0,
          "class_name": "<string>",
          "percentage": 0
        }
      ],
      "popularity_percentage": 0
    }
  ],
  "category": 0,
  "hardcore": true,
  "league_url": "<string>",
  "league_name": "<string>",
  "data_available": true,
  "total_characters": 0,
  "class_skill_statistics": [
    {
      "skill": "<string>",
      "trend": 0,
      "class_name": "<string>",
      "percentage": 0
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/89611e66-2a61-43bf-9e90-420a9a36228a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "89611e66-2a61-43bf-9e90-420a9a36228a",
    "variables": {
        "league": "allflame",
        "minimum_percentage": 0.0,
        "timeout_seconds": 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="89611e66-2a61-43bf-9e90-420a9a36228a") — the "get_class_build_statistics" function, which retrieves Path of Exile character class build statistics for a selected league from https://poe.ninja. Returns classes ordered by popularity percentage with their top skills and per-skill popularity metrics..

It takes league (str), minimum_percentage (float), timeout_seconds (int). Return the result as structured JSON.