# Tracker (api.tracker.gg) — 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.

> Look up any Rocket League player's complete profile stats including their lifetime achievements, ranked ratings across all playlists, and season rewards all in one place. Get instant access to detailed competitive performance data to track player progress and compare rankings.

**Category:** Sports | **Website:** [api.tracker.gg/api/v2/rocket-league/standard/profile/](https://api.tracker.gg/api/v2/rocket-league/standard/profile/) | **Docs:** [parse.bot/marketplace/2b3cf38a-5a6d-4456-ab74-560915397bdb/api-tracker-gg-api](https://parse.bot/marketplace/2b3cf38a-5a6d-4456-ab74-560915397bdb/api-tracker-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-api-tracker-gg-api-2b3cf38a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_profile

Fetch a Rocket League player's full profile data including platform info, lifetime stats (wins, goals, MVPs, saves, assists, shots), and per-playlist ranked ratings for the current season. Returns the raw API response from Tracker.gg. Requires both a platform slug and a player identifier.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `platform` | string | Yes | Gaming platform slug identifying where the player account lives (e.g. epic, steam, psn, xbl). |
| `player_id` | string | Yes | Player identifier on the given platform. For Epic this is the display name; for Steam this is the 64-bit Steam ID. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-api-tracker-gg-api-2b3cf38a/get_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"platform":"<string>","player_id":"<string>"}'
```
