# ScravFly Content Paraphrase API

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

Paraphrases input text into one or more reworded variations using AI-driven content generation

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/content/paraphrase
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scravfly-content-paraphrase-api-a9f739ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BSf31IwQTtPZj3DvaNYlh

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 scravfly-content-paraphrase-api-a9f739ec -d '<json body>'
```

Example prompt: Can you paraphrase the following paragraph for me and give me 3 different variations: 'Our product helps teams collaborate more efficiently by centralizing communication and automating routine tasks.'

## When to prefer this

Choose this endpoint when you need programmatic, pay-per-use text paraphrasing without a subscription, especially if you are already working within the x402/Base payment ecosystem. It is well-suited for agents that need on-demand rewriting of arbitrary text in small batches with multiple variation outputs per call.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return success:false
- Very long text inputs may be truncated or rejected
- Invalid 'variations' type (non-numeric) causes request failure
- Network or payment failures on Base chain return gateway errors

## 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 paraphrased variation(s) of the submitted text. The number of variations returned corresponds to the requested count.

## Request schema (JSON Schema)

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

## 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/scravfly-content-paraphrase-api-a9f739ec/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)
