# ScrapFly Content Expand API

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

Expands or elaborates a short piece of text into a longer, more detailed version with optional style and target length control

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/expand
- Price: $0.1/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-expand-api-004ea626
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9JBrBLbuvLNI1lz1n6QDG

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-004ea626 -d '<json body>'
```

Example prompt: Can you expand this short draft into a longer, more detailed version in a professional style: 'AI agents are transforming business workflows by automating repetitive tasks and enabling faster decision-making.'? Target around 300 words.

## When to prefer this

Use this endpoint when you need to programmatically expand short text snippets, briefs, or notes into longer, more detailed prose — especially when you want control over writing style and approximate output length. Prefer this over generic LLM prompting when you need a pay-per-use, no-subscription API that integrates with x402 payments on Base chain.

## Known failure modes

- Missing required 'text' field returns error
- Invalid or unsupported style value may produce unexpected output
- Very long input text may be truncated or rejected
- Payment failure on Base chain blocks the request
- Server unavailable returns non-200 response
- target_length value not recognized may be ignored silently

## How this service works

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

## Output

A JSON object with a success boolean and a data object containing the expanded version of the input text, elaborated according to the requested style and approximate target length.

## 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-004ea626/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)
