# Bolt Title Generator

> Bolt Title Generator is a paid API for AI agents from boltx402.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Generates AI-powered titles for a given topic, with optional count and style parameters

## Facts

- Endpoint: POST https://boltx402.orbonomy.xyz/api/title-generate
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-title-generator-b47336fc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wBSe6kh4COJBbnmgxuSpk

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 bolt-title-generator-b47336fc -d '<json body>'
```

Example prompt: Generate 5 catchy, professional titles for an article about sustainable urban farming — make them engaging and suitable for a general audience.

## When to prefer this

Use this endpoint when an agent needs to quickly generate multiple title options for articles, blog posts, videos, or other content on a specific topic, especially when style customization is desired. Prefer this over manual brainstorming or generic LLM calls when a low-cost, pay-per-use solution is needed.

## Known failure modes

- Missing required 'topic' field returns validation error
- Invalid count type (non-integer) causes schema validation failure
- Empty topic string may yield generic or unhelpful titles
- Payment failure via x402 prevents request from being processed
- Style parameter not recognized may be ignored or cause unexpected output

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing AI-generated title suggestions for the given topic, potentially in the requested style and quantity.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic"
 ],
 "properties": {
  "count": {
   "type": "integer"
  },
  "style": {
   "type": "string"
  },
  "topic": {
   "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/bolt-title-generator-b47336fc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from boltx402.orbonomy.xyz](https://www.zero.xyz/host/boltx402.orbonomy.xyz/llms.txt)
