DOCS / GAMES / MOBILE LEGENDS: BANG BANG

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.

Get an API key Read the quickstart

What you can call

GET /v1/tournaments?game=mlbb

Active MLBB tournaments

MPL regional leagues (PH/ID/MY/MENA), MSC, M-Series world championship, and the regional qualifier circuits Liquipedia carries.

GET /v1/matches?game=mlbb

Matches by game

Bo3, Bo5 and Bo7 with per-game scores. Cursor pagination, never offset. Up to 200 per page.

GET /v1/matches/:id

One match

Canonical record — teams, draft when available, broadcast, scheduled time, final score.

GET /v1/teams/:slug

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:

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:

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.