# Tempest AI Content Engine — Scaffold Outline

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

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

## Facts

- Endpoint: POST https://trempest.vercel.app/api/scaffold
- Price: $0.2/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-content-engine-scaffold-outline-3f2832f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j9-zfCkFyRHdvM-kh-xNJ

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

Example prompt: Using Tempest, scaffold me a high-depth content outline on the topic of 'the future of remote work' with 6 sections.

## When to prefer this

Choose this endpoint when you need a structured content scaffold or hierarchical outline for a topic before writing full content — ideal for pre-writing workflows, editorial planning, or generating content blueprints. Prefer this over full article generation endpoints when you only need the structure, not the body text.

## Known failure modes

- Missing required 'topic' field returns validation error
- Invalid or empty topic string may return a malformed or empty outline
- Unsupported depth string values may be ignored or default to a standard level
- Payment failure (402) if USDC not provided via x402 protocol
- Network timeout on slow or overloaded Vercel serverless function
- sections value of 0 or negative may cause unexpected behavior

## 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 object containing a content outline with the requested number of sections organized by the specified topic and depth level, 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-3f2832f5/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)
