# Fanfare WNBA Venue Weather

> Fanfare WNBA 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 temperature, wind, and weather conditions near any WNBA team's home arena, identified by team ID.

## Facts

- Endpoint: GET https://fanfare.run/wnba/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-4a3833fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Dn--BZ9o8J3FIUN_TZ7Lk

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-4a3833fd
```

Example prompt: What's the weather like right now near the Chicago Sky's arena? I want to know the temperature and wind conditions for their game today — their team ID is CHI.

## When to prefer this

Use this endpoint when an agent needs real-time, hyper-local weather tied specifically to a WNBA team's home arena by team ID, rather than generic city-level weather. Ideal for game-day planning flows, fan apps, or travel assistants building WNBA-specific itineraries alongside flight and hotel lookups on the same Fanfare platform.

## Known failure modes

- Invalid or unknown WNBA teamId returns an error or empty result
- Weather data provider unavailable leads to timeout or 5xx error
- Team is in offseason with no active venue context
- Missing required teamId parameter returns a validation error

## 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 near the specified WNBA team's home arena, including current temperature, wind speed/direction, and overall weather conditions (e.g. clear, cloudy, rainy) to help fans plan their game-day experience.

## 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-run-4a3833fd/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)
