# Inkbox AI Content Studio — Draft Endpoint

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

Generates a new written draft based on a prompt, with optional style and length parameters, using AI content generation.

## Facts

- Endpoint: POST https://lastink.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-198e4734
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sTcIDyIEnMx8zb9E9rfKP

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-198e4734 -d '<json body>'
```

Example prompt: Draft a 300-word blog post introduction in a casual, conversational style about why morning routines matter for productivity — keep it engaging and relatable.

## When to prefer this

Choose this endpoint when you need to generate original written drafts from a prompt with controllable style and length. Best suited for content pipelines, copywriting automation, or any workflow where producing a first draft quickly is the goal. Prefer over generic LLM calls when you want a pay-per-call, no-subscription model with USDC on Base.

## Known failure modes

- Missing required 'prompt' field returns a validation error
- Ambiguous or very short prompts may yield low-quality or off-topic output
- Network or service downtime on Netlify hosting may cause 5xx errors
- Payment failure via x402 protocol prevents content from being generated
- Overly long prompts may be truncated or rejected

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