# Agentic Reservations — Account Creation (agentres.dev)

> Agentic Reservations — Account Creation (agentres.dev) is a free API for AI agents from www.agentres.dev, callable via x402, Free, status healthy (last checked 2026-09-14, last successful call 2026-06-16).

Creates a new agent account on the Agentic Reservations platform, enabling subsequent restaurant search and booking via Resy

## Facts

- Endpoint: POST https://www.agentres.dev/api/account
- Price: Free
- Payment: x402
- Status: healthy
- Last checked: 2026-09-14
- Last successful call: 2026-06-16
- Success rate: 100% of calls made through Zero
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentic-reservations-account-creation-agentres-dev-22a0b105
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W2NVkDoL_x2VmHA6XvddU

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-account-creation-agentres-dev-22a0b105 -d '<json body>'
```

Example prompt: Create a new Agentic Reservations account for me using the email agent@myapp.com so I can start booking restaurant tables through Resy.

## When to prefer this

Use this endpoint as the first step before attempting any restaurant search or booking calls on agentres.dev. This is the account provisioning step specific to the Agentic Reservations platform; choose it when you need to create a new agent identity to enable Resy-backed restaurant reservations paid in USDC.

## Known failure modes

- Duplicate email — account already exists for that address, returns error or created:false
- Invalid email format — validation error returned
- Service unavailable — agentres.dev platform down or Resy backend unreachable
- Payment failure — if x402 payment is required but wallet has insufficient USDC balance

## 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 confirming account creation with the agent's email, a boolean 'created' flag, and a UUID user_id that can be used in subsequent reservation API calls.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "email": {
   "type": "string",
   "format": "email",
   "description": "Required for wallet auth as the account contact/Resy email; optional for API-key auth."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "email": "agent@example.com",
  "created": true,
  "user_id": "9b8f8c5e-5d5a-4b7c-8a1a-1c1b2c3d4e5f"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentic-reservations-account-creation-agentres-dev-22a0b105/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)
