# Inkbox — AI Bulletin Generator

> Inkbox — AI Bulletin 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 polished company bulletin or announcement from a company name and raw announcement text

## Facts

- Endpoint: POST https://0ink.netlify.app/api/bulletin
- 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-bulletin-generator-83fa3838
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-1ZjPrcZVTuuqtboZkLrv

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-bulletin-generator-83fa3838 -d '<json body>'
```

Example prompt: Can you draft a polished company bulletin for TerraLoop announcing that we're launching a new carbon offset marketplace for enterprise clients next month?

## When to prefer this

Use this endpoint when you need to quickly convert a rough company announcement into polished, professional bulletin copy without manual editing. Ideal for automating corporate communications workflows where a company name and raw announcement are available.

## Known failure modes

- Missing required field 'company' returns an error response
- Missing required field 'announcement' returns an error response
- Payment failure due to insufficient USDC balance returns HTTP 402
- Vague or very short announcement text may produce generic output
- Netlify cold-start latency may occasionally cause timeouts

## 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 flag and a data object containing the generated bulletin content based on the company name and announcement input.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "company",
  "announcement"
 ],
 "properties": {
  "company": {
   "type": "string"
  },
  "announcement": {
   "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-bulletin-generator-83fa3838/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)
