# Fanfare NFL Game Detail

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

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

## Facts

- Endpoint: GET https://fanfare.run/nfl/game/:event_id
- Price: $0.001000/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-ec51512e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ajn4PtU5OCMc0syS2EGDn

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-ec51512e
```

Example prompt: What's the current score, quarter, and game clock for the NFL game with ESPN event ID 401547417?

## When to prefer this

Use this endpoint when you need detailed live or final game data for a specific NFL game and already have the ESPN event ID from the Fanfare schedule or scoreboard endpoint. Best for real-time game monitoring, post-game box score retrieval, or building game-day dashboards.

## Known failure modes

- Invalid or unknown event_id returns an error or empty response
- Event ID from a different sport (NBA, MLB) will not return valid NFL data
- Game not yet started may return pre-game state without live score data
- Completed games return final scores and box score but no live clock
- Network or upstream ESPN data unavailability causes service errors

## 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 live NFL game data including current score for both teams, the current quarter, game clock time remaining, and a full box score breakdown (likely stats by quarter and key performance metrics for both teams).

## Example request

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

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

## More

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