# ScrapFly Content Rewrite API

> ScrapFly Content Rewrite API is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-15).

Rewrites and paraphrases input text with a specified tone and style while optionally preserving the original meaning

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/content/rewrite
- Price: $0.3/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-rewrite-api-5ac2da99
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R9c5Xq7C2YXF_aF8HD3QF

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-5ac2da99 -d '<json body>'
```

Example prompt: Rewrite the following paragraph in a professional tone and formal style, keeping the original meaning intact: 'Hey, just wanted to let you know we totally messed up your order and are super sorry about that.'

## When to prefer this

Choose this endpoint when you need to transform existing text into a different tone or style — such as making informal content professional, adjusting marketing copy, or paraphrasing content — and you need pay-per-use pricing via crypto (USDC on Base) without a subscription. Prefer alternatives if you need bulk batch rewriting, document-level processing, or language translation rather than tone/style transformation.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty text input may return empty or malformed output
- Unsupported or misspelled tone/style values may produce unexpected results
- Very long text inputs may exceed processing limits or increase latency
- Network timeout on the x402 payment settlement layer
- Insufficient USDC balance causes payment failure before processing begins

## 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 input text, transformed according to the specified tone, style, and meaning-preservation preferences.

## 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-5ac2da99/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)
