# Bolt Title Generate

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

Generates creative titles for a given topic using AI, with optional count and style parameters

## Facts

- Endpoint: POST https://bolt.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-generate-069d3266
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H9qtG9K5oPmEipPIOZkuP

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-generate-069d3266 -d '<json body>'
```

Example prompt: Generate 5 catchy, clickbait-style titles for an article about the future of electric vehicles.

## When to prefer this

Use this endpoint when you need quick AI-generated title suggestions for content such as blog posts, articles, videos, or newsletters, and want a pay-per-use model without a subscription. Ideal for agents automating content creation pipelines.

## Known failure modes

- Missing required 'topic' field returns a 400 validation error
- Payment not provided or insufficient USDC results in a 402 Payment Required response
- Invalid count value (e.g. negative integer) may cause a 422 or empty result
- Style parameter not recognized may default to a generic style or return an error
- Service unavailable returns a 500 error with no titles generated

## 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 success boolean and a data object containing one or more AI-generated title suggestions for the specified topic, styled according to the optional style parameter.

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