# ScrapFly Content Paraphrase API

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

Paraphrases input text into one or more reworded variations while preserving the original meaning

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/paraphrase
- Price: $0.1/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-paraphrase-api-2261cd2e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vD-w42DrxIIauecXp_uTB

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-paraphrase-api-2261cd2e -d '<json body>'
```

Example prompt: Can you paraphrase this paragraph for me and give me 3 different variations: 'Artificial intelligence is transforming the way businesses operate, enabling automation of complex tasks that once required significant human effort.'

## When to prefer this

Choose this endpoint when you need programmatic paraphrasing with multiple variation outputs via a pay-per-use API, especially within an agent workflow that already uses ScrapFly or x402 micropayment infrastructure on Base chain. Useful when you need fresh rewrites of scraped or generated content at scale.

## Known failure modes

- Missing required 'text' field returns error
- Empty or very short text may produce poor results
- Requesting too many variations may increase latency or hit limits
- Non-English or low-quality input text may yield low-quality paraphrases
- Payment failure on Base chain blocks the request

## How this service works

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

## Output

Returns a success boolean and a data object containing paraphrased version(s) of the submitted text, potentially including multiple variation alternatives based on the requested count.

## Request schema (JSON Schema)

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

## 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-paraphrase-api-2261cd2e/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)
