# Bolt Bullet Points Generator

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

Converts a block of text into a concise bullet-point summary with configurable count and style

## Facts

- Endpoint: POST https://bolt.orbonomy.xyz/api/bullet-points
- 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-bullet-points-generator-7cde8efb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8ASRpTQKxywoBvnCffHWB

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

Example prompt: Turn this article into 5 concise bullet points in a professional style: 'Artificial intelligence is transforming industries at an unprecedented pace. Companies across finance, healthcare, and retail are investing billions into AI-driven automation, seeking efficiency gains and competitive advantages. However, experts warn that without proper governance frameworks, the rapid adoption of AI could lead to significant ethical and security risks.'

## When to prefer this

Choose this endpoint when you need to quickly distill long-form text into scannable bullet points for presentations, summaries, or digests. It is especially useful when count and style control matter and you want a pay-per-use model without a subscription commitment.

## Known failure modes

- Missing required 'text' field returns a 400-level error
- Text too long may exceed processing limits
- Invalid 'count' type (non-integer) may cause a validation error
- Payment failure via x402 returns 402 Payment Required
- Malformed request body returns parse error

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

## 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-7cde8efb/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)
