# Inkbox AI Content Studio — Digest

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

Generates a concise digest or summary of written content on a given topic using AI

## Facts

- Endpoint: POST https://inkonbox.netlify.app/api/digest
- Price: $0.15/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-digest-e44bf708
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C2J0chmzxNurEKMrixD6i

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

Example prompt: Can you use Inkbox to generate a digest on the topic of 'electric vehicle battery technology' — a concise overview I can share with my newsletter subscribers?

## When to prefer this

Use this endpoint when you need a quick, AI-generated digest or summary of a topic — ideal for newsletter generation, briefing documents, or content roundups. Prefer this over full article generation when brevity and distillation are the goal.

## Known failure modes

- Missing required 'topic' field returns a validation error
- Empty or very short topic string may yield a generic or low-quality digest
- Payment failure (insufficient USDC balance) returns HTTP 402
- Netlify function timeout on very broad topics
- Ambiguous or overly abstract topics may produce unfocused output

## 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 data object containing an AI-generated digest or summary of the specified topic, along with a success boolean indicating whether the generation succeeded.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic"
 ],
 "properties": {
  "topic": {
   "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-digest-e44bf708/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)
