# ScrapFly Content Roundup Generator

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

Generates a curated content roundup on a given topic, tailored to a specified audience and tone

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/roundup
- Price: $0.2/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-roundup-generator-2282dbef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pgbAArOzdGk8IVwxgy6T8

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-2282dbef -d '<json body>'
```

Example prompt: Write me a content roundup about the latest AI agent developments, aimed at software developers, in a professional but engaging tone.

## When to prefer this

Use this endpoint when you need a structured, multi-item content roundup or digest on a specific topic generated in one call, especially when audience and tone customization matter. Prefer this over generic text generation when the output needs to feel like a curated newsletter or editorial summary rather than a single-answer response.

## Known failure modes

- Missing required 'topic' field returns validation error
- Overly broad or vague topic may produce generic content
- Non-English topics may yield inconsistent quality
- Payment failure on Base chain results in 402 response
- Timeout if content generation takes too long
- Empty or malformed response if the underlying generation service is unavailable

## How this service works

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

## Output

Returns a success boolean and a data object containing the generated content roundup — a curated, topic-focused article or digest tailored to the specified audience and tone.

## 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-2282dbef/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)
