# Agentic Reservations — List Resy Reservations

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

Retrieves a paginated list of upcoming or past restaurant reservations from the authenticated user's Resy account, including venue details, time slots, and cancellation tokens.

## Facts

- Endpoint: GET https://www.agentres.dev/api/reservations
- 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-list-resy-reservations-58cce2a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VTiR1SZX-vkwbWU-Prb91

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-list-resy-reservations-58cce2a6
```

Example prompt: Show me my next 10 upcoming Resy reservations, including the restaurant name, cuisine, neighborhood, and what time slot I booked.

## When to prefer this

Use this endpoint when you need to inspect, display, or act upon a user's existing Resy reservation history — especially when you need resy_token values to subsequently cancel reservations or when you want to confirm an upcoming booking exists before taking action.

## Known failure modes

- No reservations found — returns empty array with total: 0
- Authentication failure — user's Resy credentials not linked or session expired
- Invalid 'type' parameter value — must be 'upcoming' or 'past'
- Limit out of range — must be between 1 and 50
- Offset out of range — must be 0 or greater
- Upstream Resy API unavailable — service temporarily down

## 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 object containing a paginated list of reservations with type (upcoming/past), total count, limit, and offset, plus an array of reservation objects — each with date, venue info (name, rating, cuisine, address, neighborhood), number of seats, time slot, config type, reservation ID, and a resy_token that can be passed to the cancel endpoint.

## 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": {
      "type": {
       "enum": [
        "upcoming",
        "past"
       ],
       "type": "string",
       "default": "upcoming",
       "description": "Which reservations to list"
      },
      "limit": {
       "type": "integer",
       "default": 10,
       "maximum": 50,
       "minimum": 1
      },
      "offset": {
       "type": "integer",
       "default": 0,
       "minimum": 0
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "type": {
       "enum": [
        "upcoming",
        "past"
       ],
       "type": "string"
      },
      "limit": {
       "type": "integer"
      },
      "total": {
       "type": "integer"
      },
      "offset": {
       "type": "integer"
      },
      "reservations": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "day": {
          "type": "string",
          "format": "date"
         },
         "venue": {
          "type": "object",
          "properties": {
           "id": {
            "type": "integer"
           },
           "name": {
            "type": "string"
           },
           "rating": {
            "type": "number",
            "nullable": true
           },
           "cuisine": {
            "type": "string",
            "nullable": true
           },
           "address_1": {
            "type": "string",
            "nullable": true
           },
           "neighborhood": {
            "type": "string",
            "nullable": true
           }
          }
         },
         "num_seats": {
          "type": "integer"
         },
         "time_slot": {
          "type": "string"
         },
         "resy_token": {
          "type": "string",
          "description": "Pass to POST /api/cancel to cancel this reservation"
         },
         "config_type": {
          "type": "string"
   
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "type": "upcoming",
  "limit": 10,
  "total": 1,
  "offset": 0,
  "reservations": [
   {
    "day": "2026-05-01",
    "venue": {
     "id": 6194,
     "name": "Carbone",
     "rating": 4.7,
     "cuisine": "Italian",
     "address_1": "181 Thompson St",
     "neighborhood": "Greenwich Village"
    },
    "num_seats": 2,
    "time_slot": "19:00:00",
    "resy_token": "abc123token",
    "config_type": "Dining Room",
    "reservation_id": 987654
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentic-reservations-list-resy-reservations-58cce2a6/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)
