# WNBA Venue Weather

> WNBA 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, precipitation) at the arena of a specified WNBA team.

## Facts

- Endpoint: GET https://fanfare-api.fly.dev/wnba/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-57ea23d5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GSkTJj3bBx3VIhvLpZ05p

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-57ea23d5
```

Example prompt: What's the current weather at the Seattle Storm's arena — temperature, wind, and conditions?

## When to prefer this

Use this endpoint when you need current weather conditions specifically at a WNBA team's home arena, for example to help fans decide what to wear or whether outdoor areas near the venue are comfortable. Prefer over generic weather APIs when you want sports-context-aware weather tied directly to a team ID.

## Known failure modes

- Invalid or unrecognized teamId returns an error or empty response
- Weather data provider outage may result in stale or unavailable data
- Missing required teamId query parameter causes a validation error
- Team not currently in season may return no venue match

## How this service works

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

## Output

Returns real-time weather data at the arena associated with the given WNBA team, including temperature, wind speed, and current weather conditions useful for game-day 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": "WNBA 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-57ea23d5/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)
