# ScrapFly Content Proofreader

> ScrapFly Content Proofreader is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Proofreads and corrects submitted text, returning improved content with grammar, spelling, and style fixes

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/proofread
- Price: $0.05/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-proofreader-fb0e07f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mF1KXWljAZATz7KegPb7L

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-proofreader-fb0e07f2 -d '<json body>'
```

Example prompt: Can you proofread this paragraph and fix any grammar, spelling, or punctuation issues: 'Their going to the store tommorow to by some grocerys for the diner party'?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-use proofreading check on a single block of text without setting up a dedicated grammar API integration. Best for agents that occasionally need to polish user-generated content, articles, or messages before publishing or sending, and want to pay only per request via USDC on Base chain.

## Known failure modes

- Missing required 'text' field returns an error response with success: false
- Empty string input may return an error or unchanged text
- Extremely long text may time out or exceed payload limits
- Non-text binary content will likely fail validation
- Network or payment failure (x402 on Base chain) results in 402 or 5xx error

## 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 proofread/corrected version of the submitted text, with grammar, spelling, and style issues resolved.

## Request schema (JSON Schema)

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

## 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-proofreader-fb0e07f2/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)
