# Inkbox AI Content Studio — Draft

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

Generates a new written content draft from a prompt, with optional style and length controls

## Facts

- Endpoint: POST https://0ink.netlify.app/api/draft
- Price: $0.15/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-draft-60b025db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1DPQNOJ9autZzcaXvlpzX

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-draft-60b025db -d '<json body>'
```

Example prompt: Draft a 300-word blog post intro about sustainable coffee farming in a conversational tone — keep it engaging and accessible for a general audience.

## When to prefer this

Use this endpoint when you need to generate a brand-new written draft from scratch — not to rewrite, translate, or optimize existing content. Best for first-pass content generation where a prompt, optional style, and optional length are sufficient inputs.

## Known failure modes

- Missing required 'prompt' field returns validation error
- Overly long or complex prompt may produce truncated output
- Ambiguous style or length strings may be ignored or misinterpreted
- Payment failure (402) if USDC balance insufficient
- Network timeout on slow inference
- Generic or empty prompt produces generic or low-quality 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 JSON object with a success boolean and a data object containing the AI-generated draft text based on the provided prompt, style, and length parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "prompt"
 ],
 "properties": {
  "style": {
   "type": "string"
  },
  "length": {
   "type": "string"
  },
  "prompt": {
   "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-draft-60b025db/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)
