# Fanfare NFL Scoreboard

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

Returns NFL game scores for a given date, including live and final scores during the season.

## Facts

- Endpoint: GET https://fanfare.run/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/fanfare-run-f192a8f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lDB-Z1Nz6kHMN_NPvi0jE

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-run-f192a8f2
```

Example prompt: What are all the NFL game scores for today, January 5th? I want to see live and final results on the scoreboard.

## When to prefer this

Use this endpoint when you need NFL game scores for a specific date — whether live scores during a game, final scores after completion, or a full day's scoreboard snapshot. Prefer this over general sports APIs when the NFL-specific scope and per-date query are exactly what's needed.

## Known failure modes

- No games returned during NFL offseason — expected behavior, not an error
- Invalid date format (must be YYYY-MM-DD) may result in an error or empty response
- Future dates may return scheduled games with no scores yet
- Network or upstream data source outage may return empty or error response

## How this service works

NFL game scores for any date — live and final scores during season, empty during offseason.

## Output

A list of NFL games for the requested date, including team matchups, current or final scores, and game status (live, final, or scheduled). Returns empty data during the offseason.

## Example request

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

## 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fanfare-run-f192a8f2/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)
