# Inkbox AI Content Studio — Draft Endpoint

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

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

## Facts

- Endpoint: POST https://inkinbox402.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-9e9d1f19
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FIpC-v7HNfI9Ws181drWk

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-9e9d1f19 -d '<json body>'
```

Example prompt: Draft a professional blog post intro about sustainable packaging for e-commerce brands, keep it concise (around 150 words), and write it in an authoritative but conversational style.

## When to prefer this

Choose this endpoint when you need to generate a net-new written draft from scratch given a user prompt. Prefer this over rewrite or translate endpoints when no existing content is being modified — only a prompt and optional style/length guidance is available.

## Known failure modes

- Missing required 'prompt' field returns a 400 validation error
- Overly long or malformed prompt may cause generation failure
- Payment not fulfilled triggers a 402 Payment Required response
- Model timeout or overload may return a 500 server error
- Invalid style or length values may produce unexpected output or error

## 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 generated draft text based on the provided prompt, style, and length constraints.

## 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-9e9d1f19/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from inkinbox402.netlify.app](https://www.zero.xyz/host/inkinbox402.netlify.app/llms.txt)
