# ScrapFly Content Rewrite API

> ScrapFly Content Rewrite 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).

Rewrites and paraphrases text content with configurable tone, style, and meaning preservation options

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/content/rewrite
- 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-rewrite-api-3ce98208
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6CL3kh52FklD0BKfJkOXO

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-rewrite-api-3ce98208 -d '<json body>'
```

Example prompt: Rewrite this paragraph in a professional tone and formal style, making sure to preserve the original meaning: 'Our product is super easy to use and tons of people love it because it saves them a bunch of time every day.'

## When to prefer this

Choose this endpoint when you need automated text rewriting with explicit tone and style control and meaning preservation options, especially within a pay-per-request x402 workflow on Base chain. Suitable for content pipelines needing programmatic paraphrasing without managing an LLM directly.

## Known failure modes

- Missing required 'text' field returns validation error
- Unsupported tone or style values may produce unexpected output or errors
- Payment failure via x402 on Base chain blocks request
- Very long text inputs may hit length limits or timeout
- Vague or contradictory tone/style combinations may yield poor rewrites

## 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 rewritten version of the submitted text, transformed according to the specified tone, style, and meaning preservation settings.

## Request schema (JSON Schema)

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

## 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-rewrite-api-3ce98208/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)
