# Fanfare NFL Venue Nearby

> Fanfare NFL Venue Nearby 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, tourist attractions, and lodging near a given NFL stadium using Google Places data.

## Facts

- Endpoint: GET https://fanfare-api.fly.dev/nfl/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-d7183839
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-vO6frrR8I15JOtSVInwu

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

Example prompt: What restaurants are near the Kansas City Chiefs stadium? I'm looking for a good spot to eat before the game.

## When to prefer this

Use this endpoint when a user wants to discover venues (restaurants, bars, parking, etc.) near a specific NFL team's stadium — ideal for pre-game planning, tailgating, or travel coordination around NFL events.

## Known failure modes

- Invalid or unrecognized teamId returns an error or empty result
- Unsupported place type value returns an error
- Google Places API quota exceeded causes service unavailability
- Stadium has no nearby results for the requested place type

## 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 lots, tourist attractions, or lodging) around the specified NFL team's stadium, sourced from Google Places, including venue names, addresses, and relevant place details.

## Example request

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

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "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": "Numeric NFL team ID as a string (e.g., '1' for Buffalo Bills)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "request_id",
  "sport",
  "league",
  "retrieved_at",
  "data",
  "warnings",
  "errors"
 ],
 "properties": {
  "data": {
   "type": "object",
   "required": [
    "venue_id",
    "venue_name",
    "latitude",
    "longitude",
    "radius_meters",
    "category",
    "places"
   ],
   "properties": {
    "places": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "name",
       "address",
       "rating",
       "user_ratings_total",
       "types",
       "place_id"
      ],
      "properties": {
       "name": {
        "type": "string"
       },
       "types": {
        "type": "array",
        "items": {
         "type": "string"
        }
       },
       "rating": {
        "type": "number"
       },
       "address": {
        "type": "string"
       },
       "place_id": {
        "type": "string"
       },
       "user_ratings_total": {
        "type": "number"
       }
      }
     }
    },
    "category": {
     "type": "string"
    },
    "latitude": {
     "type": "number"
    },
    "venue_id": {
     "type": "string"
    },
    "longitude": {
     "type": "number"
    },
    "venue_name": {
     "type": "string"
    },
    "radius_meters": {
     "type": "number"
    }
   }
  },
  "sport": {
   "type": "string"
  },
  "errors": {
   "type": "array",
   "items": {
    "type": "unknown"
   }
  },
  "league": {
   "type": "string"
  },
  "warnings": {
   "type": "array",
   "items": {
    "type": "unknown"
   }
  },
  "request_id": {
   "type": "string"
  },
  "retrieved_at": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fanfare-api-fly-dev-d7183839/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)
