get_item_prices
poe.ninjaRetrieves current Path of Exile item prices by league and category from https://poe.ninja, including valuations, item metadata, market trends, and Skill Gem filters.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_item_prices?
Retrieves current Path of Exile item prices by league and category from https://poe.ninja, including valuations, item metadata, market trends, and Skill Gem filters. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass league, category, gem_level, gem_quality, gem_combinations, corrupted and get the result back without maintaining a scraper.
Response
{
"items": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/83075c47-7cd6-4515-9db0-1b874bbc2ec6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "83075c47-7cd6-4515-9db0-1b874bbc2ec6",
"variables": {
"league": "Allflame",
"category": "UniqueWeapon",
"gem_level": null,
"gem_quality": null,
"gem_combinations": null,
"corrupted": null
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="83075c47-7cd6-4515-9db0-1b874bbc2ec6") — the "get_item_prices" function, which retrieves current Path of Exile item prices by league and category from https://poe.ninja, including valuations, item metadata, market trends, and Skill Gem filters.. It takes league (str), category (str), gem_level (int | None), gem_quality (int | None), gem_combinations (list[dict[str, int]] | None), corrupted (bool | None). Return the result as structured JSON.