# Inkbox AI Content Studio — Draft Endpoint

> Inkbox AI Content Studio — Draft Endpoint 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 written content draft from a prompt, with optional style and length parameters

## Facts

- Endpoint: POST https://inkonbox.netlify.app/api/draft
- 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-draft-endpoint-a9be30d2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tOgh09slhHzGNbvQt5gZ3

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-endpoint-a9be30d2 -d '<json body>'
```

Example prompt: Draft me a 500-word blog post about the benefits of remote work, written in a conversational and upbeat tone.

## When to prefer this

Choose this endpoint when you need to generate a first-draft of written content (blog posts, articles, copy) from a natural language prompt, especially when you want to control tone/style and approximate length. It is part of a 25-endpoint suite, so it is best for initial drafting rather than rewriting or translating existing text (use sibling endpoints for those).

## Known failure modes

- Missing required 'prompt' field returns validation error
- Overly long or ambiguous prompts may produce low-quality output
- Payment failure (402) if USDC balance is insufficient
- Network errors from Netlify hosting may cause timeouts
- Response schema is loosely typed — 'data' object structure is not guaranteed

## 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 content 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-endpoint-a9be30d2/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)
