# Regression Incoming 2026 NFL Fantasy Preseason Rankings

> Regression Incoming 2026 NFL Fantasy Preseason Rankings 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 model-driven 2026 NFL preseason fantasy rankings for up to 412 players across QB/RB/WR/TE positions, with 99-feature confidence scores and injury-return pathway data.

## Facts

- Endpoint: GET https://api.regressionincoming.fyi/v1/rankings/preseason
- 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-preseason-rankings-5119b9df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HguP9tjWwueA8CDgXPqmy

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-preseason-rankings-5119b9df
```

Example prompt: Pull me the top 50 wide receivers from the Regression Incoming 2026 NFL preseason model, only show players with a confidence score of at least 0.75.

## When to prefer this

Use this endpoint when you need preseason 2026 NFL fantasy player rankings backed by a 99-feature machine learning model with confidence intervals and injury-return data, especially when filtering by position or screening for high-confidence projections ahead of a fantasy draft.

## Known failure modes

- Invalid position enum value returns 400 bad request
- min_confidence outside 0–1 range returns validation error
- limit exceeds 500 returns 400 error
- Payment not provided or insufficient returns 402 Payment Required
- No players match filter combination returns empty array

## 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 list of up to 412 NFL players ranked for 2026 fantasy preseason, each with position, ranking, confidence score (0–1), and injury-return pathway status, filterable by position (QB/RB/WR/TE), confidence threshold, and result limit.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 50,
   "position": "WR",
   "min_confidence": 0.75
  }
 }
}
```

## 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": {
      "limit": {
       "type": "integer",
       "maximum": 500,
       "minimum": 1
      },
      "accept": {
       "type": "string"
      },
      "position": {
       "enum": [
        "QB",
        "RB",
        "WR",
        "TE"
       ],
       "type": "string"
      },
      "min_confidence": {
       "type": "number",
       "maximum": 1,
       "minimum": 0
      }
     }
    }
   }
  },
  "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-preseason-rankings-5119b9df/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)
