# AgentRes Link Resy Account

> AgentRes Link Resy Account is a free API for AI agents from agentres.dev, callable via x402, Free, status healthy (last checked 2026-09-13, last successful call 2026-08-08).

Connects a user's Resy account to the AgentRes platform to enable agent-based restaurant reservation booking workflows.

## Facts

- Endpoint: POST https://agentres.dev/api/link-resy
- Price: Free
- Payment: x402
- Status: healthy
- Last checked: 2026-09-13
- Last successful call: 2026-08-08
- Success rate: 50% of calls made through Zero
- Activations on Zero: 4
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentres-link-resy-account-58e72ae5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J6zW5LL8kqm9touMQhj1S

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-link-resy-account-58e72ae5 -d '<json body>'
```

Example prompt: Link my Resy account to AgentRes so you can start booking restaurant reservations for me — my Resy login is connected and I want you to have access going forward.

## When to prefer this

Use this endpoint as the first step before making any Resy reservations through AgentRes — it must be called to establish the account connection before the booking endpoint can function. Prefer this when a user wants to authorize their Resy account for ongoing agent-driven booking workflows.

## Known failure modes

- Invalid or expired Resy credentials returns an authentication error
- Account already linked may return a conflict or duplicate error
- Resy API downtime causes connection failure
- Missing required auth parameters results in a 400 bad request
- Rate limiting on repeated link attempts

## 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 confirmation that the Resy account has been successfully linked to the AgentRes platform, along with any session or connection tokens needed for subsequent booking operations.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "code": {
   "type": "string",
   "description": "OTP code from Resy email (omit to request code)"
  },
  "em_address": {
   "type": "string",
   "format": "email",
   "description": "Resy account email address"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "step": "linked",
  "message": "Resy account linked",
  "resy_user_id": 12345678
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentres-link-resy-account-58e72ae5/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)
