# Tempest AI Memo Composer

> Tempest AI Memo Composer is a paid API for AI agents from trempest.vercel.app, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-13).

Generates AI-written memos tailored to a specific purpose, recipient, tone, and context

## Facts

- Endpoint: POST https://trempest.vercel.app/api/memo
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tempest-ai-memo-composer-e0f64da8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fDjF1XkQQDFEE3AhUmVwG

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 tempest-ai-memo-composer-e0f64da8 -d '<json body>'
```

Example prompt: Write a professional memo to all department heads announcing a new expense reporting policy effective next Monday — use a formal tone and note that receipts over $50 must now be submitted within 48 hours.

## When to prefer this

Use this endpoint when you need to quickly generate a structured internal memo with a specific purpose and recipient in mind, especially when tone customization matters. Prefer this over generic text generation endpoints when the output format should specifically be a memo and when pay-per-call USDC pricing is acceptable.

## Known failure modes

- Missing required 'purpose' field returns a validation error
- Overly vague purpose may produce generic or low-quality memo output
- Payment failure via x402/USDC blocks request processing
- Server-side AI generation timeout or error returns non-success response

## How this service works

Compose, rewrite, translate, and refine content at scale. 25 AI-powered endpoints. Pay-per-call with USDC on Tempo.

## Output

Returns a JSON object with a success boolean and a data object containing the AI-generated memo content tailored to the specified purpose, recipient, tone, and any additional context provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "purpose"
 ],
 "properties": {
  "tone": {
   "type": "string",
   "description": "Tone"
  },
  "context": {
   "type": "string",
   "description": "Additional context"
  },
  "purpose": {
   "type": "string",
   "description": "Email purpose"
  },
  "recipient": {
   "type": "string",
   "description": "Recipient"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tempest-ai-memo-composer-e0f64da8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trempest.vercel.app](https://www.zero.xyz/host/trempest.vercel.app/llms.txt)
