# ScrapFly Content Clarify

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

Simplifies or clarifies a given text by rewriting it to a specified reading level

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/clarify
- Price: $0.1/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-clarify-64e5104d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C8KyvD_U2V2nVTI18Lh9j

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-clarify-64e5104d -d '<json body>'
```

Example prompt: Can you clarify this dense legal paragraph so it reads at a middle-school level? The text is: 'The indemnifying party shall hold harmless and indemnify the indemnified party from any and all claims, damages, losses, costs, and expenses arising out of or related to any breach of the representations and warranties set forth herein.'

## When to prefer this

Use this endpoint when you need to automatically rewrite or simplify a block of text to match a specific audience reading level — for example, converting technical documentation, legal text, or academic writing into plain English. Prefer it over generic LLM prompting when you want a consistent, pay-per-use API with predictable behavior for readability transformation tasks.

## Known failure modes

- Missing required 'text' field returns an error response with success: false
- Invalid or unsupported reading_level value may result in a default output or error
- Very long input text may exceed payload limits
- Payment failure on Base chain blocks request execution
- Empty text string may return an error or empty result

## 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 clarified or simplified version of the input text, rewritten to match the specified reading level.

## Request schema (JSON Schema)

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

## 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-clarify-64e5104d/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)
