# Inkbox AI Content Studio — Longform Content Generator

> Inkbox AI Content Studio — Longform Content Generator is a paid API for AI agents from 0ink.netlify.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Generates long-form written content on a given topic with a specified style and word count using AI

## Facts

- Endpoint: POST https://0ink.netlify.app/api/longform
- Price: $0.15/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-longform-content-generator-e13b9b65
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6ha6WBX1faLkHiOEJqV4e

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-longform-content-generator-e13b9b65 -d '<json body>'
```

Example prompt: Write me a 1200-word long-form article about the future of renewable energy in a journalistic style.

## When to prefer this

Choose this endpoint when you need to generate substantial, multi-paragraph written content on a specific topic with control over style and approximate length. Ideal for blog posts, articles, explainers, and editorial content. Prefer this over short-form endpoints when the user needs 500+ words of cohesive prose.

## Known failure modes

- Missing required 'topic' field returns a 400 validation error
- Payment not included or insufficient USDC balance triggers a 402 Payment Required response
- Extremely long word counts may result in truncated or incomplete output
- Vague or ambiguous topic input may produce generic or off-target content
- Service unavailability on the Netlify-hosted endpoint returns a 503 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 long-form written content based on the provided topic, style, and word count parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic"
 ],
 "properties": {
  "style": {
   "type": "string"
  },
  "topic": {
   "type": "string"
  },
  "word_count": {
   "type": "integer"
  }
 }
}
```

## 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-longform-content-generator-e13b9b65/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)
