# Sam Ragsdale Calendar Booking

> Sam Ragsdale Calendar Booking is a paid API for AI agents from 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 for $500 USDC

## Facts

- Endpoint: POST https://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-483bcfdc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MrfM4GH0-bCREUyl4kA3_

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-483bcfdc -d '<json body>'
```

Example prompt: Book me a 30-minute meeting with Sam Ragsdale for December 20th — I want to lock in that 5pm ET slot on his calendar.

## When to prefer this

Use this endpoint when you need to schedule a specific 30-minute meeting with Sam Ragsdale and are prepared to pay $500 USDC for confirmed calendar access. This is the right choice when a direct, time-locked booking (5pm ET) is needed rather than sending an email that may or may not be responded to.

## Known failure modes

- Date not available or already booked — returns error or unsuccessful response
- Invalid date format (not YYYY-MM-DD) — request rejected
- Payment failure — USDC transaction not completed, booking not confirmed
- Past date provided — booking may be rejected
- Network or server error — no confirmation returned

## 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 confirming the booking with a success flag, a message, the scheduled meeting time in ISO format, and an email ID corresponding to the calendar invite sent.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "date": {
   "type": "string",
   "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
   "description": "Date for the calendar booking in YYYY-MM-DD format. Meeting will be scheduled at 5pm ET on this date."
  },
  "message": {
   "type": "string",
   "maxLength": 560,
   "description": "Optional message to include with the booking (max 560 characters, 2x Twitter length)"
  },
  "senderName": {
   "type": "string",
   "maxLength": 100,
   "minLength": 1,
   "description": "Full name of the person booking the meeting"
  },
  "senderEmail": {
   "type": "string",
   "format": "email",
   "pattern": "^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$",
   "description": "Email address of the person booking the meeting"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "emailId": "abc123",
  "message": "Calendar invite sent successfully",
  "success": true,
  "meetingTime": "2024-12-20T22:00:00.000Z"
 }
}
```

## More

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