# Inkbox AI Content Studio — Inquiry Endpoint

> Inkbox AI Content Studio — Inquiry 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-16).

Submits a content inquiry or prompt to Inkbox's AI writing engine to draft, rewrite, translate, or optimize written content

## Facts

- Endpoint: POST https://inkonbox.netlify.app/api/inquiry
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/inkbox-ai-content-studio-inquiry-endpoint-b92538c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ApEi3MAQM9hAinC7cfcSz

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-inquiry-endpoint-b92538c7 -d '<json body>'
```

Example prompt: Rewrite this product description to sound more engaging and conversational for a Gen Z audience: 'Our water bottle is made of stainless steel and keeps drinks cold for 24 hours.'

## When to prefer this

Choose this endpoint when you need AI-powered text generation, rewriting, or translation via a pay-per-call USDC micropayment model on Base — especially when you want to avoid subscription costs and only pay $0.08 per content operation

## Known failure modes

- Missing required 'content' field returns validation error
- Empty or malformed content string may return a generic error response
- Payment failure (insufficient USDC) blocks the call before processing
- Overly long content strings may hit token or payload limits
- Ambiguous prompts may return generic or off-target output
- Network timeout on the Netlify serverless function under load

## 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, rewritten, translated, or optimized written content based on the submitted prompt

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "content"
 ],
 "properties": {
  "content": {
   "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-inquiry-endpoint-b92538c7/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)
