# Agentic Reservations — Restaurant Detail Probe

> Agentic Reservations — Restaurant Detail Probe 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 full details for a single Blackbird-network restaurant including all locations, addresses, coordinates, time zone, and live open hours.

## Facts

- Endpoint: GET https://agentres.dev/api/discover/restaurants/probe
- 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-restaurant-detail-probe-04a3477b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7BSW6LPI00UnejczPnDVU

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-restaurant-detail-probe-04a3477b
```

Example prompt: Pull up the full details for Blackbird restaurant ID 'brd_12345' — I need its address, coordinates, time zone, and whether it's open right now.

## When to prefer this

Use this endpoint after obtaining a restaurant ID from the Agentic Reservations discovery list endpoint, when you need precise location data (coordinates, address, time zone) and live open hours for a specific Blackbird-network restaurant before navigating or booking.

## Known failure modes

- Invalid or missing restaurant ID returns an error or empty result
- Restaurant ID not found in the Blackbird network returns 404
- Payment of $0.01 USDC not completed returns 402 Payment Required
- Rate limiting or network issues may cause timeouts

## How this service works

Full detail for one Blackbird-network restaurant: locations with addresses, coordinates, time zone, and live open hours per location. Restaurant id comes from the discovery list endpoint.

## Output

A structured object containing the restaurant's locations with full street addresses, geographic coordinates (latitude/longitude), time zone, and live open hours per location pulled from the Blackbird network.

## 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
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentic-reservations-restaurant-detail-probe-04a3477b/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)
