# Waze Autocomplete with Coordinate Bias

> Waze Autocomplete with Coordinate Bias is a paid API for AI agents from stableninja.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns geographic place/address autocomplete suggestions biased toward a given Waze coordinate location.

## Facts

- Endpoint: GET https://stableninja.dev/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/stableninja-dev-54f7cc42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GX3B9a6dymdAyYAGPFok1

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 stableninja-dev-54f7cc42
```

Example prompt: As I'm typing 'Centr' into the destination box, can you get me Waze autocomplete suggestions for places near coordinates 40.7128,-74.0060, preferably in English?

## When to prefer this

Use this endpoint when you need Waze-specific location autocomplete that is spatially biased toward a known coordinate — ideal for navigation UIs, address input fields in mapping apps, or agent workflows that need to resolve partial location queries into full Waze venue/address candidates near a current position.

## Known failure modes

- Missing required 'q' parameter returns validation error
- Invalid coordinates format (not matching lat,lng pattern) returns 400
- Empty query string rejected due to minLength:1 constraint
- Coordinates outside valid geographic range may return empty results
- Payment not included or invalid returns 402 Payment Required
- Rate limiting or quota exceeded returns 429 or 402

## How this service works

Autocomplete geographic queries with a Waze coordinate bias.

## Output

A list of geographic autocomplete suggestions (place names, addresses, venues) ranked by relevance to the query string and biased toward the provided coordinates, sourced from Waze's location database.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableninja-dev-54f7cc42/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableninja.dev](https://www.zero.xyz/host/stableninja.dev/llms.txt)
