# Inkbox AI Content Studio — Clean

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

Cleans and polishes raw text by removing noise, fixing formatting, and improving readability using AI.

## Facts

- Endpoint: POST https://pen-inkbox402.netlify.app/api/clean
- Price: $0.3/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-clean-c21c3c30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kvrIr8O4SpT5zjvhaYQ3q

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

Example prompt: Can you clean up this messy block of text for me — it has weird line breaks, extra spaces, and formatting junk that needs to be stripped out: 'Lorem   ipsum

dolor   sit amet,


consectetur'?

## When to prefer this

Choose this endpoint when you need to sanitize, normalize, or clean raw text content — such as scraped web copy, user-submitted input, or rough drafts with formatting artifacts — rather than translating, rewriting, or generating new content from scratch.

## Known failure modes

- Missing required 'text' field returns a 400 error
- Empty string input may return unchanged or error response
- Very long text may hit payload size limits
- Payment failure (insufficient USDC) returns 402 Payment Required
- Malformed JSON body returns parsing error

## 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, polished version of the submitted text with noise removed and formatting normalized.

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