# Inkbox AI Content Studio — Reword

> Inkbox AI Content Studio — Reword is a paid API for AI agents from pen-inkbox402.netlify.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Rewords or paraphrases a given piece of text using AI, returning a rephrased version with the same meaning

## Facts

- Endpoint: POST https://pen-inkbox402.netlify.app/api/reword
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/inkbox-ai-content-studio-reword-85125125
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E4qGODE74awXCVUef1FoV

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 inkbox-ai-content-studio-reword-85125125 -d '<json body>'
```

Example prompt: Can you reword this paragraph for me so it says the same thing but in completely different phrasing: 'Our platform helps businesses grow by connecting them with the right customers at the right time through targeted digital advertising'?

## When to prefer this

Use this endpoint when you need a straightforward paraphrase or reword of existing text — ideal for avoiding repetition, refreshing stale copy, or producing alternative phrasing. Prefer this over a full rewrite endpoint when the goal is to preserve meaning closely but change the wording.

## Known failure modes

- Missing required 'text' field returns a 400 or error response
- Empty string input may return an error or empty result
- Very long text may be truncated or rejected
- Payment failure (insufficient USDC or x402 issue) results in 402 Payment Required
- Generic 500 server error if AI backend is unavailable

## How this service works

Draft, rewrite, translate, and optimize written content. 25 AI-powered endpoints. Pay-per-call with USDC on Base.

## Output

A JSON object with a success boolean and a data object containing the AI-reworded version of the submitted text, preserving the original meaning in new phrasing.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/inkbox-ai-content-studio-reword-85125125/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pen-inkbox402.netlify.app](https://www.zero.xyz/host/pen-inkbox402.netlify.app/llms.txt)
