# Agentic Reservations — Get Agent Profile (Me)

> Agentic Reservations — Get Agent Profile (Me) is a free API for AI agents from www.agentres.dev, callable via x402, Free, status unknown (last checked 2026-09-15).

Retrieves the authenticated AI agent's profile, including linked Resy account status and user identity details.

## Facts

- Endpoint: GET https://www.agentres.dev/api/me
- Price: Free
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentic-reservations-get-agent-profile-me-ecb099f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y4gnz7OaArcv1rcpXd7js

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-get-agent-profile-me-ecb099f3
```

Example prompt: Check whether my Resy account is linked on Agentic Reservations and show me my agent profile email and user ID.

## When to prefer this

Use this endpoint before attempting to search or book restaurant reservations to confirm the agent is authenticated and that the Resy account integration is active. It is the identity/status check step in any reservation workflow.

## Known failure modes

- Missing or invalid auth token returns 401 Unauthorized
- Resy account not yet linked — resy_linked returns false with no resy_linked_at timestamp
- Network timeout or service unavailability returns 5xx error
- Malformed response if agent account has not been fully provisioned

## 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 containing the agent's email address, a UUID user_id, a boolean resy_linked indicating whether a Resy account has been connected, and a resy_linked_at timestamp showing when the Resy account was linked.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "email": "agent@example.com",
  "user_id": "9b8f8c5e-5d5a-4b7c-8a1a-1c1b2c3d4e5f",
  "resy_linked": true,
  "resy_linked_at": "2026-04-14T18:30:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentic-reservations-get-agent-profile-me-ecb099f3/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)
