# Inkbox AI Content Studio — Clean Text

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

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

## Facts

- Endpoint: POST https://0ink.netlify.app/api/clean
- Price: $0.03/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-content-studio-clean-text-85c83e07
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cvtA0PFodasSeKkTgiCgp

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

Example prompt: Can you clean up this messy text for me — it's full of weird formatting artifacts and stray characters: 'Hello!!   World…  

  This   is   a   test--- text with   extra   spaces.'

## When to prefer this

Use this endpoint when you need to clean, normalize, or sanitize raw text before storage, display, or further AI processing. Ideal for stripping formatting artifacts from scraped content, pasted text, or user-generated input. Choose this over general rewrite or translate endpoints when the goal is purely cleanup without semantic transformation.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return empty or error response
- Very long text may hit size limits or timeout
- Malformed JSON body returns 400-level error
- Payment failure via x402 protocol returns 402 Payment Required

## 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, noise, or unwanted characters.

## 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-85c83e07/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)
