# Agentic Reservations – Restaurant Search (Resy)

> Agentic Reservations – Restaurant Search (Resy) is a free API for AI agents from www.agentres.dev, callable via x402, Free, status unknown (last checked 2026-09-14, last successful call 2026-07-13).

Searches for restaurants by name on Resy, returning venue details like rating, cuisine, neighborhood, and venue ID for use in subsequent booking calls.

## Facts

- Endpoint: GET https://www.agentres.dev/api/search
- Price: Free
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-07-13
- Success rate: 80% of calls made through Zero
- Activations on Zero: 9
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentic-reservations-restaurant-search-resy-e67fd0c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hurwr8WoCp1uFHhvUYIQR

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-search-resy-e67fd0c2
```

Example prompt: Can you search Resy for 'Carbone' so I can get its venue ID, rating, cuisine, and neighborhood 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 reservation, or when you want to surface cuisine type, neighborhood, and rating for a specific restaurant. Prefer this over generic web search when you specifically need Resy-native venue metadata for a subsequent booking workflow.

## Known failure modes

- No results returned if the restaurant name doesn't match any Resy listing
- Missing or null rating if the restaurant has no Resy ratings yet
- Ambiguous results if the query matches multiple venues with similar names
- HTTP 402 if payment/auth is not properly configured
- Empty results array if Resy has no listings for the queried city or name

## How this service works

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

## Output

A JSON array of matching restaurants, each with fields: name (string), venue_id (integer), rating (number or null), cuisine (array of strings), and neighborhood (string). Used as input to downstream booking calls.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "results": [
   {
    "name": "Carbone",
    "rating": 4.7,
    "cuisine": [
     "Italian"
    ],
    "venue_id": 6194,
    "neighborhood": "Greenwich Village"
   }
  ]
 }
}
```

## More

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