# ScrapFly Content Roundup Generator

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

Generates a topic roundup article or content summary for a specified topic, tone, and target audience

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/content/roundup
- Price: $0.6/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-roundup-generator-120e3629
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6ANfglJGATWkMvg56aZbX

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-roundup-generator-120e3629 -d '<json body>'
```

Example prompt: Can you generate a roundup article about the latest trends in renewable energy, written in an informative tone for a general audience?

## When to prefer this

Choose this endpoint when you need a structured, audience-targeted roundup or digest article generated on demand for a specific topic — especially useful for content marketing pipelines, newsletter automation, or editorial tools that need quick multi-angle summaries rather than raw web scraping or single-source extraction.

## Known failure modes

- Missing required 'topic' field returns a validation error
- Overly vague topics may produce generic or low-quality output
- Payment failure on Base chain results in 402 response before content is generated
- Server-side generation timeout may return an incomplete or empty data object
- Unsupported tone values may be ignored or default to neutral

## 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 roundup content — typically a structured article or summary covering the requested topic, shaped by the specified tone and audience parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic"
 ],
 "properties": {
  "tone": {
   "type": "string",
   "description": "tone"
  },
  "topic": {
   "type": "string",
   "description": "topic"
  },
  "audience": {
   "type": "string",
   "description": "audience"
  }
 }
}
```

## 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-roundup-generator-120e3629/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)
