# Fantasycalc — 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 real-time fantasy football player rankings and trade values based on thousands of actual league trades across Dynasty, Redraft, and Superflex formats. Search player statistics and track how often specific trades occur to make informed roster decisions.

**Category:** Sports | **Website:** [fantasycalc.com/](https://fantasycalc.com/) | **Docs:** [parse.bot/marketplace/fc0e447d-6f7d-4c87-aaa1-0f7b86797302/fantasycalc-com-api](https://parse.bot/marketplace/fc0e447d-6f7d-4c87-aaa1-0f7b86797302/fantasycalc-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-fantasycalc-com-api-fc0e447d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_player_trades

Fetch implied trade value history for a specific player. Returns historical daily values and a list of implied trade scenarios with the assets on each side. The player_id is available from get_rankings results as items[].player.id.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `is_dynasty` | boolean | No | Dynasty (true) or Redraft (false). |
| `num_qbs` | integer | No | Number of starting QBs. |
| `player_id` | string | Yes | The unique numeric player ID from FantasyCalc (available in get_rankings results as items[].player.id). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fantasycalc-com-api-fc0e447d/get_player_trades \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"is_dynasty":"<boolean>","num_qbs":"<integer>","player_id":"<string>"}'
```

### get_rankings

Fetch comprehensive fantasy football rankings and player values for a given league format. Returns all ranked players sorted by overall rank, each with trade value, positional rank, trend data, and player metadata. Paginates as a single page containing the full ranking list.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `include_adp` | boolean | No | Whether to include ADP data in the response. |
| `is_dynasty` | boolean | No | Whether to fetch Dynasty (true) or Redraft (false) rankings. |
| `num_qbs` | integer | No | Number of starting QBs. |
| `num_teams` | integer | No | Number of teams in the league. |
| `ppr` | number | No | PPR scoring format. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fantasycalc-com-api-fc0e447d/get_rankings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"include_adp":"<boolean>","is_dynasty":"<boolean>","num_qbs":"<integer>","num_teams":"<integer>","ppr":"<number>"}'
```

### get_trade_count

Get the total number of trades in the FantasyCalc database. Returns a single integer count representing the cumulative number of trades analyzed.

**Estimated cost:** Metered

_No parameters required._

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