# Sports Reference — 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 data from sports-reference.com.

**Category:** Sports | **Website:** [sports-reference.com/cfb](https://sports-reference.com/cfb) | **Docs:** [parse.bot/marketplace/c1d00e9c-722e-4ed6-8d2d-471407d49d04/sports-reference-com-api](https://parse.bot/marketplace/c1d00e9c-722e-4ed6-8d2d-471407d49d04/sports-reference-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-sports-reference-com-api-c1d00e9c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_player_career_stats

Retrieve career statistics across all offensive categories (passing, rushing/receiving, scoring) for a college football player. Returns both career totals and per-season breakdowns. The table structure adapts to position: QBs/RBs show rushing-first stats, WRs/TEs show receiving-first stats. Empty category objects indicate the player has no stats in that category.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `player_id` | string | Yes | URL slug identifier for the player (e.g. 'joe-burrow-1', 'jamarr-chase-1'). Lowercase letters, numbers, and hyphens only. Obtainable from the player's Sports Reference URL path. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sports-reference-com-api-c1d00e9c/get_player_career_stats \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"player_id":"<string>"}'
```
