# Fanfare Player Spotlight Bundle

> Fanfare Player Spotlight Bundle is a paid API for AI agents from fanfare.run, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a combined bundle of player profile, season stats, team's next home game, and Ticketmaster ticket listings for an MLB, NBA, WNBA, or NHL player in a single call.

## Facts

- Endpoint: GET https://fanfare.run/v1/player-spotlight-bundle
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-player-spotlight-bundle-8a0797f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T0MStiftyDqNsg-2TEVeV

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-player-spotlight-bundle-8a0797f8
```

Example prompt: Pull the full player spotlight for NBA player 1966 — I want his profile, current season stats, their next home game, and available Ticketmaster tickets all at once.

## When to prefer this

Use this endpoint when you need a comprehensive, single-call fan experience snapshot for a specific player — avoiding multiple round trips to separate profile, stats, schedule, and ticketing endpoints. Ideal for building fan dashboards, answering 'tell me everything about player X' queries, or when you want to surface ticket purchasing options alongside player data. Not suitable for NFL players or bulk/batch player lookups.

## Known failure modes

- Invalid or unsupported sport code returns error (NFL not supported)
- Wrong player ID type (e.g. using ESPN ID for MLB) returns incorrect or empty data
- Player not found for given sport/ID combination
- No upcoming home game available (end of season or offseason)
- No Ticketmaster tickets available for the next home game
- Payment failure due to insufficient USDC balance (x402)

## How this service works

Player spotlight bundle: player profile + season stats + team's next home game + Ticketmaster tickets — all in one call. Supported sports: MLB, NBA, WNBA, NHL (NFL not supported). player_id: MLB Stats API ID for mlb; ESPN player ID for nba/wnba/nhl. Params: sport (mlb|nba|wnba|nhl), player_id.

## Output

A bundled JSON response containing the player's profile (name, team, position, etc.), current season statistics, the team's next scheduled home game details, and a list of available Ticketmaster ticket listings for that game.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "sport": "nba",
   "player_id": "1966"
  }
 }
}
```

## 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": [
      "sport",
      "player_id"
     ],
     "properties": {
      "sport": {
       "type": "string",
       "description": "Sport code: mlb, nba, wnba, or nhl"
      },
      "player_id": {
       "type": "string",
       "description": "Player ID (MLB Stats API ID for mlb; ESPN ID for nba/wnba/nhl)"
      }
     }
    }
   },
   "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-player-spotlight-bundle-8a0797f8/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)
