# Waze Venues in Bounding Box

> Waze Venues in Bounding Box is a paid API for AI agents from openwebninja-x402.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves Waze venue listings within a specified geographic bounding box, optionally filtered by category and zoom level.

## Facts

- Endpoint: GET https://openwebninja-x402.vercel.app/api/waze/venues
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/waze-venues-in-bounding-box-829012c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kGEJXjpfogW1utm_qr495

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 waze-venues-in-bounding-box-829012c8
```

Example prompt: What Waze venues are in the area around downtown San Francisco — roughly between coordinates 37.77,-122.43 at the bottom-left and 37.80,-122.39 at the top-right? Show restaurants if you can filter by category.

## When to prefer this

Use this endpoint when you need Waze-sourced venue/POI data for a geographic region defined by bounding box coordinates, especially when you want category-filtered results or are building map-based navigation features. Prefer over generic place search APIs when Waze data consistency is needed alongside other Waze endpoints (alerts, traffic).

## Known failure modes

- Invalid coordinate format (not matching lat,lon pattern) returns a 400 error
- Missing required bottom_left or top_right parameters causes validation failure
- Invalid zoom_level value outside enum 1-4 returns an error
- Bounding box too large for the requested zoom level may return no results or an error
- Payment failure (insufficient USDC balance) returns 402 Payment Required

## How this service works

Get Waze venues in a geographic bounding box.

## Output

A list of Waze venue objects within the specified bounding box, including venue names, locations, and category information as surfaced by Waze's data.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "top_right": "37.80,-122.39",
   "categories": "restaurants",
   "zoom_level": "3",
   "bottom_left": "37.77,-122.43"
  }
 }
}
```

## 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",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "bottom_left",
      "top_right"
     ],
     "properties": {
      "top_right": {
       "type": "string",
       "pattern": "^-?\\d+(\\.\\d+)?,-?\\d+(\\.\\d+)?$",
       "minLength": 3
      },
      "categories": {
       "type": "string",
       "minLength": 1
      },
      "zoom_level": {
       "enum": [
        "1",
        "2",
        "3",
        "4"
       ],
       "type": "string"
      },
      "bottom_left": {
       "type": "string",
       "pattern": "^-?\\d+(\\.\\d+)?,-?\\d+(\\.\\d+)?$",
       "minLength": 3
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/waze-venues-in-bounding-box-829012c8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from openwebninja-x402.vercel.app](https://www.zero.xyz/host/openwebninja-x402.vercel.app/llms.txt)
