# 2s.io NFL Games Schedule & Scores

> 2s.io NFL Games Schedule & Scores is a paid API for AI agents from 2s.io, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-14).

Returns NFL game schedule and scores with filtering by season, week, and/or team, including game details, status, venue, and recap summaries.

## Facts

- Endpoint: GET https://2s.io/api/sports/nfl-games
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-nfl-games-schedule-scores-0e29169d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J0hWaY_l28UbUBnHaPH_K

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 2s-io-nfl-games-schedule-scores-0e29169d
```

Example prompt: Can you pull up all NFL games for the 2024 season, week 12, and show me the scores and game status for each matchup?

## When to prefer this

Use this endpoint when you need structured NFL game data including scores, schedules, and recap summaries with flexible filtering by season, week, or team. Prefer this over general sports APIs when you need cursor-paginated results with postseason flags and venue details in a single feed.

## Known failure modes

- Invalid season year returns empty results or error
- Invalid week number returns no matching games
- Invalid team_id returns empty data set
- Missing pagination cursor causes restart from beginning
- Rate limiting or payment failure returns 402 or 429 error
- Out-of-range per_page value (e.g. >100) returns validation error

## How this service works

NFL games from balldontlie — schedule and scores in one feed. Filter by season, week, and/or team id. Each game: date, season, week, status, postseason flag, venue, recap summary, home/visitor teams and final (or live) scores. Cursor-paginated (pass meta.cursor as cursor to continue).

## Output

A cursor-paginated list of NFL games, each containing the game date, season year, week number, game status, whether it is a postseason game, venue information, a recap summary, home and visitor team details, and final or live scores. Also includes a meta.cursor value for fetching the next page.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "required": [],
     "properties": {
      "week": {
       "type": "integer",
       "description": "Week number."
      },
      "cursor": {
       "type": "string",
       "description": "Pagination cursor from a prior meta.cursor."
      },
      "season": {
       "type": "integer",
       "description": "Season year, e.g. 2024."
      },
      "team_id": {
       "type": "integer",
       "description": "NFL team id."
      },
      "per_page": {
       "type": "integer",
       "description": "Page size, 1–100 (default 25)."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-nfl-games-schedule-scores-0e29169d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
