# Agentic Reservations — Cancel Restaurant Booking (Resy)

> Agentic Reservations — Cancel Restaurant Booking (Resy) is a free API for AI agents from agentres.dev, callable via x402, Free, status unknown (last checked 2026-09-14).

Cancels an existing restaurant reservation previously booked through the AgentRes/Resy booking API

## Facts

- Endpoint: POST https://agentres.dev/api/cancel
- 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-cancel-restaurant-booking-resy-2fbe9c35
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Pl6ESWyQ-YFn4g51jio6q

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-cancel-restaurant-booking-resy-2fbe9c35 -d '<json body>'
```

Example prompt: Can you cancel my Resy reservation at Carbone for this Saturday night? I booked it through you earlier — I need to free up that table.

## When to prefer this

Use this endpoint when an agent needs to cancel a specific restaurant reservation that was previously booked, especially in workflows where bookings are made and then need to be undone due to user plan changes. This is the dedicated cancel action for the AgentRes/Resy booking ecosystem.

## Known failure modes

- Reservation ID not found or invalid — cancellation fails
- Reservation already cancelled — duplicate cancellation attempt
- Reservation is within the cancellation window and may incur a fee or be blocked
- Authentication failure — Resy account not properly linked
- Reservation belongs to a different user account

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

Returns a JSON object with a 'success' boolean indicating whether the cancellation was processed successfully.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "resy_token": {
   "type": "string",
   "description": "Reservation token from GET /api/reservations (field: resy_token). Call /api/reservations first to get this."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentic-reservations-cancel-restaurant-booking-resy-2fbe9c35/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)
