# Fanfare NFL Venue Weather

> Fanfare NFL Venue Weather is a paid API for AI agents from fanfare-api.fly.dev, paid per call via x402, $0.001000/call, status unknown (last checked 2026-09-15).

Returns real-time weather conditions (temperature, wind speed, precipitation) at any NFL stadium by team ID

## Facts

- Endpoint: GET https://fanfare-api.fly.dev/nfl/venue-weather
- Price: $0.001000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-api-fly-dev-6dad158a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OKQVOmUg16bCdG7kopic-

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-api-fly-dev-6dad158a
```

Example prompt: What's the weather like right now at the Kansas City Chiefs stadium — temperature, wind, and any precipitation?

## When to prefer this

Use this endpoint when you need real-time, stadium-specific weather for NFL game-day planning, fantasy sports decisions, or outdoor event logistics. It is purpose-built for NFL venues by team ID, unlike general weather APIs that require coordinates or city names.

## Known failure modes

- Invalid or unknown teamId returns an error or empty result
- Stadium not found for given team ID
- Upstream weather data unavailable or stale
- Network timeout reaching the fly.dev host
- Payment not processed (x402 payment required before response)

## How this service works

Real-time weather at any NFL stadium — temperature, wind speed, and precipitation. Critical for outdoor stadium planning and fantasy decisions.

## Output

Returns current weather data at the specified NFL team's stadium, including temperature, wind speed, and precipitation conditions.

## 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"
     ],
     "properties": {
      "teamId": {
       "type": "string",
       "description": "NFL team ID"
      }
     }
    }
   },
   "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-api-fly-dev-6dad158a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fanfare-api.fly.dev](https://www.zero.xyz/host/fanfare-api.fly.dev/llms.txt)
