# Lolalytics — 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.

> Access data from lolalytics.com.

**Category:** Sports | **Website:** [lolalytics.com/](https://lolalytics.com/) | **Docs:** [parse.bot/marketplace/515cf3f0-14e6-4503-9212-8b8fe0470901/lolalytics-com-api](https://parse.bot/marketplace/515cf3f0-14e6-4503-9212-8b8fe0470901/lolalytics-com-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-lolalytics-com-api-515cf3f0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_champion_leaderboard

Retrieve the leaderboard of top-performing players for a specific champion. Returns up to 50 players ranked by solo queue rank, win rate, and games played. Each player entry includes their summoner name, region, win rate, total games on the champion, ranked tier, and lane distribution.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `champion` | string | Yes | Champion name in lowercase without spaces or apostrophes (e.g. 'jinx', 'leesin', 'aurelionsol', 'kaisa'). |
| `lane` | string | No | Lane to filter leaderboard by. |
| `patch` | string | No | Game patch version (e.g. '16.12', '16.11'). Omitting uses recent aggregate data. |
| `queue` | string | No | Queue type ID. 420 = Ranked Solo/Duo, 440 = Ranked Flex. |
| `region` | string | No | Server region filter. |
| `tier` | string | No | Rank tier filter for data aggregation. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lolalytics-com-api-515cf3f0/get_champion_leaderboard \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"champion":"<string>","lane":"<string>","patch":"<string>","queue":"<string>","region":"<string>","tier":"<string>"}'
```

### get_champion_meta

Retrieve tier list meta data for all champions, including win rate, pick rate, ban rate, rank, and tier grade. Supports filtering by lane, rank tier, and region. Returns all champions across all lanes when lane is set to 'all'. Each champion entry includes their tier grade (1=S+, 2=S, etc.), rank within their lane, and top player statistics.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `lane` | string | No | Filter by lane. |
| `patch` | string | No | Game patch version (e.g. '16.12', '16.11'). Omitting uses recent aggregate data. |
| `queue` | string | No | Queue type ID. 420 = Ranked Solo/Duo, 440 = Ranked Flex. |
| `region` | string | No | Server region filter. |
| `tier` | string | No | Rank tier filter for data aggregation. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lolalytics-com-api-515cf3f0/get_champion_meta \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"lane":"<string>","patch":"<string>","queue":"<string>","region":"<string>","tier":"<string>"}'
```
