# ScrapFly Content Proofreading API

> ScrapFly Content Proofreading API is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Proofreads a block of text and returns corrected, polished content with grammatical and stylistic improvements

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/content/proofread
- Price: $0.15/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-proofreading-api-dc755498
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yWcFX1nuhHQRlbhgu2xH0

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-proofreading-api-dc755498 -d '<json body>'
```

Example prompt: Can you proofread this paragraph and fix any grammar, spelling, or punctuation mistakes: 'Their are many reason why writting clearly is importent for buisness communication, and we should all try to improove our skills regulerly.'

## When to prefer this

Choose this endpoint when you need automated proofreading as part of a content pipeline or agent workflow, especially when paying per-request via x402 on Base chain is acceptable. Prefer this over general LLM prompting when you want a dedicated, consistent proofreading response format with a structured success/data return.

## Known failure modes

- Empty or missing text field returns a validation error
- Extremely long text may exceed processing limits
- Ambiguous text with intentional non-standard style may be over-corrected
- Non-English text may not be proofread accurately
- Network or payment failure returns a non-success response

## 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 input text, along with any identified errors or suggestions for improvement

## 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-proofreading-api-dc755498/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scravfly.vercel.app](https://www.zero.xyz/host/scravfly.vercel.app/llms.txt)
