# Inkbox AI Content Rework

> Inkbox AI Content Rework 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-14).

Rewrites or restyled a piece of text using AI, optionally applying a specified writing style

## Facts

- Endpoint: POST https://lastink.netlify.app/api/rework
- 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-rework-ce12526b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-dqQFO-ALgaT-qTpOtO0H

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

Example prompt: Can you rework this paragraph I wrote for my product landing page and give it a bold, punchy marketing style: 'Our software helps teams track tasks and stay organized so projects get done on time.'

## When to prefer this

Choose this endpoint when you need to transform existing text into a different style, tone, or register — especially when you already have a draft and want AI to rephrase or polish it. Prefer this over a general drafting endpoint when the source content already exists and the goal is transformation rather than creation from scratch.

## Known failure modes

- Missing required `text` field returns an error
- Empty text string may produce no meaningful output
- Invalid or unsupported style value may be ignored or cause unexpected output
- Payment failure via x402 prevents the call from completing
- Very long text may be truncated or rejected
- Generic 502/503 errors if the Netlify serverless function is cold or overloaded

## 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-rewritten version of the input text, transformed according to the requested style.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "style": {
   "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-rework-ce12526b/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)
