# ScrapFly Content Scaffold Generator

> ScrapFly Content Scaffold Generator is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

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

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/scaffold
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-content-scaffold-generator-0ec4b37e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KgnfD2lfcJquyAOFjjIek

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

Example prompt: Generate a detailed content scaffold about 'sustainable urban farming' with 6 sections and a deep depth level — I need a structured outline I can use as a writing framework.

## When to prefer this

Use this endpoint when you need to quickly generate a structured content outline or scaffold for a topic, especially for blog posts, articles, or any long-form content planning. Prefer this over manual outlining when you need a machine-generated framework with configurable depth and section granularity.

## Known failure modes

- Missing required 'topic' field returns validation error
- Invalid depth string may return error or unexpected scaffold structure
- Very broad or ambiguous topics may produce generic scaffolds
- Service outage or payment failure returns non-200 response
- Extremely large section counts may time out or return partial results

## 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, including structured sections and outline organized by the requested topic, depth, and section count.

## 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-0ec4b37e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
