# Fanfare WNBA Venue Nearby Places

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

Returns restaurants, bars, cafes, parking, attractions, and lodging near any WNBA team's home arena using Google Places data.

## Facts

- Endpoint: GET https://fanfare.run/wnba/venue-nearby
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-run-82110e31
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZfILb9uWCVehbW6k4JRpD

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-82110e31
```

Example prompt: What restaurants are near the Indiana Fever's arena? I'm going to a WNBA game and want to find a good place to eat beforehand.

## When to prefer this

Use this endpoint when a user needs to discover local venues, dining, parking, or attractions specifically near a WNBA team's home arena for pre-game or event planning. Prefer over generic maps/places APIs when the context is WNBA team-specific and you want sports-contextualized neighborhood discovery without needing to look up arena coordinates yourself.

## Known failure modes

- Invalid or unknown WNBA teamId returns an error or empty results
- Unsupported place type value returns an error
- Google Places API unavailable causes downstream failure
- No results found if the place type has no nearby matches

## How this service works

Restaurants, bars, parking, and attractions near any WNBA arena via Google Places. Great for pre-game planning. Types: restaurant, bar, cafe, parking, tourist_attraction, lodging.

## Output

A list of nearby places (filtered by type: restaurant, bar, cafe, parking, tourist_attraction, or lodging) around the specified WNBA team's home arena, sourced from Google Places. Each result typically includes name, address, rating, and location details.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "type": "restaurant",
   "teamId": "1"
  }
 }
}
```

## 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": {
      "type": {
       "type": "string",
       "default": "restaurant",
       "description": "Place type (restaurant, bar, cafe, parking, tourist_attraction, lodging)"
      },
      "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-82110e31/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)
