# Boxrec — 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 detailed boxer statistics, career records, and fight histories from BoxRec. Retrieve comprehensive data on any fighter's record, rankings, division, KO percentage, and performance metrics, plus discover trending fighters in real-time.

**Category:** Sports | **Website:** [boxrec.com/](https://boxrec.com/) | **Docs:** [parse.bot/marketplace/b272ea7b-c603-4322-acf7-3109fb4c8400/boxrec-com-api](https://parse.bot/marketplace/b272ea7b-c603-4322-acf7-3109fb4c8400/boxrec-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-boxrec-com-api-b272ea7b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_boxer_stats

Get detailed statistics for a professional boxer by their BoxRec ID. Returns profile data including division, total bouts, rounds, KO percentage, career span, debut date, titles held, nationality, stance, height, and other biographical details. Fight history (recent_fights) requires site authentication and may be empty for unauthenticated access.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `boxer_id` | string | Yes | The numeric BoxRec ID of the boxer (e.g. '659772' for Oleksandr Usyk, '628407' for Naoya Inoue). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-boxrec-com-api-b272ea7b/get_boxer_stats \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"boxer_id":"<string>"}'
```

### get_trending_fighters

Retrieve a list of currently trending/popular boxers featured on the BoxRec homepage. Returns up to 30 fighters with their BoxRec IDs and names.

**Estimated cost:** Metered

_No parameters required._

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