Live
get_item_details
liquipedia.netReturns Dota 2 item details from https://liquipedia.net including cost, sell value, bonuses, active and passive abilities, components, and build paths.
Parameters1
Runs9
Updated3d ago
Operational9 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_item_details?
Returns Dota 2 item details from https://liquipedia.net including cost, sell value, bonuses, active and passive abilities, components, and build paths. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass item and get the result back without maintaining a scraper.
Response
{
"item": {
"lore": "<string>",
"name": "<string>",
"infobox": {},
"page_id": 0,
"used_in": [
"<string>"
],
"abilities": [
{
"name": "<string>",
"stats": [
{
"name": "<string>",
"value": "<string>"
}
],
"details": {},
"components": [
{}
],
"description": "<string>",
"ability_role": "<string>"
}
],
"gold_cost": 0,
"item_type": "<string>",
"components": [
{
"name": "<string>",
"gold_cost": 0,
"component_type": "<string>"
}
],
"properties": {},
"sell_value": 0,
"source_url": "<string>",
"recipe_cost": 0,
"stat_bonuses": [
{
"name": "<string>",
"value": "<string>"
}
],
"internal_name": "<string>",
"modifier_name": "<string>"
},
"status": "<string>",
"message": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/233f6905-de56-4486-8bf2-6b41de3a8320/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "233f6905-de56-4486-8bf2-6b41de3a8320",
"variables": {
"item": "Dragon Lance"
}
}'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="233f6905-de56-4486-8bf2-6b41de3a8320") — the "get_item_details" function, which returns Dota 2 item details from https://liquipedia.net including cost, sell value, bonuses, active and passive abilities, components, and build paths.. It takes item (str). Return the result as structured JSON.