# Inkbox AI Content Studio — Blueprint Endpoint

> Inkbox AI Content Studio — Blueprint Endpoint 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 content blueprint or structured content draft based on a given topic using AI

## Facts

- Endpoint: POST https://0ink.netlify.app/api/blueprint
- 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-blueprint-endpoint-9d34b610
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jvryJHptn8nF-Q0OM0u-Q

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-blueprint-endpoint-9d34b610 -d '<json body>'
```

Example prompt: Use Inkbox to generate a content blueprint for the topic 'sustainable urban gardening for beginners' — I need a structured outline I can build an article around.

## When to prefer this

Choose this endpoint when you need a structured content blueprint or outline for a given topic and want to pay per call in USDC without a subscription. Best suited for one-off content planning tasks where you supply a topic string and want an AI-generated structure back quickly.

## Known failure modes

- Missing required 'topic' field returns a 400 validation error
- Payment not provided or insufficient USDC triggers a 402 Payment Required response
- Netlify function timeout if AI model is slow to respond
- Vague or very short topic may produce a generic or low-quality blueprint
- Service unavailability on Netlify returns 503

## 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 content blueprint or structured draft for the provided topic.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic"
 ],
 "properties": {
  "topic": {
   "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-blueprint-endpoint-9d34b610/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)
