# Inkbox AI Pitch Generator

> Inkbox AI Pitch 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 a compelling sales pitch or elevator pitch for a product targeting a specified audience

## Facts

- Endpoint: POST https://0ink.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-ff1812d5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jHe49QUKlWjmXiv_Xh0QR

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

Example prompt: Write me a punchy sales pitch for my product 'NestTrack', a smart home energy monitoring device, targeting eco-conscious homeowners who want to reduce their electricity bills.

## When to prefer this

Use this endpoint when you need a quick, AI-generated sales or elevator pitch for a specific product and audience. Ideal for startup founders, marketers, or agents automating pitch content generation. Prefer this over general-purpose LLM calls when you want a pay-per-use, no-subscription model with USDC micropayments on Base.

## Known failure modes

- Missing required 'product' field returns a 400 validation error
- Payment not included or insufficient USDC results in a 402 Payment Required response
- Vague or very short product description may produce generic pitch output
- Service unavailability on Netlify hosting returns 502 or 503 errors
- Overly long input strings may be truncated or rejected

## 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 specified 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-ff1812d5/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)
