# Bolt Bullet Points Generator

> Bolt Bullet Points 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-13).

Converts input text into a formatted list of bullet points, with optional control over count and style

## Facts

- Endpoint: POST https://boltx402.orbonomy.xyz/api/bullet-points
- 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-bullet-points-generator-4de58f1e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-EI3A4wWVYV98YSwLu63w

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-bullet-points-generator-4de58f1e -d '<json body>'
```

Example prompt: Turn this article into 5 concise bullet points in a professional style: 'Artificial intelligence is transforming industries worldwide, from healthcare diagnostics to financial modeling, enabling faster and more accurate decisions than ever before.'

## When to prefer this

Use this endpoint when you need to quickly distill a block of text into a scannable, structured bullet list — especially useful for summarizing articles, reports, or meeting notes. Prefer this over a general summarization endpoint when the output format must specifically be bullet points rather than prose.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty or very short text may produce fewer bullets than requested
- Invalid 'count' integer (e.g. negative number) may cause error or unexpected output
- Overly long input text may be truncated or cause timeout
- Payment failure via x402 returns 402 status before processing begins

## 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 bullet points derived from the input text, formatted according to the requested count and style.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "count": {
   "type": "integer"
  },
  "style": {
   "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-bullet-points-generator-4de58f1e/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)
