# Waze Alerts and Traffic Jams Lookup

> Waze Alerts and Traffic Jams Lookup is a paid API for AI agents from stableninja.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Retrieves real-time Waze traffic alerts and traffic jams within a specified geographic bounding box or radius.

## Facts

- Endpoint: GET https://stableninja.dev/api/waze/alerts-and-jams
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stableninja-dev-4427c0d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j575tpqsj8jmR8dOQoMXW

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-4427c0d9
```

Example prompt: Can you pull all Waze traffic alerts and jams within a 5 kilometer radius of 37.7749,-122.4194 in San Francisco, showing up to 50 alerts and 50 jams, filtering for ACCIDENT and HAZARD alert types?

## When to prefer this

Use this endpoint when you need real-time Waze-sourced traffic alerts and jam data for a specific geographic area defined by either a bounding box or a center+radius. Prefer this over generic mapping APIs when you specifically want crowdsourced Waze incident and jam data with filtering by alert type and subtype.

## Known failure modes

- Missing required geographic input (neither bounding box nor center+radius provided) returns a 400 error
- Invalid coordinate format (not matching lat,lng pattern) returns a 422 validation error
- Radius or max_alerts/max_jams values out of allowed range returns a 422 error
- Payment not provided or declined returns a 402 Payment Required error
- Waze upstream data unavailable returns a 503 or empty result set
- Invalid alert_types or alert_subtypes string returns no matching results

## How this service works

Get Waze alerts and traffic jams in a bounding box or radius.

## Output

Returns a list of real-time Waze traffic alerts (incidents, hazards, accidents, road closures) and traffic jams within the specified geographic area, including details such as alert type, subtype, location coordinates, and jam severity/length.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "center": "37.7749,-122.4194",
   "radius": "5",
   "max_jams": 50,
   "max_alerts": 50,
   "alert_types": "ACCIDENT,HAZARD",
   "radius_units": "KM"
  }
 }
}
```

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableninja-dev-4427c0d9/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)
