# Fanfare NHL Venue Nearby

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

Returns nearby restaurants, bars, parking, cafes, lodging, and tourist attractions around any NHL arena using Google Places data.

## Facts

- Endpoint: GET https://fanfare.run/nhl/venue-nearby
- Price: $0.001000/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-6a4cfbfd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6nQbWJVUa2hXOz7Q-8w8o

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-6a4cfbfd
```

Example prompt: Can you find some good restaurants near the Toronto Maple Leafs arena? Also show me any nearby parking options.

## When to prefer this

Use this endpoint when a user wants to discover places near a specific NHL arena — for pre-game planning, parking, dining, or local attractions. Prefer this over generic location search when the context is specifically NHL hockey venues and team-based lookup is more convenient than raw coordinates.

## Known failure modes

- Invalid or unknown teamId returns an error or empty results
- Unsupported place type returns no results or an error
- Google Places API downstream outage causes failure
- Missing required teamId parameter returns a 400 or validation error

## How this service works

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

## Output

A list of nearby places (restaurants, bars, cafes, parking, tourist attractions, or lodging) around the specified NHL team's home arena, sourced from Google Places — including place names, addresses, ratings, and location details.

## 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": "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-6a4cfbfd/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)
