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

> Playerelo provides 4 callable API endpoints through the Parse marketplace.

**Category:** Sports | **Website:** [playerelo.football/](https://playerelo.football/) | **Docs:** [parse.bot/marketplace/be3ad280-c49c-477d-ad15-2a7ad408be54/playerelo-football-api](https://parse.bot/marketplace/be3ad280-c49c-477d-ad15-2a7ad408be54/playerelo-football-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-playerelo-football-api-be3ad280/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_leaderboard

Get the global leaderboard of top players ranked by Elo rating descending. Returns player name, team, position, rating, and 28-day change. Supports pagination via limit and offset.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of players to return (1-100). |
| `offset` | integer | No | Number of results to skip for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-playerelo-football-api-be3ad280/get_leaderboard \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>"}'
```

### get_player_elo

Get a player's full Elo profile including current rating, position, peak rating, and complete match-by-match rating history. Makes two requests: one for player details and one for history. History can contain hundreds of entries for experienced players.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `player_id` | string | Yes | Numeric player ID (from search_players results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-playerelo-football-api-be3ad280/get_player_elo \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"player_id":"<string>"}'
```

### get_team_rankings

Get the top-ranked players for a specific team, ordered by Elo rating descending. Returns up to 25 players by default with their team rank, global rank, position, and rating.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of players to return (1-100). |
| `team` | string | Yes | Exact team name as it appears on the site (e.g. 'Barcelona', 'Manchester City', 'Arsenal'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-playerelo-football-api-be3ad280/get_team_rankings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","team":"<string>"}'
```

### search_players

Search players by name. Returns matching players with their name, ID, team, position, Elo rating, and global rank, ordered by Elo descending. Supports pagination via limit and offset.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return (1-100). |
| `offset` | integer | No | Number of results to skip for pagination. |
| `query` | string | Yes | Player name search query (case-insensitive substring match). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-playerelo-football-api-be3ad280/search_players \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>","query":"<string>"}'
```
