# Tempest AI Content Engine — Scaffold/Outline Generator

> Tempest AI Content Engine — Scaffold/Outline Generator is a paid API for AI agents from tumpest.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-14).

Generates a structured content outline or scaffold for a given topic with configurable depth and number of sections

## Facts

- Endpoint: POST https://tumpest.vercel.app/api/scaffold
- Price: $0.2/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-content-engine-scaffold-outline-generator-924cd0d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Lu2PQlYVxV7Pf4Bi6H-Cp

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-content-engine-scaffold-outline-generator-924cd0d4 -d '<json body>'
```

Example prompt: Create a detailed content scaffold for an article on 'the future of renewable energy' with 6 sections and a deep level of detail.

## When to prefer this

Choose this endpoint when you need a structured content outline or scaffold for a specific topic before writing — ideal for planning blog posts, articles, guides, or white papers. Prefer this over full content generation when you want to review and approve the structure first.

## Known failure modes

- Missing required 'topic' field returns validation error
- Invalid sections value (non-numeric) causes schema rejection
- Overly vague topic may produce generic or low-quality scaffold
- Payment failure (402) if USDC balance insufficient
- Server timeout for very complex or broad topics
- Vercel cold start latency on first call

## 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 structured content scaffold or outline object containing organized sections and sub-points for the requested topic, wrapped in a success flag and data envelope.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic"
 ],
 "properties": {
  "depth": {
   "type": "string",
   "description": "Detail level"
  },
  "topic": {
   "type": "string",
   "description": "Topic for outline"
  },
  "sections": {
   "type": "number",
   "description": "Number of sections"
  }
 }
}
```

## 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-content-engine-scaffold-outline-generator-924cd0d4/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)
