# Fanfare NFL Venue Nearby Places

> Fanfare NFL 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 NFL team's home stadium via Google Places

## Facts

- Endpoint: GET https://fanfare.run/nfl/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-6a61452e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ngGhMOsT905Uux1qx9lUC

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

Example prompt: What are some good bars and restaurants near the Kansas City Chiefs stadium? I want to plan a pre-game tailgate.

## When to prefer this

Use this endpoint when you need to discover dining, parking, or entertainment options specifically near an NFL team's home stadium for game-day or tailgate planning. Prefer this over generic location search when the context is NFL-specific and the team ID is known.

## Known failure modes

- Invalid or unrecognized teamId returns an error or empty results
- Unsupported place type returns no results
- Google Places API unavailability causes service degradation
- Payment failure via x402 protocol blocks the request

## How this service works

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

## Output

A list of nearby places (restaurants, bars, cafes, parking spots, tourist attractions, or lodging) around the specified NFL team's home stadium, sourced from Google Places, including place names, addresses, ratings, and relevant 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": "NFL 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-6a61452e/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)
