# Inkbox AI Distill

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

Distills and condenses written text into a shorter, more focused form using AI

## Facts

- Endpoint: POST https://0ink.netlify.app/api/distill
- Price: $0.08/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-distill-f89c0b07
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CGDsO0VxXlwF6Yh8XywMp

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

Example prompt: Can you distill this into something much shorter and to the point: 'The quarterly financial report outlines a complex set of macroeconomic factors that have contributed to fluctuating revenue streams across all major product lines, with particular emphasis on supply chain disruptions, inflationary pressures, and evolving consumer demand patterns...'?

## When to prefer this

Choose this endpoint when you need to boil down a long or verbose piece of text to its essential core — ideal for summarizing reports, articles, or notes where brevity and retention of key meaning are the goal. Use over generic summarization when you want a tightly distilled output rather than a structured bullet-point summary.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return unhelpful output or error
- Extremely long text may hit processing limits
- Network or payment failure returns 402 or 5xx status
- Ambiguous or very short input may produce minimal distillation

## 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 input text, stripped down to its core meaning and essential points.

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