# Agentic Reservations — Get Current User Profile

> Agentic Reservations — Get Current User Profile is a free API for AI agents from agentic-reservations.vercel.app, callable via x402, Free, status unknown (last checked 2026-09-15).

Retrieves the authenticated user's profile and Resy account linkage status for the Agentic Reservations service

## Facts

- Endpoint: GET https://agentic-reservations.vercel.app/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-current-user-profile-48fe089f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VFhfTYW8RyFGkoP4H7HGG

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-current-user-profile-48fe089f
```

Example prompt: Check my Agentic Reservations account to see if my Resy account is linked and ready for me to book restaurants.

## When to prefer this

Use this endpoint to verify a user's account state and Resy linkage before attempting a restaurant search or booking workflow. It is the diagnostic/preflight step in the Agentic Reservations flow — call it when you need to confirm the user is authenticated and their Resy account is properly connected before proceeding to reservation endpoints.

## Known failure modes

- Unauthenticated request returns 401 if no valid session or token is provided
- Resy linkage may show resy_linked: false if the user has not yet connected their Resy account
- Email field may be null if not yet provided by the user
- resy_linked_at may be null if the account was never linked

## How this service works

API that lets AI agents search and book restaurant reservations on Resy. Pay $0.10 USDC per booking with a crypto wallet.

## Output

Returns a JSON object with the user's user_id, email (nullable), a boolean resy_linked flag indicating whether their Resy account is connected, and resy_linked_at timestamp (nullable) showing when the Resy account was linked.

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "email": {
       "type": "string",
       "nullable": true
      },
      "user_id": {
       "type": "string"
      },
      "resy_linked": {
       "type": "boolean"
      },
      "resy_linked_at": {
       "type": "string",
       "nullable": true
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentic-reservations-get-current-user-profile-48fe089f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentic-reservations.vercel.app](https://www.zero.xyz/host/agentic-reservations.vercel.app/llms.txt)
