# Inkbox AI Content Studio — Dumb Down

> Inkbox AI Content Studio — Dumb Down is a paid API for AI agents from inkonbox.netlify.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-16).

Rewrites complex or technical text into simpler, easier-to-understand language

## Facts

- Endpoint: POST https://inkonbox.netlify.app/api/dumb-down
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/inkbox-ai-content-studio-dumb-down-ae5ab46e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XBATKtnOXC7wOllTAsiKt

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-dumb-down-ae5ab46e -d '<json body>'
```

Example prompt: Can you dumb down this paragraph for me so a 10-year-old could understand it: 'Mitochondria are membrane-bound organelles that generate most of the cell's supply of adenosine triphosphate, used as a source of chemical energy'?

## When to prefer this

Use this endpoint when you need to automatically simplify complex, technical, legal, academic, or jargon-heavy text into plain, accessible language for a general or non-expert audience. Prefer it over general-purpose LLM calls when you want a lightweight, pay-per-call microservice without managing your own AI infrastructure.

## Known failure modes

- Missing required 'text' field returns a 400 validation error
- Empty or very short text may produce low-quality or unchanged output
- Payment not included or insufficient USDC results in 402 Payment Required
- Text that is already very simple may be returned with minimal changes
- Rate limits or service outages may return 429 or 5xx errors

## 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 simplified, plain-language rewrite of the submitted text, returned as a data object with a success boolean and a data object containing the transformed content.

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