Marketplace
No threads yet
Live

get_hero_profile

liquipedia.net

Returns Dota 2 hero profiles from https://liquipedia.net with abilities and stats, talents, and Aghanim Scepter and Shard upgrades.

Parameters1
Runs12
Updated4d ago
Operational12 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_hero_profile?

Returns Dota 2 hero profiles from https://liquipedia.net with abilities and stats, talents, and Aghanim Scepter and Shard upgrades. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass hero and get the result back without maintaining a scraper.

Response

{
  "hero": {
    "lore": "<string>",
    "name": "<string>",
    "patch": "<string>",
    "quote": "<string>",
    "roles": [
      "<string>"
    ],
    "title": "<string>",
    "infobox": {},
    "page_id": 0,
    "talents": [
      {
        "left": "<string>",
        "level": 0,
        "right": "<string>"
      }
    ],
    "gameplay": {},
    "abilities": [
      {
        "lore": "<string>",
        "name": "<string>",
        "notes": "<string>",
        "stats": [
          {
            "name": "<string>",
            "value": "<string>"
          }
        ],
        "affects": [
          "<string>"
        ],
        "hotkeys": [
          "<string>"
        ],
        "behavior": {},
        "category": "<string>",
        "mechanics": "<string>",
        "ability_id": "<string>",
        "components": [
          {
            "affects": [
              "<string>"
            ],
            "description": "<string>",
            "damage_types": [
              "<string>"
            ],
            "target_types": [
              "<string>"
            ],
            "component_type": "<string>"
          }
        ],
        "description": "<string>",
        "damage_types": [
          "<string>"
        ],
        "ability_types": [
          "<string>"
        ],
        "internal_name": "<string>",
        "status_effects": [
          {
            "properties": [
              "<string>"
            ],
            "description": "<string>",
            "dispel_type": "<string>",
            "effect_type": "<string>",
            "internal_name": "<string>"
          }
        ]
      }
    ],
    "biography": {},
    "source_url": "<string>",
    "description": "<string>",
    "voice_actor": "<string>",
    "introduction": "<string>",
    "shard_upgrades": [
      {
        "ability": "<string>",
        "description": "<string>",
        "upgrade_type": "<string>"
      }
    ],
    "scepter_upgrades": [
      {
        "ability": "<string>",
        "description": "<string>",
        "upgrade_type": "<string>"
      }
    ],
    "primary_attribute": "<string>"
  },
  "status": "<string>",
  "message": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/bee5246e-d6d5-46b6-b2a1-21a00904c26d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "bee5246e-d6d5-46b6-b2a1-21a00904c26d",
    "variables": {
        "hero": "Abaddon"
    }
}'

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="bee5246e-d6d5-46b6-b2a1-21a00904c26d") — the "get_hero_profile" function, which returns Dota 2 hero profiles from https://liquipedia.net with abilities and stats, talents, and Aghanim Scepter and Shard upgrades..

It takes hero (str). Return the result as structured JSON.