# Agentic Reservations — Restaurant Detail by ID

> Agentic Reservations — Restaurant Detail by ID 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 by ID, including all locations with addresses, coordinates, time zone, and live open hours.

## Facts

- Endpoint: GET https://agentres.dev/api/discover/restaurants/:id
- 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-by-id-a03a1c08
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vCnZ2EfzcTj7FdN-8Weyr

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-by-id-a03a1c08
```

Example prompt: Pull up the full details for the Blackbird-network restaurant with ID 'bfb12a3c' — I want its address, coordinates, time zone, and live open hours for all locations.

## When to prefer this

Use this endpoint when you already have a restaurant ID from the discovery list endpoint and need its full operational details — addresses, coordinates, time zone, and live open hours — before presenting options to a user or confirming a booking. It is the correct choice for enriching a discovery result with actionable location data rather than re-running a broader search.

## Known failure modes

- Invalid or unknown restaurant ID returns a 404 not found error
- Expired or malformed payment token returns a 402 payment required response
- Restaurant has no active locations, returning an empty locations array
- Network timeout or upstream Blackbird/Resy outage returns a 503 or 500 error
- Rate limiting returns a 429 response if too many calls are made in quick succession

## 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 JSON object containing full restaurant details: one or more location entries, each with a street address, GPS latitude/longitude, time zone string, and live open/close hours for the current period. Also includes the restaurant name and any relevant metadata returned by 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-by-id-a03a1c08/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)
