# ScrapFly Content Retone API

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

Rewrites a given piece of text in a specified target tone (e.g. formal, casual, persuasive) while preserving its meaning

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/retone
- 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-retone-api-ecba3613
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YUCcvpOwbtlMUV1boprdl

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-retone-api-ecba3613 -d '<json body>'
```

Example prompt: Rewrite the following text in a persuasive tone: 'Our new software helps teams stay organized and meet deadlines more easily.'

## When to prefer this

Use this endpoint when you need to adjust the communicative tone of existing text without changing its core meaning — ideal for repurposing content across different audiences (e.g. formal reports vs. casual social posts), adapting customer-facing copy, or standardizing brand voice across documents. Prefer this over a general rewrite endpoint when tone transformation is the primary goal rather than content summarization or translation.

## Known failure modes

- Missing required field 'text' — returns success: false
- Missing required field 'target_tone' — returns success: false
- Unsupported or unrecognized tone value — may return generic or unchanged output
- Text too long — may result in truncation or error
- Payment failure on Base chain — 402 response before processing occurs

## 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 retoned version of the input text, rewritten to match the specified target tone while preserving the original meaning.

## Request schema (JSON Schema)

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

## 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-retone-api-ecba3613/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)
