# Inkbox AI Reword

> Inkbox AI Reword is a paid API for AI agents from 0ink.netlify.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-13).

Rewrites and paraphrases provided text using AI to improve clarity, style, or phrasing

## Facts

- Endpoint: POST https://0ink.netlify.app/api/reword
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/inkbox-ai-reword-298f5729
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hZsB6Wf5Nqs4x5AlqVIY6

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-reword-298f5729 -d '<json body>'
```

Example prompt: Reword this paragraph for me so it sounds cleaner and more polished: 'Our company has been in the business of making high-quality products for a very long time and we always try our best to make sure that customers are happy with what they receive.'

## When to prefer this

Choose this endpoint when you need to paraphrase or rephrase existing text rather than generate new content from scratch — ideal for improving clarity, reducing repetition, avoiding plagiarism, or refreshing stale copy without changing the underlying meaning

## Known failure modes

- Missing required 'text' field returns a 400-level validation error
- Empty or whitespace-only text may return an error or empty rewrite
- Very long inputs may be truncated or rejected
- Payment failure via x402 protocol results in 402 Payment Required before content is returned
- Network or upstream AI service outage may return a 500 error

## 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 AI-generated reworded version of the submitted text

## 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-reword-298f5729/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 0ink.netlify.app](https://www.zero.xyz/host/0ink.netlify.app/llms.txt)
