# PitchPilot Cold Email Template Generator

> PitchPilot Cold Email Template Generator is a paid API for AI agents from pitchpilot-outreach-api.pitchpilot-agents.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Generates a personalized cold email template (subject, body, and cadence tips) given a recipient name, company, offer description, and sender persona.

## Facts

- Endpoint: GET https://pitchpilot-outreach-api.pitchpilot-agents.workers.dev/template
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pitchpilot-cold-email-template-generator-11a19768
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TrS2_Rai9YH6SoTpuPaYK

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 pitchpilot-cold-email-template-generator-11a19768
```

Example prompt: Write me a cold email as a founder pitching our AI analytics tool to Acme Corp, addressed to Sarah — include a subject line and some cadence tips for follow-ups.

## When to prefer this

Choose this endpoint when you need a quick, ready-to-send personalized cold email template with subject, body, and cadence guidance in a single call, especially when operating as a founder, agency, or freelancer persona. It is ideal for AI outreach agents automating sales pipelines at low per-call cost ($0.01 USDC) without requiring a full CRM or email platform integration.

## Known failure modes

- Missing required 'offer' or 'method' parameter returns a 400/422 error
- Invalid persona enum value (not founder/agency/freelancer) causes a validation error
- Payment not provided or insufficient USDC triggers a 402 Payment Required response
- Cloudflare Worker cold-start latency may occasionally cause brief delays
- Overly vague offer descriptions may produce generic, less useful templates

## How this service works

Paid micro-utilities for cold-email outreach agents: domain deliverability audits, cold-email grading, template generation, plus a tools toolbox (hashing, JWT decode, IDs, slugs, JSON, regex, crypto prices, domain age, weather). Paid via x402 (USDC on Base).

## Output

A JSON object containing a personalized email subject line, a full email body tailored to the recipient and offer, and an array of cadence tips (e.g. follow-up timing and sequencing recommendations).

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "name": {
       "type": "string",
       "description": "Recipient name for personalization"
      },
      "offer": {
       "type": "string",
       "description": "What you are offering"
      },
      "company": {
       "type": "string",
       "description": "Recipient company for personalization"
      },
      "persona": {
       "enum": [
        "founder",
        "agency",
        "freelancer"
       ],
       "type": "string",
       "description": "Sender persona for the template"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "subject",
      "body"
     ],
     "properties": {
      "body": {
       "type": "string"
      },
      "subject": {
       "type": "string"
      },
      "cadence_tips": {
       "type": "array",
       "items": {
        "type": "string"
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "body": "...",
  "subject": "...",
  "cadence_tips": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pitchpilot-cold-email-template-generator-11a19768/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pitchpilot-outreach-api.pitchpilot-agents.workers.dev](https://www.zero.xyz/host/pitchpilot-outreach-api.pitchpilot-agents.workers.dev/llms.txt)
