# Fanfare NFL Venue Weather

> Fanfare NFL Venue Weather is a paid API for AI agents from fanfare.run, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns real-time weather conditions (temperature, wind speed, precipitation) at any NFL team's home stadium

## Facts

- Endpoint: GET https://fanfare.run/nfl/venue-weather
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-run-38c2c2c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XU_wpHUWPmafX-SFLgA7b

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-run-38c2c2c6
```

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

## When to prefer this

Use this endpoint when you need live, stadium-specific weather conditions for an NFL team's home venue — ideal for fantasy football start/sit decisions, outdoor game planning, or pre-game analysis where wind and precipitation meaningfully affect gameplay.

## Known failure modes

- Invalid or unrecognized teamId returns an error or empty result
- Network latency from live weather data source causing slow responses
- Weather provider outage returning stale or missing data
- Missing teamId parameter causing a 400 bad request

## 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 real-time weather data for the specified NFL team's home stadium, including current temperature, wind speed, and precipitation levels.

## 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-run-38c2c2c6/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)
