# ScrapFly Content Expand API

> ScrapFly Content Expand API is a paid API for AI agents from scrapifrivly.orbonomy.xyz, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-14).

Expands or elaborates a given piece of text into longer-form content using a specified style and target length

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/content/expand
- Price: $0.3/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-expand-api-62ecb292
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MD4_Bx7KMhSvtzlgtpL3i

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-expand-api-62ecb292 -d '<json body>'
```

Example prompt: Can you expand this short paragraph into a full 500-word professional blog section: 'AI agents are changing how businesses operate by automating repetitive tasks and surfacing insights from data.' Keep the style formal and informative.

## When to prefer this

Use this endpoint when you need to programmatically expand short text snippets, outlines, or summaries into longer-form content with a specified style, and you are operating in a pay-per-request x402 micropayment context on Base chain. Prefer this over LLM direct calls when you want a managed, billed content expansion service without managing your own model infrastructure.

## Known failure modes

- Missing required 'text' field returns error response with success: false
- Invalid or unsupported style value may produce unexpected output or error
- Target length parameter not respected if value is out of expected range
- Payment failure via x402 on Base chain results in 402 response before processing
- Upstream content generation service unavailable returns 500 or timeout
- Very long input text may be truncated or rejected

## 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 expanded text content generated from the input, styled and sized according to the provided style and target_length parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "text"
  },
  "style": {
   "type": "string",
   "description": "style"
  },
  "target_length": {
   "type": "string",
   "description": "target_length"
  }
 }
}
```

## 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-expand-api-62ecb292/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scrapifrivly.orbonomy.xyz](https://www.zero.xyz/host/scrapifrivly.orbonomy.xyz/llms.txt)
