# Inkbox AI Content Studio — Inquiry Endpoint

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

Accepts a content string and returns AI-processed written content via a pay-per-call inquiry interface supporting drafting, rewriting, translating, and optimizing text.

## Facts

- Endpoint: POST https://0ink.netlify.app/api/inquiry
- 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-inquiry-endpoint-a2419ddf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Neq7foHSsDkd3GQwtH_H8

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

Example prompt: Can you use Inkbox to rewrite this product description to sound more engaging and professional: 'Our widget is a device that does things and helps people with tasks they need done'?

## When to prefer this

Choose this endpoint when you need lightweight, pay-per-call AI content transformation — drafting, rewriting, translating, or optimizing text — without a subscription. Ideal for agents handling one-off content tasks billed in USDC on Base via x402 protocol, especially when cost-per-call transparency matters.

## Known failure modes

- Missing required `content` field returns validation error
- Empty string content may return generic or error response
- Payment failure (insufficient USDC) blocks request with 402 status
- Very long content strings may exceed token limits
- Ambiguous or malformed input may produce low-quality AI output
- Network or Netlify hosting downtime returns 5xx errors

## 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-processed content result — typically a rewritten, translated, or optimized version of the submitted text.

## 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-a2419ddf/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)
