# Agentic Reservations — Resy Restaurant Search

> Agentic Reservations — Resy Restaurant Search is a free API for AI agents from agentic-reservations.vercel.app, callable via x402, Free, status unknown (last checked 2026-09-14).

Search for restaurants by name on Resy, returning venue details including ID, cuisine, neighborhood, and rating for use in downstream booking flows.

## Facts

- Endpoint: GET https://agentic-reservations.vercel.app/api/search
- Price: Free
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentic-reservations-resy-restaurant-search-e0c2700c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__joH-1rRVc4_rAXpBG1JA

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-resy-restaurant-search-e0c2700c
```

Example prompt: Search Resy for a restaurant called Lilia so I can get its venue ID and details before I book a table.

## When to prefer this

Use this endpoint when you need to resolve a restaurant name to a Resy venue ID before making a booking, or when you want to verify that a restaurant is listed on Resy and retrieve its cuisine, neighborhood, and rating metadata. Prefer this over generic web search when you need structured, Resy-native venue data ready for a reservation flow.

## Known failure modes

- No results returned if restaurant name is misspelled or not listed on Resy
- Empty results array if query doesn't match any active Resy venue
- Service may be unavailable if underlying Resy API is down
- Rate limiting or payment issues if x402 payment flow is not properly handled
- Ambiguous results if a common restaurant name matches multiple venues

## How this service works

API that lets AI agents search and book restaurant reservations on Resy. Pay $0.10 USDC per booking with a crypto wallet.

## Output

Returns an array of matching restaurant results, each containing the venue's integer ID, name, cuisine tag array, neighborhood string, and nullable numeric rating — suitable for feeding into a downstream Resy booking call.

## 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",
     "required": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "description": "Restaurant name to search for"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "results": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "name": {
          "type": "string"
         },
         "rating": {
          "type": "number",
          "nullable": true
         },
         "cuisine": {
          "type": "array",
          "items": {
           "type": "string"
          }
         },
         "venue_id": {
          "type": "integer"
         },
         "neighborhood": {
          "type": "string"
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentic-reservations-resy-restaurant-search-e0c2700c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentic-reservations.vercel.app](https://www.zero.xyz/host/agentic-reservations.vercel.app/llms.txt)
