# Fanfare NBA Venue Weather

> Fanfare NBA 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 NBA arena by team ID.

## Facts

- Endpoint: GET https://fanfare.run/nba/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-cbd8d1b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uSYjCuIQGDrC-iWSTVcGL

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

Example prompt: What's the current weather near the Golden State Warriors arena — temperature, wind, and conditions?

## When to prefer this

Use this endpoint when you need current weather specifically tied to an NBA arena location by team ID, particularly for travel planning, game-day preparation, or venue-specific weather lookups. Prefer this over generic weather APIs when the user references an NBA team name rather than a city or coordinates.

## Known failure modes

- Invalid or unrecognized teamId returns an error or empty result
- Network or upstream weather provider unavailability causes a timeout or 503
- Missing required teamId query parameter returns a 400 bad request
- Payment not completed results in a 402 response before weather data is returned

## How this service works

Real-time weather near any NBA arena — temperature, wind, and conditions. For planning travel to the arena — temperature and conditions on game day.

## Output

Real-time weather data near the specified NBA team's home arena, including temperature, wind speed/direction, and sky/atmospheric 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": "NBA 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-cbd8d1b3/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)
