# Fanfare NFL Game Detail

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

Returns live NFL game details including score, current quarter, game clock, and full box score for a specific game event

## Facts

- Endpoint: GET https://fanfare-api.fly.dev/nfl/game/:event_id
- Price: $0.001000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-api-fly-dev-6ad91903
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9ttMZOnOoU0zH2ArTQPDY

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-6ad91903
```

Example prompt: What's the current score, quarter, and game clock for NFL game event 401671816 — also pull the full box score?

## When to prefer this

Use this endpoint when you need live or near-real-time NFL game data for a specific game, including score, quarter, game clock, and box score. Best used after obtaining the event_id from an NFL schedule or scoreboard endpoint. Prefer this over general sports data APIs when you specifically need box score detail alongside live clock and quarter information for NFL games.

## Known failure modes

- Invalid or non-existent event_id returns a 404 or error response
- Game not yet started may return empty or null score/clock fields
- Event ID from a different sport (e.g. NBA) will return no data or an error
- Payment failure (x402) if USDC balance is insufficient
- Rate limiting if too many requests are made in quick succession

## How this service works

NFL game detail with score, current quarter, game clock, and box score. Use event_id from the schedule or scoreboard endpoint.

## Output

Returns a JSON object with the live NFL game score for both teams, the current quarter, game clock time remaining, and a full box score breakdown — all keyed to the ESPN event ID provided.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "event_id": "401671816"
  },
  "queryParams": {}
 }
}
```

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "event_id"
     ],
     "properties": {
      "event_id": {
       "type": "string",
       "description": "ESPN event ID"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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": "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": "null"
         },
         "home": {
          "type": "null"
         },
         "quarter": {
          "type": "number"
         }
        }
       }
      }
     }
    },
    "sport": {
     "type": "string"
    },
    "venue": {
     "type": "object",
     "required": [
      "city",
      "name",
      "state",
      "surface",
      "roof_type"
     ],
     "properties": {
      "city": {
       "type": "null"
      },
      "name": {
       "type": "null"
      },
      "state": {
       "type": "null"
      },
      "surface": {
       "type": "null"
      },
      "roof_type": {
       "type": "string"
      }
     }
    },
    "league": {
     "type": "string"
    },
    "season": {
     "type": "string"
    },
    "status": {
     "type": "string"
    },
    "quarter": {
     "type": "null"
    },
    "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"
      },
      "conference": {
       "type": "null"
      },
      "abbreviation": {
       "type": "string"
      }
     }
    },
    "home_team": {
     "type": "object",
     "required
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fanfare-api-fly-dev-6ad91903/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)
