# Bolt Bullet Points Generator

> Bolt Bullet Points Generator is a paid API for AI agents from v0-bolt.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Converts a block of text into a concise, formatted list of bullet points

## Facts

- Endpoint: POST https://v0-bolt.orbonomy.xyz/api/bullet-points
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-bullet-points-generator-672f9745
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EOhx3Z7D3QiKrqfbKcns5

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-672f9745 -d '<json body>'
```

Example prompt: Turn this into 5 bullet points in a concise style: 'Artificial intelligence is transforming industries by automating complex tasks, improving decision-making through data analysis, enabling personalized experiences at scale, and driving new business models that were previously impossible.'

## When to prefer this

Use this endpoint when you need to quickly distill a block of prose into scannable bullet points for summaries, presentations, or digests. It is especially useful when you want control over the number of bullets and their style, and when you want to pay only per request without a subscription.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty or very short text may produce low-quality or too-few bullet points
- Requested count exceeds what the text can meaningfully support, resulting in padded or repeated points
- Invalid style value may be ignored or cause an error
- Payment failure via x402 prevents processing

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