# Sam Ragsdale Priority Email

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

Sends a high-priority email directly to Sam Ragsdale, with the sender CC'd on the message.

## Facts

- Endpoint: POST https://www.samragsdale.com/api/x402/email-me-priority
- Price: $50/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-priority-email-a53681bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ntAdoiN0MpSDTrsIBn85T

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-priority-email-a53681bb -d '<json body>'
```

Example prompt: Send Sam Ragsdale a priority email with the subject 'Partnership Opportunity' and tell him I'm Alex Johnson (alex@example.com) and I'd love to schedule a quick call to discuss a potential collaboration — make sure I'm CC'd on it.

## When to prefer this

Choose this endpoint over the standard Sam Ragsdale email endpoint when urgency matters and you want confirmation via CC. This priority mode costs $50 USDC and ensures the sender is copied on the email, making it preferable for important business outreach, time-sensitive requests, or situations where you need a paper trail of the sent message.

## Known failure modes

- Missing required fields (body, subject, senderName, senderEmail) result in a validation error
- Invalid sender email format may cause rejection
- Body exceeding 10,000 characters or subject exceeding 200 characters may be rejected
- Payment failure (insufficient USDC or x402 protocol error) prevents email from being sent
- Service downtime may return a non-success response

## How this service works

Send Sam Ragdsale an email, priority mode. You will be CC'd on the email.

## Output

Returns a JSON object with a boolean success flag, a confirmation message string, and optionally an emailId. The sender is automatically CC'd on the delivered email.

## 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-priority-email-a53681bb/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)
