# Fanfare Team Profile Bundle

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

Returns a combined snapshot for any MLB, NBA, WNBA, NHL, or NFL team: current standings, next 3 upcoming games, and Ticketmaster ticket links for the next home game — all in one call.

## Facts

- Endpoint: GET https://fanfare.run/v1/team-profile-bundle
- Price: $0.050000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-team-profile-bundle-5bbe0863
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6dzpEAbPHvLEDOtjdFk0T

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-team-profile-bundle-5bbe0863
```

Example prompt: Can you pull up a full snapshot for the Boston Celtics in the NBA — their current standings, next 3 games, and where I can buy tickets to their next home game?

## When to prefer this

Use this endpoint when you need standings, schedule, and ticketing data for a single team all at once, rather than making three separate API calls. Ideal for building fan dashboards, answering 'how is my team doing and when can I see them?' queries, or any workflow that needs a holistic team snapshot in a single round-trip.

## Known failure modes

- Invalid sport code (not one of mlb/nba/wnba/nhl/nfl) returns a 400 or error response
- Unknown or invalid team_id for the given sport returns a not-found error
- Off-season or no scheduled games may result in empty upcoming games list
- Ticketmaster ticket data unavailable for a game returns null or empty ticket fields
- Payment not completed via x402 returns a 402 Payment Required response

## How this service works

Team snapshot bundle: current standings (wins, losses, division rank) + next 3 upcoming games + Ticketmaster tickets for the next home game — all in one call. Works year-round for MLB, NBA, WNBA, NHL, NFL. Params: sport (mlb|nba|wnba|nhl|nfl), team_id.

## Output

A bundled JSON response containing the team's current win/loss record and division rank, a list of their next 3 upcoming games (dates, opponents, venues), and Ticketmaster ticket links for the next home game.

## 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",
      "team_id"
     ],
     "properties": {
      "sport": {
       "type": "string",
       "description": "Sport code: mlb, nba, wnba, nhl, or nfl"
      },
      "team_id": {
       "type": "string",
       "description": "Team ID (sport-specific)"
      }
     }
    }
   },
   "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-team-profile-bundle-5bbe0863/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)
