# Fanfare NFL Scoreboard

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

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

## Facts

- Endpoint: GET https://fanfare-api.fly.dev/nfl/scoreboard
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-api-fly-dev-8a04210c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GXwo6YYLl6jm6Ff2cSu5d

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-api-fly-dev-8a04210c
```

Example prompt: What were all the NFL game scores from January 5, 2025 — show me the final results for every game that day.

## When to prefer this

Use this endpoint when you need NFL game scores or results for a specific calendar date — whether checking live scores during a game day or looking up historical final scores from a past date. Prefer this over general sports data APIs when you need a lightweight, low-cost NFL-specific scoreboard feed.

## Known failure modes

- No games returned during NFL offseason (empty response, not an error)
- Invalid date format returns an error
- Future dates may return no games or scheduled games without scores
- Network or server errors from the fly.dev hosting environment

## 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 and their scores (live or final). During offseason, returns an empty result set.

## Example request

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

## 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": [
  "_truncated",
  "_originalSize"
 ],
 "properties": {
  "_truncated": {
   "type": "boolean"
  },
  "_originalSize": {
   "type": "number"
  }
 }
}
```

## More

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