# ScrapFly Article Content Generator

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

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/content/article
- 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-article-content-generator-3bb65edb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MgBc6b44eyrJQ6k1ZoV4u

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-generator-3bb65edb -d '<json body>'
```

Example prompt: Write me a 1200-word article about the future of renewable energy in a conversational style — I want something engaging and accessible for a general audience.

## When to prefer this

Choose this endpoint when you need programmatically generated, on-demand long-form article content without requiring a human writer. It is particularly useful for automating content pipelines, generating draft blog posts, or producing SEO articles at scale. It supports style customization, making it suitable for matching a specific brand voice.

## Known failure modes

- Missing required 'topic' field returns an error response with success: false
- Very long word counts may result in truncated or incomplete articles
- Unsupported or ambiguous style values may produce unexpected tone or formatting
- Network timeouts for unusually complex or lengthy content requests
- Payment failure via x402 on Base chain may prevent the request from being processed

## 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 text based on the specified topic, style, and word count.

## 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-generator-3bb65edb/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)
