# Bolt Title Generator

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

Generates one or more titles for a given topic using AI, with optional style control

## Facts

- Endpoint: POST https://datault.orbonomy.xyz/api/title-generate
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-title-generator-8e9d0c79
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VG-To3V9anYucDp-_kxnv

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

Example prompt: Generate 5 blog post titles about remote work productivity in a casual, engaging style.

## When to prefer this

Use this endpoint when you need AI-generated title suggestions for a specific topic, especially when you want multiple options or a particular style, and are operating in an x402 micropayment-enabled agent workflow.

## Known failure modes

- Missing required 'topic' field returns validation error
- Invalid count type (non-integer) may cause a 400 error
- Empty topic string may result in generic or poor-quality titles
- Network or upstream AI failure may return a 500 error
- Payment failure via x402 protocol prevents request from completing

## 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 the generated title or list of titles for the given topic.

## 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-8e9d0c79/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from datault.orbonomy.xyz](https://www.zero.xyz/host/datault.orbonomy.xyz/llms.txt)
