# ScrapFly Content Scaffold Generator

> ScrapFly Content Scaffold Generator is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-14).

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

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/content/scaffold
- 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/scrapfly-content-scaffold-generator-8d40ff21
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jN_V-39-Zllog72Xpl67v

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 scrapfly-content-scaffold-generator-8d40ff21 -d '<json body>'
```

Example prompt: Generate a detailed content scaffold about sustainable investing with 6 sections at a deep depth level — I want a full structural outline I can use as a writing blueprint.

## When to prefer this

Choose this endpoint when you need a structured content outline or scaffold generated programmatically for a given topic, especially in automated content pipelines, SEO workflows, or writing assistant agents. It is preferable over manual outlining when you need rapid, consistent structure generation at scale. Use it over generic LLM prompting when you want a purpose-built scaffold API with per-request x402 micropayment billing on Base chain.

## Known failure modes

- Missing required 'topic' field returns a validation error
- Ambiguous or very short topic strings may produce generic or low-quality scaffolds
- Invalid or non-numeric 'sections' value may cause a processing error
- Network timeouts or Vercel cold-start latency may cause occasional failures
- Unsupported depth values may be silently ignored or cause errors
- Response success:false with no data if the generation pipeline fails internally

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a JSON object with a success boolean and a data object containing the generated content scaffold — typically including section titles, suggested content areas, and structural hierarchy organized around the requested topic, depth, and number of sections.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic"
 ],
 "properties": {
  "depth": {
   "type": "string",
   "description": "depth"
  },
  "topic": {
   "type": "string",
   "description": "topic"
  },
  "sections": {
   "type": "number",
   "description": "sections"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrapfly-content-scaffold-generator-8d40ff21/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scravfly.vercel.app](https://www.zero.xyz/host/scravfly.vercel.app/llms.txt)
