# Milesplit — 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 high school track and field rankings from MileSplit by state, event, and year. Retrieve team-level standings for relay events and individual athlete rankings for sprint and distance events across all US states.

**Category:** Sports | **Website:** [milesplit.com/](https://milesplit.com/) | **Docs:** [parse.bot/marketplace/09478b33-0979-471c-ae09-40f67cdaa941/milesplit-com-api](https://parse.bot/marketplace/09478b33-0979-471c-ae09-40f67cdaa941/milesplit-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-milesplit-com-api-09478b33/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_rankings

Get the top 20 rankings for a specific high school boys outdoor track and field event in a given state and year. For relay events (e.g. 4x400m), returns team-level rankings with rank, team, and meet. For individual events (e.g. 100m, 1600m), returns athlete-level rankings including team, wind, and graduation year where available. Paginates as a single page of up to 20 entries.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event` | string | No | Event name as it appears in MileSplit URLs. |
| `state` | string | No | Two-letter US state code (e.g. OH, CA, TX). Used as the MileSplit state subdomain. |
| `year` | string | No | Year for rankings (e.g. 2022, 2023, 2024). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-milesplit-com-api-09478b33/get_rankings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event":"<string>","state":"<string>","year":"<string>"}'
```
