# Inkbox AI Content Studio — Inquiry Endpoint

> Inkbox AI Content Studio — Inquiry Endpoint is a paid API for AI agents from pen-inkbox402.netlify.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-14).

Accepts a content string and returns AI-processed written content such as drafts, rewrites, translations, or optimizations via a pay-per-call API.

## Facts

- Endpoint: POST https://pen-inkbox402.netlify.app/api/inquiry
- Price: $0.2/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-40c417f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zrjtXYETim4pFsFC3XjBu

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

Example prompt: Can you rewrite this product description to sound more engaging and professional: 'Our shoes are comfortable and come in many colors'?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call AI writing operation — drafting, rewriting, translating, or optimizing text — without committing to a subscription. Useful for agents that need on-demand content transformation billed in USDC on Base.

## Known failure modes

- Missing required 'content' field returns validation error
- Empty or very short content string may yield low-quality or generic output
- Payment failure (insufficient USDC balance) blocks the call
- Ambiguous or very long content may result in truncated or off-target output
- Network timeout on Netlify-hosted serverless function

## 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, such as 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-40c417f6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pen-inkbox402.netlify.app](https://www.zero.xyz/host/pen-inkbox402.netlify.app/llms.txt)
