# Tempest AI Memo Composer

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

Generates a professional memo or internal communication draft based on a specified purpose, recipient, tone, and context.

## Facts

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

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

Example prompt: Draft a professional memo to all department heads about the new remote work policy rollout, using a formal tone and noting that the changes take effect next quarter.

## When to prefer this

Choose this endpoint when you need to quickly generate a structured internal memo or business communication and want AI-assisted drafting with tone and recipient control. It is ideal for automating routine internal communications at scale or when a human writer is unavailable. Prefer this over a generic LLM prompt when you want a pay-per-call, production-ready endpoint integrated into a USDC payment workflow.

## Known failure modes

- Missing required `purpose` field returns a 400 validation error
- Overly vague or empty purpose may produce generic or low-quality memo output
- Payment failure or insufficient USDC balance prevents the call from completing
- Very long context strings may be truncated or cause latency increases
- Unsupported tone descriptors may fall back to a neutral default tone

## 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, formatted as a professional internal communication based on the provided 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-964d0338/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tempestars.vercel.app](https://www.zero.xyz/host/tempestars.vercel.app/llms.txt)
