Mabucket APImabucket.com ↗
Discover current hero tier list ratings and detailed metadata for Watcher of Realms to build your optimal team composition. Compare hero rankings from MaBucket's expert community assessments and make informed decisions about which characters to prioritize in your gameplay.
curl -X GET 'https://api.parse.bot/scraper/5605c554-cae3-494f-96bd-d8044e4529ec/get_hero_tier_list?search=elowyn' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns all heroes with their tier ratings across 16 game modes and metadata (rarity, class, faction). Optionally filter by hero name search, rarity, class, or faction. Returns the complete list when no filters are applied. Each hero includes ratings for: overall, early, gear_raid_1, gear_raid_2, gear_raid_3, guild_boss, guild_war, void_rift, single_arena, aoe_arena, air_arena, sustain_arena, basic_trial, artifact, gold_exp, and tide.
| Param | Type | Description |
|---|---|---|
| class | string | Filter by hero class. Omitted returns all classes. |
| rarity | string | Filter by hero rarity. Omitted returns all rarities. |
| search | string | Case-insensitive substring search on hero name (e.g. 'elowyn', 'ajax'). Omitted returns all heroes. |
| faction | string | Filter by faction name (case-insensitive). Heroes belonging to the specified faction are returned. Omitted returns all factions. |
{
"type": "object",
"fields": {
"total": "integer count of heroes in the result",
"heroes": "array of hero objects with id, name, rarity, class, faction, and ratings"
},
"sample": {
"data": {
"total": 1,
"heroes": [
{
"id": "elowyn",
"name": "Elowyn",
"class": "healer",
"rarity": "Legendary",
"faction": [
"esoteric"
],
"ratings": {
"tide": "S",
"early": "S+",
"overall": "S+",
"artifact": "A+",
"gold_exp": "B-",
"air_arena": "B",
"aoe_arena": "B",
"guild_war": "S",
"void_rift": "S+",
"guild_boss": "S+",
"basic_trial": "S",
"gear_raid_1": "S+",
"gear_raid_2": "S",
"gear_raid_3": "S",
"single_arena": "A-",
"sustain_arena": "S+"
}
}
]
},
"status": "success"
}
}About the Mabucket API
The Mabucket API on Parse exposes 1 endpoint for the publicly available data on mabucket.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.