Live
list_hero_attributes
mlbb.ggReturns the complete Mobile Legends: Bang Bang hero roster from https://mlbb.gg with tier, points, rates, roles, lanes, specialties, images, colors, and source record IDs.
Parameters2
Runs10
Updated10d ago
Operational10 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 list_hero_attributes?
Returns the complete Mobile Legends: Bang Bang hero roster from https://mlbb.gg with tier, points, rates, roles, lanes, specialties, images, 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 rank_filter, mode and get the result back without maintaining a scraper.
Response
{
"mode": "<string>",
"count": 0,
"heroes": [
{
"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>"
}
]
}
],
"source": "<string>",
"updated_at": "<string>",
"rank_filter": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/109be040-764f-4a72-99a3-5b9d82da5ce2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "109be040-764f-4a72-99a3-5b9d82da5ce2",
"variables": {
"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="109be040-764f-4a72-99a3-5b9d82da5ce2") — the "list_hero_attributes" function, which returns the complete Mobile Legends: Bang Bang hero roster from https://mlbb.gg with tier, points, rates, roles, lanes, specialties, images, colors, and source record IDs.. It takes rank_filter (str), mode (str). Return the result as structured JSON.