# Agentic Reservations — Live Restaurant Wait Times

> Agentic Reservations — Live Restaurant Wait Times is a paid API for AI agents from agentres.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns real-time wait times and crowd counts for all monitored restaurant locations, derived from camera-based crowd detection.

## Facts

- Endpoint: GET https://agentres.dev/api/wait-times
- 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/agentic-reservations-live-restaurant-wait-times-5eab4d99
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JmqCDIwXvwRfZIfbczON4

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 agentic-reservations-live-restaurant-wait-times-5eab4d99
```

Example prompt: Can you check which of the monitored restaurants currently have the shortest wait times and tell me which ones are open right now?

## When to prefer this

Choose this endpoint when you need a real-time, camera-derived snapshot of crowd levels and wait times across all monitored restaurants in a single call. It is ideal for comparing multiple locations simultaneously or for building real-time dashboards. Prefer it over manual check-in data or user-reported wait times when accuracy and freshness matter. It complements the Agentic Reservations booking endpoint — use this first to identify low-wait venues, then book via the reservation API.

## Known failure modes

- No locations returned if none are currently monitored
- Status fields are null when a location is closed or camera data is unavailable
- Payment failure (402) if USDC balance is insufficient
- Rate limiting or authentication errors if x402 payment header is missing or malformed
- Stale data if camera feed has not updated recently (check captured_at timestamp)

## How this service works

Live restaurant wait times from camera-based crowd data. One call lists every monitored location with its slug, open status, current crowd count, and wait in minutes.

## Output

A JSON array of all monitored restaurant locations, each with its slug, display name, address, timezone, operating hours, and a status object containing whether the restaurant is currently open, the live crowd count, wait time in minutes, and the timestamp of the most recent camera reading (all nullable if closed or no reading available). Also includes a total count of locations and a charge ID for the transaction.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "integer"
      },
      "charge_id": {
       "type": "string",
       "format": "uuid"
      },
      "locations": {
       "type": "array",
       "items": {
        "type": "object",
        "description": "slug, display_name, address, timezone, hours, and status (is_open, current_count, wait_minutes, captured_at — nullable when closed or no reading)",
        "additionalProperties": true
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentic-reservations-live-restaurant-wait-times-5eab4d99/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentres.dev](https://www.zero.xyz/host/agentres.dev/llms.txt)
