# Tempest AI Memo Composer

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

Generates a professional memo draft given a purpose, recipient, tone, and optional context

## Facts

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

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-c847b331 -d '<json body>'
```

Example prompt: Draft me a professional memo to all department heads about the upcoming budget freeze, keep the tone formal and direct, and mention that all discretionary spending must be approved in advance.

## When to prefer this

Choose this endpoint when you need to quickly generate a structured professional memo with controlled tone and recipient targeting, especially in automated workflows where business communication must be produced at scale without manual drafting.

## Known failure modes

- Missing required 'purpose' field returns a 400 validation error
- Vague or extremely short purpose may produce a low-quality or generic memo
- Network or server errors on the Vercel deployment may return 500 responses
- Payment failure via x402/USDC may prevent the call from completing
- Unsupported tone values may be ignored or cause unexpected output style

## 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 generated memo text, ready to be sent or further edited.

## 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-c847b331/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tempost.vercel.app](https://www.zero.xyz/host/tempost.vercel.app/llms.txt)
