# AgentRes Availability Checker

> AgentRes Availability Checker 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).

Checks available reservation time slots at a Resy venue for a given party size and date

## Facts

- Endpoint: GET https://agentres.dev/api/availability
- Price: Free
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-07-28
- Success rate: 92% of calls made through Zero
- Rating: 5.0 / 5 from 3 reviews
- Activations on Zero: 53
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentres-availability-checker-b05ce367
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ovfZJcALYCoGxsR-Z5jiF

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 agentres-availability-checker-b05ce367
```

Example prompt: Can you check what reservation times are available at Resy venue 'abc123' for 2 people on 2025-08-15?

## When to prefer this

Use this endpoint when you need to discover open time slots at a specific Resy venue before committing to a booking. This is the discovery step prior to using the booking endpoint — it provides the config_id tokens needed to complete a reservation. Prefer this when the user wants to see options before choosing a time.

## Known failure modes

- Invalid or unknown venue_id returns empty slots or error
- Date in wrong format (not YYYY-MM-DD) causes validation failure
- Party size below minimum (less than 1) causes rejection
- No availability for the requested date/party size returns empty slots array
- Venue not found on Resy returns error response

## 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 list of available time slots for the specified venue, party size, and date. Each slot includes a start time, slot type, and a config_id token that can be used to complete a booking.

## 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": [
      "venue_id",
      "party_size",
      "day"
     ],
     "properties": {
      "day": {
       "type": "string",
       "format": "date",
       "description": "Date in YYYY-MM-DD format"
      },
      "venue_id": {
       "type": "string",
       "description": "Resy venue ID"
      },
      "party_size": {
       "type": "integer",
       "minimum": 1,
       "description": "Number of guests"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "day": {
       "type": "string"
      },
      "slots": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "type": {
          "type": "string"
         },
         "config_id": {
          "type": "string"
         },
         "time_start": {
          "type": "string"
         }
        }
       }
      },
      "venue_id": {
       "type": "string"
      },
      "party_size": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "day": "2026-05-01",
  "slots": [
   {
    "type": "Dining Room",
    "config_id": "eyJ2...",
    "time_start": "19:00:00"
   }
  ],
  "venue_id": "6194",
  "party_size": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentres-availability-checker-b05ce367/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)
