# Sports Game Deep State (Box Score & Leaders)

> Sports Game Deep State (Box Score & Leaders) is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a rich, normalized single-game snapshot including box score, score, status, period/inning, team totals, statistical leaders, and reported injuries for a given league and game ID.

## Facts

- Endpoint: GET https://payai.agentstools.dev/sports/game
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sports-game-deep-state-box-score-leaders-b8fa682f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Uc_iLU71u8F7EpnkuTN-Q

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 sports-game-deep-state-box-score-leaders-b8fa682f
```

Example prompt: Pull up the full box score and statistical leaders for NBA game 401585576, including team totals, current status, and any injury reports.

## When to prefer this

Choose this endpoint when you need the richest possible view of a single specific game — including box score, team totals, statistical leaders, and injuries — all normalized into one JSON response. Prefer it over schedule or scores endpoints when you need per-player stats or category leaders, not just final scores. Best when you already have a game_id from /sports/scores or /sports/schedule and need deep game detail.

## Known failure modes

- Invalid or unrecognized game_id returns an error or empty result
- Mismatched league/game_id combination (e.g. an NBA game_id passed with 'nfl') returns an error
- Game not yet started may return minimal or no box score data
- Unsupported league key outside the enum (mlb, nhl, nfl, nba, epl) returns a validation error
- Upstream ESPN or league API unavailability may cause timeouts or stale data

## How this service works

Deep single-game state for one game by its id, normalized to one cited JSON. Give a league and a game_id and get the box-score numbers, the status and period or inning, team totals, statistical leaders and any reported injuries. The richest per-game view, fused from the league API or ESPN.

## Output

A normalized JSON object containing game status (live/final/scheduled), current period or inning, score, team-level totals, per-category statistical leaders (e.g. points, yards, hits), and any reported player injuries, all fused from the league API or ESPN.

## 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",
     "required": [
      "league"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Alias for game_id"
      },
      "league": {
       "enum": [
        "mlb",
        "nhl",
        "nfl",
        "nba",
        "epl"
       ],
       "type": "string",
       "description": "League key. One of the supported major leagues."
      },
      "game_id": {
       "type": "string",
       "description": "The game id, as returned by /sports/scores or /sports/schedule for this league."
      }
     }
    }
   },
   "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/sports-game-deep-state-box-score-leaders-b8fa682f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
