MLBB coverage. SEA’s biggest title, properly indexed.
Mobile Legends: Bang Bang is Stadar’s flagship Tier-3 game — the highest-leverage non-Big-Four title we ship. PandaScore’s MLBB depth is thin, the SEA market is underserved by Western data vendors, and the MPL ecosystem (MPL-PH, MPL-ID, MPL-MY, MPL-MENA, MSC, M-Series) draws viewership numbers that comfortably outscale several Phase-1 circuits. Free tier from day one — not gated behind a beta flag.
What you can call
Active MLBB tournaments
MPL regional leagues (PH/ID/MY/MENA), MSC, M-Series world championship, and the regional qualifier circuits Liquipedia carries.
Matches by game
Bo3, Bo5 and Bo7 with per-game scores. Cursor pagination, never offset. Up to 200 per page.
One match
Canonical record — teams, draft when available, broadcast, scheduled time, final score.
Team page
Roster, recent results, head-to-head, regional league affiliation.
Capability flags
MLBB ships with the v1-attainable Liquipedia depth on /v1/games/mlbb:
fixtures— every scheduled matchresults— every completed match with final scorebrackets— tournament bracket DAG (Hobbyist+)
match_stats is deferred until the MLBB match-page parser lands. Under-covered games
return 200 plus a meta.note rather than a 402 paywall, so a Hobbyist+ key asking
for match_stats on MLBB sees the omission without a billing error.
Catalogue
The MLBB catalogue indexes the in-game objects most often referenced in fixtures and match prose:
heroes— 160+ playable charactersitems— in-game items shown in build pathsbattle-spells— six castable specsemblems— talent-tree-equivalent
Try it
curl -H "Authorization: Bearer $STADAR_API_KEY"
"https://api.stadar.net/v1/matches?game=mlbb&status=scheduled&limit=20" from stadar import Stadar
client = Stadar(api_key="esp_live_...")
for match in client.matches.list(game="mlbb", status="scheduled", limit=20):
print(match.id, match.scheduled_at, match.teams) Attribution
MLBB reference data is sourced from Liquipedia contributors. Every response includes
a meta.sources array with article URLs and licence. Do not strip it — same hard
rule as every other game we cover, set out in our Attribution Policy.