# Bolt Bullet Points Generator

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

Converts input text into a structured list of bullet points with configurable count and style

## Facts

- Endpoint: POST https://deltadata.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-602fd014
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1pLTzIhCxDF6_5_PanHqV

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

Example prompt: Can you turn the following text into 5 concise bullet points in a professional style: 'Artificial intelligence is transforming industries by automating repetitive tasks, enhancing decision-making, and enabling personalized customer experiences at scale.'

## When to prefer this

Use this endpoint when you need to quickly distill long-form text into digestible bullet points for summaries, presentations, or content pipelines. It is well-suited for AI agent workflows that require structured content output from unstructured text, especially when you want control over the number and style of bullets. Prefer this over general-purpose LLM calls when you want a pay-per-use, API-native summarization tool without managing prompt engineering yourself.

## Known failure modes

- Missing required 'text' field returns validation error
- Invalid or very long text may cause processing failure
- Non-integer value for 'count' causes schema validation error
- Payment failure via x402 results in 402 response blocking execution
- Ambiguous or empty text may yield low-quality or generic bullet points

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