# fastapi.online — Bullet Points Generator

> fastapi.online — Bullet Points Generator is a paid API for AI agents from api.fastapi.online, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Converts a block of text into a concise, structured list of bullet points using self-hosted AI inference.

## Facts

- Endpoint: POST https://api.fastapi.online/bullet-points
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fastapi-online-bullet-points-generator-2cb306f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KPDDUFJrHEsHvXd4bZFQ6

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 fastapi-online-bullet-points-generator-2cb306f3 -d '<json body>'
```

Example prompt: Take this 500-word product description and turn it into a clean bullet-point list with no more than 8 points: 'Our new SmartDesk Pro features a height-adjustable frame, built-in wireless charging, USB-C hub, real-time posture monitoring via sensors, ambient lighting strips, and an integrated cable management system — all controlled from a companion app. It ships fully assembled in under 3 hours to major cities...'

## When to prefer this

Choose this endpoint when you need a quick, cheap ($0.001 USDC per call), no-signup way to convert long-form text into a structured bullet list — especially in agentic pipelines processing documents, articles, or meeting notes. It is ideal when you want fine-grained control over the maximum number of output points and don't need a full chat-based summarization model.

## Known failure modes

- Text too short or empty (minLength:1 enforced, but very short input may yield low-quality bullets)
- max_points out of range (must be 1–20, otherwise validation error)
- Text exceeds 8000 character limit (request rejected)
- Model inference timeout or self-hosted backend unavailability
- Payment failure or insufficient USDC balance when using x402 protocol

## How this service works

Chat, embeddings, OCR, speech-to-text, image editing, image understanding (captioning/Q&amp;A), text-to-speech, translation, writing tools, classification tools, developer tools, local utilities, format/checksum validators, encoding &amp; crypto utilities, date/time calculators, geo/coordinate math, math &amp; finance calculators, novelty tools, and business/social writing generators — 179 endpoints in all, across multiple specialized self-hosted models. Pay per call with crypto — no signup — or get an API key.

## Output

A structured list of bullet points distilled from the input text, with the number of bullets capped at the requested max_points value (default behavior likely returns the most salient points up to 20).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "maxLength": 8000,
   "minLength": 1
  },
  "max_points": {
   "type": "integer",
   "maximum": 20,
   "minimum": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fastapi-online-bullet-points-generator-2cb306f3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.fastapi.online](https://www.zero.xyz/host/api.fastapi.online/llms.txt)
