# Fanfare NHL Venue Weather

> Fanfare NHL 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, and sky conditions) near any NHL arena, identified by team ID.

## Facts

- Endpoint: GET https://fanfare.run/nhl/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-aea7b34e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Bq93zTmDUR99zDu9YifIM

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-aea7b34e
```

Example prompt: What's the current weather near the Maple Leafs arena — I need temperature, wind, and conditions before I head out to the game tonight? The team ID is TOR.

## When to prefer this

Use this endpoint when you need current weather conditions specifically tied to an NHL arena location by team ID, especially for game-day travel or pre-game planning. Prefer over generic weather APIs when the venue geolocation needs to be resolved from a team identifier automatically.

## Known failure modes

- Invalid or missing teamId returns an error response
- Unknown NHL team ID results in no venue match
- Upstream weather data provider outage may return stale or unavailable data
- Network timeout if external weather API is slow

## How this service works

Real-time weather near any NHL arena — temperature, wind, and conditions for game-day travel planning.

## Output

Returns real-time weather data near the specified NHL team's home arena, including temperature, wind speed/direction, and current sky conditions suitable for game-day travel planning.

## 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": "NHL 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-aea7b34e/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)
