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

> Get detailed NFL season-long player prop projections filtered by position and scoring format to optimize your fantasy lineup decisions. Access comprehensive stats to compare player performance forecasts across different league settings.

**Category:** Sports | **Website:** [winwithodds.com/season_long_full_stats](https://winwithodds.com/season_long_full_stats) | **Docs:** [parse.bot/marketplace/6d9dddfa-0a0e-4161-9ff7-ad39517e31bb/winwithodds-com-api](https://parse.bot/marketplace/6d9dddfa-0a0e-4161-9ff7-ad39517e31bb/winwithodds-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-winwithodds-com-api-6d9dddfa/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_season_long_stats

Retrieves season-long projected stats for NFL players derived from preseason prop snapshots. Results are ranked by projected fantasy points under the chosen scoring format. Supports filtering by position and player name search. Projection totals refresh ahead of each NFL season. The table includes passing, rushing, and receiving stat lines alongside the composite fantasy point projection.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of players to return. |
| `position` | string | No | Filter results to a single position. |
| `scoring` | string | No | Fantasy scoring format used to calculate projected points. |
| `search` | string | No | Case-insensitive substring match against player name. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-winwithodds-com-api-6d9dddfa/get_season_long_stats \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","position":"<string>","scoring":"<string>","search":"<string>"}'
```
