# Sam Ragsdale Email (Standard)

> Sam Ragsdale Email (Standard) is a paid API for AI agents from www.samragsdale.com, paid per call via x402, $10/call, status unknown (last checked 2026-09-13).

Sends a one-way email to Sam Ragsdale with a custom subject, body, and sender identity; sender is not CC'd unless Sam replies.

## Facts

- Endpoint: POST https://www.samragsdale.com/api/x402/email-me
- Price: $10/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sam-ragsdale-email-standard-728ec890
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EKO4DrEYGlwhtN4U4N2Jr

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-email-standard-728ec890 -d '<json body>'
```

Example prompt: Send Sam Ragsdale an email with the subject 'Partnership Inquiry' and a body that says 'Hi Sam, I came across your work and would love to explore a collaboration. Please let me know if you're open to a conversation.' — my name is Alex Chen and my email is alex@example.com.

## When to prefer this

Use this endpoint when you need to send a one-way message to Sam Ragsdale and do not require a CC copy for yourself. If you need to be CC'd on the outbound email, use the priority email endpoint instead. If you want to schedule a real-time conversation, use the calendar booking endpoint.

## Known failure modes

- Missing required fields (subject, body, senderName, senderEmail) returns a validation error
- Body exceeding 10,000 characters or subject exceeding 200 characters is rejected
- Invalid senderEmail format may cause rejection
- Payment of $10 USDC not fulfilled results in 402 Payment Required
- Sam may never respond — delivery is confirmed but reply is not guaranteed

## How this service works

Send Sam Ragsdale an email. He may or may not respond, but he will see it. You will not be CC'd unless he responds.

## Output

Returns a JSON object with a boolean 'success' field, a 'message' string confirming delivery, and an optional 'emailId' string identifying the sent email. The sender is not CC'd on this standard tier; only Sam receives the message.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "body",
  "subject",
  "senderName",
  "senderEmail"
 ],
 "properties": {
  "body": {
   "type": "string",
   "description": "Body content of the email (1-10,000 characters, HTML supported)"
  },
  "subject": {
   "type": "string",
   "description": "Subject line of the email (1-200 characters)"
  },
  "senderName": {
   "type": "string",
   "description": "Your full name"
  },
  "senderEmail": {
   "type": "string",
   "description": "Your email address"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sam-ragsdale-email-standard-728ec890/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)
