# NFL Scoreboard by Date

> NFL Scoreboard by Date is a paid API for AI agents from mlb-stats-api.fly.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns NFL game scores and scoreboard data for a given date, or the current day if no date is specified.

## Facts

- Endpoint: GET https://mlb-stats-api.fly.dev/nfl/scoreboard
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mlb-stats-api-fly-dev-362ab442
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yUwFPM_6B0zzksOWV5r0O

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 mlb-stats-api-fly-dev-362ab442
```

Example prompt: What were the NFL scores on January 5, 2025? Pull up the full scoreboard for that day.

## When to prefer this

Use this endpoint when you need NFL game scores or scoreboard data for a specific date or today. Ideal for checking game results, live scores, or historical scores on a particular day. Note the mismatch between the domain name (mlb-stats-api) and content (NFL data) — this API covers multiple sports leagues.

## Known failure modes

- Returns empty response during NFL offseason (no games scheduled)
- Invalid date format returns an error
- No games on a given date returns empty scoreboard
- Service unavailable on fly.dev infrastructure

## How this service works

NFL scoreboard for a given date. Optional: date (YYYY-MM-DD). Returns empty during offseason.

## Output

A list of NFL games for the requested date including team matchups, scores, and game status. Returns an empty result during the NFL offseason when no games are scheduled.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "date": "2025-01-12"
  }
 }
}
```

## 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": {
      "date": {
       "type": "string",
       "description": "Date (YYYY-MM-DD)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "data",
  "sport",
  "errors",
  "league",
  "warnings",
  "request_id",
  "retrieved_at"
 ],
 "properties": {
  "data": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "id",
     "week",
     "clock",
     "score",
     "sport",
     "venue",
     "league",
     "season",
     "status",
     "quarter",
     "date_utc",
     "away_team",
     "home_team"
    ],
    "properties": {
     "id": {
      "type": "string"
     },
     "week": {
      "type": "number"
     },
     "clock": {
      "type": "null"
     },
     "score": {
      "type": "object",
      "required": [
       "away",
       "home",
       "quarters"
      ],
      "properties": {
       "away": {
        "type": "number"
       },
       "home": {
        "type": "number"
       },
       "quarters": {
        "type": "array",
        "items": {
         "type": "object",
         "required": [
          "away",
          "home",
          "quarter"
         ],
         "properties": {
          "away": {
           "type": "number"
          },
          "home": {
           "type": "number"
          },
          "quarter": {
           "type": "number"
          }
         }
        }
       }
      }
     },
     "sport": {
      "type": "string"
     },
     "venue": {
      "type": "object",
      "required": [
       "city",
       "name",
       "state",
       "surface",
       "roof_type"
      ],
      "properties": {
       "city": {
        "type": "string"
       },
       "name": {
        "type": "string"
       },
       "state": {
        "type": "string"
       },
       "surface": {
        "type": "null"
       },
       "roof_type": {
        "type": "string"
       }
      }
     },
     "league": {
      "type": "string"
     },
     "season": {
      "type": "string"
     },
     "status": {
      "type": "string"
     },
     "quarter": {
      "type": "number"
     },
     "date_utc": {
      "type": "string"
     },
     "away_team": {
      "type": "object",
      "required": [
       "id",
       "city",
       "name",
       "division",
       "full_name",
       "conference",
       "abbreviation"
      ],
      "properties": {
       "id": {
        "type": "string"
       },
       "city": {
        "type": "string"
       },
       "name": {
        "type": "string"
       },
       "division": {
        "type": "null"
       },
       "full_name": {
        "type": "string"
       
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mlb-stats-api-fly-dev-362ab442/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mlb-stats-api.fly.dev](https://www.zero.xyz/host/mlb-stats-api.fly.dev/llms.txt)
