# Mlbb (Guernsey) — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Retrieve comprehensive statistics and tier ratings for Mobile Legends: Bang Bang heroes, including their win rates, ban rates, pick rates, roles, lanes, and specialties to inform your hero selection and strategy. Access detailed attributes for individual heroes or browse the complete hero roster to compare performance metrics across all champions.

**Category:** Sports | **Website:** [mlbb.gg/](https://mlbb.gg/) | **Docs:** [parse.bot/marketplace/1c832eb2-0fe9-4944-87cb-d172464c0b63/mlbb-gg-api](https://parse.bot/marketplace/1c832eb2-0fe9-4944-87cb-d172464c0b63/mlbb-gg-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-mlbb-gg-api-1c832eb2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_hero_attributes

Retrieve attributes for the full roster of heroes. Returns performance metrics for all heroes including tier, points score, win/ban/pick rates, roles, lanes, and specialties.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mlbb-gg-api-1c832eb2/get_all_hero_attributes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_all_hero_synergies

Retrieve synergy (best teammate) data for every hero in the roster. Returns the full list of heroes with their compatible-hero partners, including each partner's strength rating and roles. Makes one request per hero to mlbb.gg's compatible-heroes analysis.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mlbb-gg-api-1c832eb2/get_all_hero_synergies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_hero_attributes

Retrieve attributes for a specific hero by name. Returns performance metrics including tier, points score, win/ban/pick rates, roles, lanes, and specialties. Hero name matching is case-insensitive.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `hero_name` | string | Yes | Hero name (case-insensitive), e.g. 'Miya', 'Aamon', 'Lapu-Lapu'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mlbb-gg-api-1c832eb2/get_hero_attributes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"hero_name":"<string>"}'
```

### get_hero_synergies

Retrieve synergy (best teammate) data for a specific hero by name. Returns the list of heroes that work best with the queried hero, including each synergy partner's strength rating and roles. Hero name matching is case-insensitive. Synergy data is sourced from mlbb.gg's compatible-heroes analysis.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `hero_name` | string | Yes | Hero name (case-insensitive), e.g. 'Miya', 'Aamon', 'Lapu-Lapu'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mlbb-gg-api-1c832eb2/get_hero_synergies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"hero_name":"<string>"}'
```
