# Inkbox AI Content Studio — Blueprint Endpoint

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

Generates AI-powered written content (drafts, rewrites, translations, optimizations) for a given topic via a blueprint-style content generation endpoint.

## Facts

- Endpoint: POST https://inkonbox.netlify.app/api/blueprint
- Price: $0.08/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-blueprint-endpoint-14763f0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Fcgv1EQwBMGsKfVWixQWo

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-14763f0a -d '<json body>'
```

Example prompt: Draft a piece of written content about sustainable fashion trends using Inkbox's blueprint endpoint — the topic is 'sustainable fashion trends in 2025'.

## When to prefer this

Choose this endpoint when you need to programmatically generate written content, drafts, or copy for a given topic and want to pay per call in USDC with no subscription commitment; best for agents that need on-demand content generation without maintaining an LLM integration directly.

## Known failure modes

- Missing required 'topic' field returns validation error
- Empty topic string may return generic or low-quality content
- Payment failure via x402/USDC returns 402 Payment Required
- Rate limiting or quota exceeded returns 429 Too Many Requests
- Netlify cold-start latency may cause timeout on first call

## 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 written content 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-14763f0a/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)
