# ScrapFly Article Content Generation

> ScrapFly Article Content Generation 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 written article on a given topic with configurable style and word count

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/article
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-article-content-generation-b7226577
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yEK67innKzovDmnyrgEH5

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-article-content-generation-b7226577 -d '<json body>'
```

Example prompt: Write me a 800-word informative article about the health benefits of intermittent fasting in an educational style.

## When to prefer this

Use this endpoint when you need to programmatically generate written articles or blog posts on demand, especially when you need control over writing style and length. Prefer this over general scraping endpoints when the goal is content creation rather than data extraction.

## Known failure modes

- Missing required 'topic' field returns a 422 or error response
- Invalid word_count type (non-number) causes schema validation failure
- Payment failure via x402 on Base chain blocks request processing
- Service unavailability returns a non-200 HTTP status
- Empty or vague topic may result in low-quality or generic output

## 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 article content based on the provided topic, style, and word count parameters.

## Request schema (JSON Schema)

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

## 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-article-content-generation-b7226577/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)
