# Regression Incoming — 2026 NFL Fantasy Model Full PPR Draft Board

> Regression Incoming — 2026 NFL Fantasy Model Full PPR Draft Board is a paid API for AI agents from api.regressionincoming.fyi, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Returns a model-driven full-PPR fantasy football draft board covering 412 NFL players with 99 predictive features, confidence scores, and injury-return pathways for the 2026 season.

## Facts

- Endpoint: GET https://api.regressionincoming.fyi/v1/draft-board/full-ppr
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/regression-incoming-2026-nfl-fantasy-model-full-ppr-draft-board-f55fd744
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_47Gv0JUc7oQVAuvQCzUgr

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 regression-incoming-2026-nfl-fantasy-model-full-ppr-draft-board-f55fd744
```

Example prompt: Pull me the full PPR draft board from Regression Incoming for 2026, showing the top 50 running backs with their confidence scores and injury-return flags.

## When to prefer this

Choose this endpoint when building an AI agent that needs data-rich, model-driven 2026 NFL fantasy football player rankings with confidence scores and injury context, especially for draft automation, trade analysis, or tier-based draft strategy tools. Prefer over generic sports data APIs when the user specifically needs preseason PPR-optimized projections backed by a 99-feature regression model rather than raw stats or consensus rankings.

## Known failure modes

- Payment not provided or insufficient — returns HTTP 402 requiring $1 USDC via x402 protocol
- Invalid position enum value (not QB/RB/WR/TE) — returns 400 Bad Request
- limit exceeds maximum of 600 or below 1 — returns 400 validation error
- tier value below 1 — returns 400 validation error
- Model data not yet published for 2026 season — may return 503 or empty dataset

## How this service works

model-driven 2026 nfl preseason rankings. 412 players, confidence scores, injury-return pathway, VOR draft boards. per-call $0.10, or the $3 14-day draft bundle with the draft kit.

## Output

A JSON array of up to 600 NFL player records ranked for full-PPR fantasy scoring, each including model-derived rank, tier, position, confidence score, and injury-return pathway data — drawn from a 99-feature regression model covering 412 players for the 2026 preseason.

## 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",
     "properties": {
      "tier": {
       "type": "integer",
       "minimum": 1
      },
      "limit": {
       "type": "integer",
       "maximum": 600,
       "minimum": 1
      },
      "accept": {
       "type": "string"
      },
      "position": {
       "enum": [
        "QB",
        "RB",
        "WR",
        "TE"
       ],
       "type": "string"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/regression-incoming-2026-nfl-fantasy-model-full-ppr-draft-board-f55fd744/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.regressionincoming.fyi](https://www.zero.xyz/host/api.regressionincoming.fyi/llms.txt)
