# Agentic Reservations — List Restaurant Reservations

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

Retrieves a paginated list of upcoming or past restaurant reservations for the authenticated agent via Resy.

## Facts

- Endpoint: GET https://agentres.dev/api/reservations
- Price: Free
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-07-28
- Success rate: 100% of calls made through Zero
- Rating: 5.0 / 5 from 1 review
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentic-reservations-list-restaurant-reservations-98d13497
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yVOq-jWUhiCJiEVPXocFz

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-restaurant-reservations-98d13497
```

Example prompt: Show me my upcoming restaurant reservations on Resy — list the next 10 so I can see where I'm eating and when.

## When to prefer this

Use this endpoint when you need to list or review existing restaurant reservations for a user — whether upcoming or historical — especially when you need the resy_token to perform a subsequent cancellation. Prefer this over a search/availability endpoint when the goal is to inspect already-booked reservations rather than find new ones.

## Known failure modes

- No authenticated Resy account connected — returns auth error
- Invalid type enum value (not 'upcoming' or 'past') — returns validation error
- Limit out of range (>50 or <1) — returns validation error
- No reservations found — returns empty reservations array with total: 0
- Offset beyond total — returns empty reservations array

## 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 (upcoming or past), each with venue name, cuisine, address, neighborhood, star rating, date, time slot, party size, config type, reservation ID, and a resy_token usable for cancellation. Also includes total count, limit, and offset for pagination.

## 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-restaurant-reservations-98d13497/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)
