# Inkbox AI Content Studio — Distill

> Inkbox AI Content Studio — Distill 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-14).

Distills and condenses a block of text into a shorter, clearer form using AI.

## Facts

- Endpoint: POST https://inkonbox.netlify.app/api/distill
- Price: $0.08/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-distill-497d242e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x_K1rmrecJljz5CrJkZkl

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-distill-497d242e -d '<json body>'
```

Example prompt: Can you distill this 800-word article down to its core ideas? Here's the text: 'Artificial intelligence has rapidly transformed industries across the globe, from healthcare to finance, reshaping how organizations operate and make decisions...'

## When to prefer this

Use this endpoint when you need to condense or distill a block of text into its essential points — particularly when brevity is the primary goal rather than full summarization or rewriting. Prefer this over a generic summarize endpoint when you want the output to feel tightly compressed and essence-focused.

## Known failure modes

- Empty or missing 'text' field returns a validation error
- Extremely long text may hit token or payload limits
- Ambiguous or low-quality input may produce a generic or unhelpful condensation
- Service unavailability on the Netlify hosting platform returns a 5xx error
- Insufficient USDC balance or failed x402 payment returns a 402 Payment Required 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 distilled/condensed version of the submitted text.

## 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-distill-497d242e/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)
