# Strale Email Draft Generator

> Strale Email Draft Generator is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-15).

Drafts professional emails with subject line options, body text, and key phrases based on context, intent, and tone

## Facts

- Endpoint: GET https://api.strale.io/x402/email-draft
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-583f52ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Mu1gXJHP18va-LhlLWfeB

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 api-strale-io-583f52ac
```

Example prompt: Draft me a cold outreach email to a VP of Engineering at a mid-size SaaS company — I want to pitch our developer tooling product, keep the tone confident but not pushy, and make sure the subject line is compelling enough to get opened.

## When to prefer this

Choose this endpoint when you need to quickly generate a structured, professional email with subject line variants and key phrases — especially for common business scenarios like cold outreach, follow-ups, or apologies. Prefer this over general-purpose LLM prompting when you want a specialized output format that includes subject options and key phrases in a single structured response.

## Known failure modes

- Missing required 'context' query parameter returns a 400 error
- Vague or extremely short context may produce generic, low-quality output
- Unsupported intent or tone values may fall back to defaults or return validation errors
- Payment failure or insufficient USDC balance returns a 402 Payment Required
- Rate limiting or overload may return a 503 error

## How this service works

Draft a professional email. Specify context, intent (cold outreach/follow-up/apology/etc), and tone. Returns subject line options, body, and key phrases.

## Output

Returns multiple subject line options, a complete email body, and a set of key phrases — all tailored to the specified context, intent type (cold outreach, follow-up, apology, etc.), and tone.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "tone": "professional",
   "intent": "follow-up",
   "context": "Following up on a previous conversation about implementing a new project management tool for our engineering team",
   "recipient_context": "Engineering manager at a mid-size tech company"
  }
 }
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "context"
     ],
     "properties": {
      "tone": {
       "type": "string"
      },
      "intent": {
       "type": "string"
      },
      "context": {
       "type": "string"
      },
      "recipient_context": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-583f52ac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
