# OneShotAgent Email Send

> OneShotAgent Email Send is a paid API for AI agents from win.oneshotagent.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Sends a transactional email to a specified recipient using a provisioned domain via the OneShotAgent platform.

## Facts

- Endpoint: POST https://win.oneshotagent.com/v1/tools/email/send
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oneshotagent-email-send-cfca28f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y2bFFvFlpIuOxgQ5KjphF

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 oneshotagent-email-send-cfca28f5 -d '<json body>'
```

Example prompt: Send an email to jane.doe@example.com with the subject 'Your Order Confirmation' and body 'Hi Jane, your order #1234 has been confirmed and will ship within 2 business days. Thank you!'

## When to prefer this

Choose this endpoint when an AI agent needs to send a single outbound email without managing its own SMTP infrastructure or domain — especially useful in agentic workflows where the agent must notify a person, confirm an action, or deliver information via email on behalf of a user, billed per-send at $0.001 USDC.

## Known failure modes

- Invalid or malformed recipient email address returns a validation error
- Missing required fields (to, subject, body) result in a 400 bad request
- Payment failure or insufficient USDC balance prevents the call from completing
- Recipient mail server rejects the message due to spam filters or domain reputation
- Rate limiting if too many emails are sent in a short period

## How this service works

Send email with provisioned domain

## Output

A confirmation response indicating whether the email was successfully dispatched to the recipient's address using the OneShotAgent provisioned sending domain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "type": "string",
   "format": "email"
  },
  "body": {
   "type": "string"
  },
  "subject": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oneshotagent-email-send-cfca28f5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from win.oneshotagent.com](https://www.zero.xyz/host/win.oneshotagent.com/llms.txt)
