# Inkbox AI Content Studio — Clean

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

Cleans and sanitizes written text, removing unwanted characters, formatting artifacts, or noise to produce polished output.

## Facts

- Endpoint: POST https://1nk30x.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-a7262edb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Gs8qKp9-pH2qqZB01rSpB

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

Example prompt: Can you clean up this text for me — it's got weird characters, extra whitespace, and formatting junk from when I copied it out of a PDF: 'Hel lo   world!!  

	This is a   test...'?

## When to prefer this

Use this endpoint when you need to quickly sanitize or normalize a piece of text — such as content scraped from the web, copied from PDFs, or produced by other tools — before storing, publishing, or further processing it. Prefer this over a full rewrite endpoint when you only need cleanup, not substantive content changes.

## Known failure modes

- Missing required 'text' field returns a validation error
- Empty string input may return an error or empty result
- Very long text may be truncated or rejected due to payload limits
- Payment failure (402) if USDC balance is insufficient on Base
- Network or service unavailability on the Netlify-hosted endpoint

## 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 formatting artifacts and noise.

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