# Fanfare NFL Flight Search

> Fanfare NFL Flight Search is a paid API for AI agents from fanfare.run, paid per call via x402, $0.250000/call, status unknown (last checked 2026-09-15).

Search one-way economy flights to the nearest airport for any NFL team's home stadium, returning price-sorted offers with carrier, times, and expiry

## Facts

- Endpoint: GET https://fanfare.run/nfl/flights
- Price: $0.250000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-55cea864
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lEVtoBzF4WMOaqNseP4b9

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-55cea864
```

Example prompt: Find me one-way economy flights from LAX to the nearest airport for the Kansas City Chiefs on September 14, 2025, for 2 passengers — sorted by price.

## When to prefer this

Use this endpoint when a user wants to fly to an NFL game and needs flight options specifically routed to the stadium's nearest airport. Ideal for sports travel planning workflows where the destination is defined by team identity rather than city or airport. Prefer over generic flight search when the NFL team context is known and stadium proximity matters.

## Known failure modes

- Invalid or unrecognized teamId returns an error or empty results
- Invalid date format (not YYYY-MM-DD) causes a 400 bad request
- Unrecognized or invalid origin IATA code causes an error
- No available flights on the requested date returns an empty offers list
- Upstream Duffel API unavailability causes a 502 or 503 error
- Offer expiry may be short — stale offers may no longer be bookable by the time the user acts

## How this service works

Search one-way economy flights to the nearest airport for any NFL team's home stadium, powered by Duffel. Returns offers sorted by price with carrier, times, and expiry. Params: teamId, date (YYYY-MM-DD), origin (IATA code), passengers.

## Output

A list of one-way economy flight offers sorted by price, each including carrier name, departure and arrival times, total price, and offer expiry timestamp. The destination airport is automatically resolved to the one nearest the specified NFL team's home stadium.

## 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": [
      "teamId",
      "date",
      "origin"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "Departure date (YYYY-MM-DD)"
      },
      "origin": {
       "type": "string",
       "description": "Origin airport IATA code"
      },
      "teamId": {
       "type": "string",
       "description": "NFL team ID"
      },
      "passengers": {
       "type": "integer",
       "default": 1,
       "description": "Number of adult passengers"
      }
     }
    }
   },
   "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-55cea864/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)
