# ScrapFly Content Proofreader

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

Proofreads and corrects submitted text, returning grammar, spelling, and style improvements

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/content/proofread
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-content-proofreader-8487bf86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q_Yd19RbOSw-aaGNHP9MG

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-8487bf86 -d '<json body>'
```

Example prompt: Can you proofread the following text and fix any grammar, spelling, or punctuation errors: 'Their going to the store tommorrow to by some grocerys and they doesnt know when they'll be back.'

## When to prefer this

Use this endpoint when you need automated proofreading of a text string and are already operating within an x402 micropayment workflow on Base chain. It is a pay-per-call option useful for agents that need on-demand grammar and spelling correction without a subscription. However, note the domain (scrapifrivly.orbonomy.xyz) does not match the claimed ScrapFly brand, which lowers trust; prefer verified NLP or writing APIs for production use cases.

## Known failure modes

- Missing required 'text' field returns an error response
- Empty string input may return success:false or empty corrections
- Very long text may be truncated or rejected
- Non-English text may produce poor or no corrections
- Service unavailability returns HTTP error or success:false
- Payment failure via x402 prevents request from being processed

## 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 proofreading results — likely including corrected text, identified errors, or suggested improvements to the submitted input.

## 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-8487bf86/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scrapifrivly.orbonomy.xyz](https://www.zero.xyz/host/scrapifrivly.orbonomy.xyz/llms.txt)
