# 01Mind Email Send API

> 01Mind Email Send API is a paid API for AI agents from 01mind.net, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Sends a plaintext email to a specified recipient on the caller's behalf, with a mandatory 01Mind disclosure footer, capped at 20 sends per wallet per 24 hours.

## Facts

- Endpoint: POST https://01mind.net/purchase/email-send-action-api
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/01mind-email-send-api-03268cec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ftnd0WucLq6DM6X3Zx6-E

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 01mind-email-send-api-03268cec -d '<json body>'
```

Example prompt: Send an email to jane.doe@example.com saying 'Your order has shipped and will arrive by Friday — let me know if you have any questions.' on my behalf through 01Mind.

## When to prefer this

Choose this endpoint when an AI agent needs to send a one-off plaintext email to a specific recipient within an agentic workflow, especially when crypto-wallet-based authentication (x402) is already in use and the mandatory disclosure footer is acceptable. Best for low-volume, programmatic notification use cases (up to 20/day per wallet). Prefer alternatives if you need HTML emails, attachments, high-volume bulk sending, or must hide the sender's wallet identity.

## Known failure modes

- Rate limit exceeded — wallet has already sent 20 emails in the past 24 hours
- Invalid or missing recipient email address
- Malformed request body or incorrect bodyType
- Payment failure — insufficient USDC balance or x402 auth error
- Recipient mail server rejection or delivery failure

## How this service works

Send a real plaintext email to a recipient you specify, on your behalf, via 01Mind. Every send carries a server-added disclosure footer naming 01Mind and your wallet, and is capped at 20 sends per wallet per 24h.

## Output

A confirmation that the email was dispatched to the specified recipient, including acknowledgment of the server-added 01Mind disclosure footer and the caller's wallet identifier appended to the message.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/01mind-email-send-api-03268cec/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 01mind.net](https://www.zero.xyz/host/01mind.net/llms.txt)
