# NHL Venue Nearby Places

> NHL Venue Nearby Places 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 restaurants, bars, cafes, parking, and attractions near a specific NHL arena using Google Places data

## Facts

- Endpoint: GET https://fanfare-api.fly.dev/nhl/venue-nearby
- 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-e28f46bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pYJWMOYXBLs15HiBIeJLY

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

Example prompt: I'm going to the Bruins game tonight — can you find me some good restaurants near the TD Garden arena? Also check if there's parking nearby.

## When to prefer this

Use this endpoint when a user wants to discover nearby amenities (dining, parking, lodging, attractions) specifically around an NHL arena before or after a game. Prefer over generic location search when you already know it's an NHL venue context and have a team ID.

## Known failure modes

- Invalid or unknown NHL teamId returns an error or empty result
- Unsupported place type returns no results
- Google Places API downstream outage causes failure
- Missing required teamId query parameter returns validation error
- Rate limiting or payment failure returns 402

## 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 matching the requested type (restaurant, bar, cafe, parking, tourist_attraction, or lodging) around the specified NHL team's arena, sourced from Google Places, including place names, addresses, and relevant 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-api-fly-dev-e28f46bb/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)
