# ScrapFly Content Compose API

> ScrapFly Content Compose API 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 composed written content from a prompt with configurable tone, style, length, and audience targeting

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/compose
- 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-compose-api-13c8786f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9COqPc1BlLC-XkelUcidP

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-compose-api-13c8786f -d '<json body>'
```

Example prompt: Write me a short, casual blog intro about sustainable coffee sourcing aimed at eco-conscious millennials — keep it punchy and under 200 words.

## When to prefer this

Choose this endpoint when you need AI-generated written content that can be tuned by tone, style, length, and audience — especially when you want pay-per-request pricing via crypto on Base chain rather than a subscription model. Best for one-off content generation tasks where customization parameters matter.

## Known failure modes

- Missing required 'prompt' field returns validation error
- Payment failure on Base chain results in 402 response
- Vague or empty prompt may produce low-quality or generic output
- Unsupported tone/style/length values may be ignored or cause errors
- Service unavailability returns 5xx error

## 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 AI-generated composed content based on the provided prompt, tone, style, length, and audience parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "prompt"
 ],
 "properties": {
  "tone": {
   "type": "string",
   "description": "tone"
  },
  "style": {
   "type": "string",
   "description": "style"
  },
  "length": {
   "type": "string",
   "description": "length"
  },
  "prompt": {
   "type": "string",
   "description": "prompt"
  },
  "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-compose-api-13c8786f/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)
