# Inkbox AI Content Studio — Clean Text Endpoint

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

Cleans and sanitizes written text content using AI, removing noise, formatting issues, or unwanted elements

## Facts

- Endpoint: POST https://lastink.netlify.app/api/clean
- Price: $0.03/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-clean-text-endpoint-53662c6a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3QK-BpDrnTY8L0Aih9Ae5

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-clean-text-endpoint-53662c6a -d '<json body>'
```

Example prompt: Can you clean up this messy text I copied from a PDF — it has weird line breaks, extra whitespace, and garbled characters that need to be stripped out: 'Q1  Earnings   Report


Revenue grew   by 14%...'

## When to prefer this

Use this endpoint when you need AI-powered text cleaning or normalization as a preprocessing step before publishing, analyzing, or storing content. Ideal for cleaning scraped text, copy-pasted content, or raw drafts with formatting artifacts.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return error or empty result
- Extremely long text may hit payload size limits
- Payment failure (402) if USDC balance insufficient
- Service unavailable if Netlify hosting is down

## 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 cleaned/sanitized version of the submitted text, free of noise, formatting artifacts, or unwanted elements.

## 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-clean-text-endpoint-53662c6a/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)
