# Theanalyst — 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 current Premier League team and player performance data, including team-level attacking/defensive/possession metrics, player xG rankings, and computed team ratings with attack/defense components.

**Category:** Sports | **Website:** [theanalyst.com/](https://theanalyst.com/) | **Docs:** [parse.bot/marketplace/7818e81a-c981-44c7-8e63-59112899b9f0/theanalyst-com-api](https://parse.bot/marketplace/7818e81a-c981-44c7-8e63-59112899b9f0/theanalyst-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-theanalyst-com-api-7818e81a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_player_statistics

Get Premier League player statistics ranked by expected goals (xG). Returns the top players showing attacking performance metrics including player identifiers, team association, and xG value. Single-page endpoint with no parameters.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-theanalyst-com-api-7818e81a/get_player_statistics \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_team_ratings

Get Premier League team ratings calculated from goals scored and conceded per game, with attack and defense ratings on a 0-100 scale. Returns all 20 teams sorted by overall rating descending with rank assigned. Single-page endpoint with no parameters.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-theanalyst-com-api-7818e81a/get_team_ratings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_team_statistics

Get comprehensive Premier League team statistics including attacking metrics (goals, shots, xG, conversion rate), defensive metrics (goals against, shots against, xG against), possession stats (passes, accuracy, final third passes, tackles, interceptions), and miscellaneous stats (fouls, cards, substitutions). Returns data for all 20 teams sorted alphabetically. Single-page endpoint with no parameters.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-theanalyst-com-api-7818e81a/get_team_statistics \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
