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

> Track Fortnite competitive tournaments by browsing upcoming events, viewing detailed information about specific competitions, and checking player leaderboards to see rankings and performance stats. Monitor the esports calendar and follow how top competitors are performing across official Fortnite events.

**Category:** Sports | **Website:** [fortnitetracker.com/](https://fortnitetracker.com/) | **Docs:** [parse.bot/marketplace/25aaf762-55bc-4326-b0ce-5f25d5e2830d/fortnitetracker-com-api](https://parse.bot/marketplace/25aaf762-55bc-4326-b0ce-5f25d5e2830d/fortnitetracker-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-fortnitetracker-com-api-25aaf762/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_item_shop

Get the current Fortnite item shop contents. Returns categories of cosmetic items available for purchase, each with item names, rarities, V-Bucks prices, image URLs, and expiry dates. The shop rotates daily. No input parameters required — always returns the current shop state as a single-page response.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fortnitetracker-com-api-25aaf762/get_item_shop \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_player_profile

Retrieve comprehensive performance metrics, lifetime stats, and rankings for a specific Fortnite player. Returns platform info, user info, metadata (including current season), and detailed stat segments broken down by playlist mode (solo, duos, squads, LTMs). Each stat segment includes percentile rankings. The profile is a single-page response with no pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `platform` | string | No | Gaming platform identifier. |
| `username` | string | Yes | Exact player username on the specified platform. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fortnitetracker-com-api-25aaf762/get_player_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"platform":"<string>","username":"<string>"}'
```

### search_players

Full-text search for Fortnite players by username. Returns a list of matching players with their platform info and last-updated status. Searches across all platforms but defaults to Epic Games. Results are not paginated — the server returns up to ~20 matches in a single response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Player username or partial username to search for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fortnitetracker-com-api-25aaf762/search_players \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
