# Fanfare NFL DFS Slate Inputs

> Fanfare NFL DFS Slate Inputs is a paid API for AI agents from fanfare.run, paid per call via x402, $0.35/call, status unknown (last checked 2026-09-15).

Returns a full NFL DFS slate for a given week, combining player injury status, recent usage shares (snaps/targets/air yards/red zone), Vegas lines, and weather data for every active fantasy-eligible player.

## Facts

- Endpoint: GET https://fanfare.run/v1/nfl/dfs-slate
- Price: $0.35/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-nfl-dfs-slate-inputs-0d4ac0b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W8lO9Zk_yJ9Z6nxLQDhH5

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability fanfare-nfl-dfs-slate-inputs-0d4ac0b3
```

Example prompt: Pull the full NFL DFS slate inputs for the week of November 17th in half-PPR scoring — I need injury status, snap and target shares, Vegas totals, spreads, and weather for all skill position players.

## When to prefer this

Use this endpoint when building or populating an NFL DFS lineup tool and you need a single call that aggregates player-level injury status, recent usage metrics, Vegas game environment data, and weather — saving multiple upstream API calls. Prefer this over raw nflverse or Vegas odds feeds when you need all DFS-relevant signals pre-joined on a per-player basis. Best for agents orchestrating DFS research workflows where projections and salaries are sourced separately.

## Known failure modes

- Invalid or missing date parameter returns an error — date must be a valid ISO 8601 date string
- No players returned if the date falls in an NFL off-week or bye-heavy period
- Team filter with invalid abbreviation may return empty results
- Weather data may be unavailable for certain neutral-site or newly announced venues
- L4 usage shares may be null for players with fewer than 4 games of recent data (rookies, returning IR players)

## How this service works

NFL DFS slate inputs for the week of a date: every active fantasy-position player with injury status + nflverse L4 shares (snap/target/air-yards/red-zone) + per-team Vegas total & spread (from the schedule line) + dome-aware venue weather. DFS-inputs layer — bring your own projection (pro tier) and your own salaries (join on player_id; gsis/espn ids returned). Params: date (any date in the week), scoring (half-ppr|full-ppr|standard), position (ALL|QB|RB|WR|TE|K), team.

## Output

A list of active fantasy-eligible NFL players for the requested week, each including player_id (GSIS and ESPN), position, injury status, and nflverse L4 usage shares (snap share, target share, air yards share, red zone share), combined with their team's Vegas total and spread from the schedule line, and dome-aware venue weather conditions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "date"
     ],
     "properties": {
      "date": {
       "type": "string",
       "format": "date"
      },
      "team": {
       "type": "string"
      },
      "scoring": {
       "type": "string"
      },
      "position": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fanfare-nfl-dfs-slate-inputs-0d4ac0b3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fanfare.run](https://www.zero.xyz/host/fanfare.run/llms.txt)
