# Inkbox AI Content Studio — Reword

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

Rewrites or rephrases a given piece of text using AI while preserving its core meaning

## Facts

- Endpoint: POST https://lastink.netlify.app/api/reword
- Price: $0.08/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-b9ac738d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jf3puiRlFbeCKEqKPyyFQ

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

Example prompt: Reword this paragraph so it sounds more natural and engaging: 'Our company has been providing high quality services to clients for many years and we are committed to excellence in all areas of our operations.'

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call AI reword/paraphrase of a single block of text without committing to a subscription; ideal for agents that occasionally need to freshen up copy, avoid repetition, or improve readability on demand

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return an error or unchanged output
- Very long text may exceed token limits or incur higher latency
- Payment failure via x402 results in 402 response before processing begins
- Service may return generic rephrasing that doesn't match desired tone if no style hint is provided

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