# Inkbox AI Content Studio — Reword

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

Rewrites and paraphrases a given block of text into alternative phrasing while preserving meaning

## Facts

- Endpoint: POST https://inkonbox.netlify.app/api/reword
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/inkbox-ai-content-studio-reword-02d41f5b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h-6O7FsUAXiusLLdXIkud

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-02d41f5b -d '<json body>'
```

Example prompt: Can you reword this paragraph for me? 'Our product is designed to help businesses grow by providing cutting-edge solutions that drive results and enhance performance across all departments.'

## When to prefer this

Use this endpoint when you need to rephrase or paraphrase existing text without changing its meaning — ideal for avoiding repetition, freshening up copy, or rewriting content in a different style. Choose this over a full rewrite or translation endpoint when the goal is purely to express the same idea with different words.

## Known failure modes

- Missing required 'text' field returns an error response
- Empty string input may return an error or empty result
- Very long text inputs may be truncated or rejected
- Payment failure (402) if USDC balance is insufficient
- Network timeout for very large text blocks
- Service unavailability on Netlify hosting

## How this service works

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

## Output

Returns a JSON object with a success boolean and a data object containing the reworded version of the submitted text, preserving the original meaning in fresh 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-02d41f5b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from inkonbox.netlify.app](https://www.zero.xyz/host/inkonbox.netlify.app/llms.txt)
