# Inkbox AI Pitch Generator

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

Generates an AI-written sales or product pitch given a product description and optional target audience

## Facts

- Endpoint: POST https://inkonbox.netlify.app/api/pitch
- 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-pitch-generator-f54f095f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LHi9dcCGAc3n-E7Aqjubo

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-pitch-generator-f54f095f -d '<json body>'
```

Example prompt: Write me a compelling sales pitch for my project management app called TaskFlow, targeting remote startup teams who struggle with scattered communication.

## When to prefer this

Use this endpoint when you need a fast, AI-generated sales or investor pitch for a specific product, especially when you can supply a product name/description and optionally a target audience. Prefer this over general LLM prompting when you want a pay-per-call, structured output without managing your own AI infrastructure.

## Known failure modes

- Missing required 'product' field returns a 400 validation error
- Payment not included or insufficient USDC triggers a 402 Payment Required response
- Vague or very short product description may produce a generic or low-quality pitch
- Service unavailability on Netlify returns a 503 or timeout error
- Response schema may vary across sibling endpoints; pitch content is nested under 'data'

## 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 pitch text tailored to the provided product and audience.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "product"
 ],
 "properties": {
  "product": {
   "type": "string"
  },
  "audience": {
   "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-pitch-generator-f54f095f/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)
