# Waze Geographic Autocomplete with Coordinate Bias

> Waze Geographic Autocomplete with Coordinate Bias 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).

Autocompletes geographic place/address queries biased toward a given Waze coordinate location

## Facts

- Endpoint: GET https://openwebninja-x402.vercel.app/api/waze/autocomplete
- 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-geographic-autocomplete-with-coordinate-bias-40e59654
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9CaQTtzs002gfOSfLMG7A

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-geographic-autocomplete-with-coordinate-bias-40e59654
```

Example prompt: Can you autocomplete 'Central Par' using Waze, biased toward the coordinates 40.7812,-73.9665 in English?

## When to prefer this

Use this endpoint when you need Waze-biased geographic autocomplete — specifically when location context (coordinates) should influence result ranking. Prefer over generic geocoding autocomplete when the user is navigating or searching within Waze's dataset and needs results anchored to a specific lat/lng position.

## Known failure modes

- Missing required 'q' parameter returns validation error
- Invalid coordinate format (not matching lat,lon pattern) returns 400
- Empty query string rejected by minLength constraint
- Waze backend unavailable returns 502/503
- No results found for obscure or misspelled query returns empty list
- Payment not included or invalid returns 402

## How this service works

Autocomplete geographic queries with a Waze coordinate bias.

## Output

A list of geographic autocomplete suggestions (place names, addresses) ranked and biased toward the provided Waze coordinates, returned in the requested language.

## 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": [
      "q",
      "coordinates"
     ],
     "properties": {
      "q": {
       "type": "string",
       "minLength": 1
      },
      "language": {
       "type": "string",
       "minLength": 1
      },
      "coordinates": {
       "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-geographic-autocomplete-with-coordinate-bias-40e59654/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)
