Marketplace
No threads yet
Live

get_hero_by_name

mlbb.gg

Returns one Mobile Legends: Bang Bang hero from https://mlbb.gg by case-insensitive name, including tier, points, rates, roles, lane, specialties, image, colors, and source record IDs.

Parameters3
Runs11
Updated10d ago
Degraded11 runs · 81.8% 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_by_name?

Returns one Mobile Legends: Bang Bang hero from https://mlbb.gg by case-insensitive name, including tier, points, rates, roles, lane, specialties, image, colors, and source record IDs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass hero_name, rank_filter, mode and get the result back without maintaining a scraper.

Response

{
  "hero": {
    "name": "<string>",
    "tier": "<string>",
    "image": "<string>",
    "lanes": "<string>",
    "roles": [
      {
        "id": 0,
        "name": "<string>",
        "color": "<string>"
      }
    ],
    "points": 0,
    "hero_id": 0,
    "stat_id": 0,
    "ban_rate": 0,
    "win_rate": 0,
    "pick_rate": 0,
    "cluster_id": 0,
    "tier_color": "<string>",
    "specialties": [
      {
        "id": 0,
        "name": "<string>",
        "color": "<string>"
      }
    ]
  },
  "mode": "<string>",
  "source": "<string>",
  "updated_at": "<string>",
  "rank_filter": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/7c42eec0-3520-4ae1-8c27-bcc23598f14e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "7c42eec0-3520-4ae1-8c27-bcc23598f14e",
    "variables": {
        "hero_name": "Miya",
        "rank_filter": "Mythic",
        "mode": "rank"
    }
}'

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="7c42eec0-3520-4ae1-8c27-bcc23598f14e") — the "get_hero_by_name" function, which returns one Mobile Legends: Bang Bang hero from https://mlbb.gg by case-insensitive name, including tier, points, rates, roles, lane, specialties, image, colors, and source record IDs..

It takes hero_name (str), rank_filter (str), mode (str). Return the result as structured JSON.