# Fanfare MLB Game Live Feed

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

Returns live play-by-play feed for a specific MLB game including lineups, inning-by-inning scores, pitching changes, and real-time game status.

## Facts

- Endpoint: GET https://fanfare.run/mlb/game/:game_pk
- Price: $0.005000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-c2d5b299
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O3nYYnw7Q86lUdm31K577

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

Example prompt: Pull up the live play-by-play feed for MLB game 716463 — I want the current score, lineups, any pitching changes, and what inning they're in right now.

## When to prefer this

Use this endpoint when you need real-time or recent game-level detail for a specific MLB game — lineups, scoring by inning, pitching changes, and live status. Requires a game_pk obtained from the Fanfare MLB schedule endpoint. Prefer this over general sports score APIs when you need granular play-by-play detail rather than just a final score.

## Known failure modes

- Invalid or unknown game_pk returns a 404 or empty result
- Game not yet started returns a pre-game status with lineups but no scoring data
- Completed game returns final score and full game summary rather than live data
- Network or upstream MLB data source outage may return 503 or stale data

## How this service works

Live play-by-play feed for an MLB game — lineups, inning-by-inning scores, pitching changes, and real-time status. Use game_pk from the schedule endpoint.

## Output

A live feed object containing the game's current status, inning-by-inning scoring, starting and current lineups, pitching change history, and real-time play-by-play events for the specified MLB game.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "game_pk": "748247"
  },
  "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": [
      "game_pk"
     ],
     "properties": {
      "game_pk": {
       "type": "string",
       "description": "MLB game PK"
      }
     }
    },
    "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-c2d5b299/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)
