# Fanfare MLB Slate Bundle

> Fanfare MLB Slate Bundle is a paid API for AI agents from fanfare.run, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Returns a composite MLB DFS slate bundle including slate context, per-player projections, team stacks, lineups snapshot, and late-swap snapshot in a single paid API call.

## Facts

- Endpoint: GET https://fanfare.run/v1/fantasy/mlb/slate-bundle
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-mlb-slate-bundle-335e7418
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WWO9ERfReOW7GUdpFu3A5

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-mlb-slate-bundle-335e7418
```

Example prompt: Pull the full Fanfare MLB slate bundle for today, May 20, covering all games, GPP contest type — I want the projections, team stacks, lineup snapshot, and late-swap data all at once.

## When to prefer this

Use this endpoint when you need all MLB DFS data for a slate in a single call rather than hitting separate projection, lineup, and stack endpoints individually. It saves cost and latency by bundling slate context, player projections, team stacks, lineups, and late-swap data into one composite response. Prefer it for building DFS lineup tools, late-swap dashboards, or any workflow where you need the full picture of a day's MLB DFS slate at once.

## Known failure modes

- Missing required 'date' parameter returns a 400 validation error
- Invalid date format (not YYYY-MM-DD) returns a 400 error
- No games found for the specified date or filters returns an empty or 404 response
- Payment failure or insufficient USDC balance blocks access with a 402 response
- Invalid position or contest_type enum value returns a 400 error
- Requesting a future date with no confirmed lineups may return partial or placeholder data

## How this service works

Everything for the slate in one call: slate-context + per-player projections + team stacks + lineups snapshot + late-swap snapshot. Single composite payment. Params same as /projections.

## Output

A composite JSON object containing: slate-level context (games, venues, weather), per-player DFS projections, recommended team stacks, a current lineups snapshot, and a late-swap snapshot — all for the specified date and filters.

## 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",
       "description": "Calendar date YYYY-MM-DD"
      },
      "window": {
       "type": "string",
       "description": "all | day | night (first-pitch filter)"
      },
      "game_pk": {
       "type": "integer",
       "description": "MLB game_pk (optional filter)"
      },
      "team_id": {
       "type": "integer",
       "description": "MLB Stats API team_id (optional filter)"
      },
      "position": {
       "type": "string",
       "description": "ALL | P | C | 1B | 2B | 3B | SS | OF | UTIL"
      },
      "contest_type": {
       "type": "string",
       "description": "cash | gpp | both"
      },
      "handedness_filter": {
       "type": "string",
       "description": "auto | LHB | RHB | LHP | RHP"
      }
     }
    }
   },
   "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-mlb-slate-bundle-335e7418/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)
