Live
get_currency_rates
poe.ninjaRetrieves current Path of Exile currency exchange rates and chaos equivalents from https://poe.ninja, including exchange-market data and stash buy/sell prices.
Parameters1
Runs11
Updated10d ago
Operational11 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 get_currency_rates?
Retrieves current Path of Exile currency exchange rates and chaos equivalents from https://poe.ninja, including exchange-market data and stash buy/sell prices. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass league and get the result back without maintaining a scraper.
Response
{
"currencies": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/e1913f0d-c991-4541-9b37-caa4b9e9cb33/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e1913f0d-c991-4541-9b37-caa4b9e9cb33",
"variables": {
"league": "Allflame"
}
}'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="e1913f0d-c991-4541-9b37-caa4b9e9cb33") — the "get_currency_rates" function, which retrieves current Path of Exile currency exchange rates and chaos equivalents from https://poe.ninja, including exchange-market data and stash buy/sell prices.. It takes league (str). Return the result as structured JSON.