# Tempest AI Memo Composer

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

Generates a professional memo for a given purpose, recipient, tone, and context using AI

## Facts

- Endpoint: POST https://tumpest.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-ff8b19c1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_epY8HyGe9oR-J-qTLxJ5e

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

Example prompt: Can you draft a memo to the entire engineering department about our new code review policy, using a professional tone, and add some context that this is effective starting next quarter?

## When to prefer this

Choose this endpoint when you need to quickly generate a structured, professional business memo with configurable tone and recipient, especially within automated workflows that pay per call using USDC. It is well-suited for agents that need programmatic memo drafting without managing a full LLM pipeline.

## Known failure modes

- Missing required 'purpose' field returns a validation error
- Vague or empty purpose may produce generic or low-quality memo output
- Network or Vercel cold-start latency may cause occasional slow responses
- Payment of 0.3 USDC not completed via x402 results in a 402 Payment Required response
- Overly long context strings may be truncated or cause unexpected output

## 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 text tailored to the specified purpose, recipient, tone, and context.

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