# Inkbox AI Content Studio — Snippet Generator

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

Generates a written content snippet (e.g. blog excerpt, teaser, or short copy block) from a given title using AI

## Facts

- Endpoint: POST https://0ink.netlify.app/api/snippet
- 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-snippet-generator-a960136f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Jpxnnqd-JY4_aWoPSvXND

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-snippet-generator-a960136f -d '<json body>'
```

Example prompt: Can you use Inkbox to write me a short content snippet for an article titled 'The Future of Remote Work in 2025'?

## When to prefer this

Use this endpoint when you need a quick AI-drafted text snippet or teaser from just a title, with minimal input required. Ideal for content pipelines that need to bulk-generate preview copy, blog teasers, or short article excerpts on a pay-per-call basis via USDC on Base.

## Known failure modes

- Missing required 'title' field returns a validation error
- Empty or very short title may produce low-quality or generic output
- Payment failure (402) if USDC funds are insufficient on Base
- Network timeout if the AI generation takes too long
- Malformed JSON body returns a 400 bad request

## 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 AI-generated snippet text derived from the provided title

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "title"
 ],
 "properties": {
  "title": {
   "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-snippet-generator-a960136f/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)
