# Sam Ragsdale Calendar Booking

> Sam Ragsdale Calendar Booking is a paid API for AI agents from www.samragsdale.com, paid per call via x402, $500/call, status unknown (last checked 2026-09-15).

Books a 30-minute calendar slot with Sam Ragsdale at 5pm ET on a specified date

## Facts

- Endpoint: POST https://www.samragsdale.com/api/x402/calendar
- Price: $500/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sam-ragsdale-calendar-booking-3f20def6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ilkhvIzdwItG_lfzHm9UU

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 sam-ragsdale-calendar-booking-3f20def6 -d '<json body>'
```

Example prompt: Book a 30-minute meeting with Sam Ragsdale at 5pm ET on 2025-08-15 — my name is Jordan Lee and my email is jordan.lee@example.com. Let him know I'd love to discuss a potential collaboration.

## When to prefer this

Use this endpoint when a user explicitly wants to schedule a paid 30-minute call or meeting with Sam Ragsdale personally at 5pm ET on a specific date. This is a personal calendar booking endpoint, not a generic scheduling service, so it is only appropriate when Sam Ragsdale is the intended meeting party.

## Known failure modes

- Date already booked — slot unavailable, returns success: false with explanation
- Invalid date format — must be YYYY-MM-DD, otherwise request fails
- Missing required fields (date, senderName, senderEmail) — returns validation error
- Payment failure — x402 payment of $500 USDC not processed, booking not created
- Message exceeds 560 character limit — rejected or truncated

## How this service works

Book a 30-minute calendar slot with Sam Ragsdale at 5pm ET (date format: YYYY-MM-DD)

## Output

Returns a JSON object with a success boolean, a human-readable confirmation message, the confirmed meeting time, and optionally an email ID confirming the booking was created.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "date",
  "senderName",
  "senderEmail"
 ],
 "properties": {
  "date": {
   "type": "string",
   "description": "Date for the calendar booking in YYYY-MM-DD format. Meeting will be scheduled at 5pm ET on this date."
  },
  "message": {
   "type": "string",
   "description": "Optional message to include with the booking (max 560 characters, 2x Twitter length)"
  },
  "senderName": {
   "type": "string",
   "description": "Full name of the person booking the meeting"
  },
  "senderEmail": {
   "type": "string",
   "description": "Email address of the person booking the meeting"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "success",
  "message",
  "meetingTime"
 ],
 "properties": {
  "emailId": {
   "type": "string"
  },
  "message": {
   "type": "string"
  },
  "success": {
   "type": "boolean"
  },
  "meetingTime": {
   "type": "string"
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sam-ragsdale-calendar-booking-3f20def6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.samragsdale.com](https://www.zero.xyz/host/www.samragsdale.com/llms.txt)
