# Sam Ragsdale Email (x402)

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

Sends an email from x402@samragsdale.com via a paid x402 API call

## Facts

- Endpoint: POST https://samragsdale.com/api/x402/email
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sam-ragsdale-email-x402-93f00df2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xnOouc5w6BsaBZlDdCwXX

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-x402-93f00df2 -d '<json body>'
```

Example prompt: Send an email to Sam Ragsdale from x402@samragsdale.com letting him know I'm interested in collaborating on a project — just a brief intro message saying I'd love to chat.

## When to prefer this

Use this endpoint when you need to send an email specifically to Sam Ragsdale and are comfortable with a $1 USDC x402 payment per send. Choose this over the priority mode sibling endpoint when you do not need to be CC'd on the sent email. Prefer this over the calendar booking endpoint when the intent is to communicate a message rather than schedule a meeting.

## Known failure modes

- Payment not included or insufficient — x402 payment of $1 USDC required per call
- Invalid or malformed request body — email content missing or malformed
- Server-side failure sending the email — success: false returned
- Network timeout or service unavailability

## How this service works

Send an email from x402@samragsdale.com

## Output

Returns a JSON object with an emailId string, a success boolean, and a message string confirming the email was sent successfully.

## Example request

```json
{
 "body": "Hi Sam,\n\nI hope this message finds you well. I'm reaching out because I'm interested in exploring potential collaboration opportunities on a project. I think there could be great synergy between our work, and I'd love to chat further about how we might work together.\n\nLooking forward to hearing from you.\n\nBest regards",
 "subject": "Collaboration Inquiry",
 "recipient": "zero-qa@agentmail.to"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "body": {
   "type": "string",
   "maxLength": 10000,
   "minLength": 1,
   "description": "Body content of the email (1-10,000 characters, HTML supported)"
  },
  "subject": {
   "type": "string",
   "maxLength": 200,
   "minLength": 1,
   "description": "Subject line of the email (1-200 characters)"
  },
  "recipient": {
   "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 recipient"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "emailId": "abc123",
  "message": "Email sent successfully",
  "success": true
 }
}
```

## More

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