# Bolt Lorem Ipsum Generator

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

Generates placeholder lorem ipsum text with a configurable number of sentences and paragraphs

## Facts

- Endpoint: POST https://bolt.orbonomy.xyz/api/lorem
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-lorem-ipsum-generator-9e1a2245
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IkMMEqNtYNEdoP_gZbE5R

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-lorem-ipsum-generator-9e1a2245 -d '<json body>'
```

Example prompt: Generate 3 paragraphs of lorem ipsum placeholder text with 4 sentences each for my wireframe mockup.

## When to prefer this

Choose this endpoint when you need quick, programmatic generation of lorem ipsum placeholder text with precise control over paragraph and sentence counts, especially in agent workflows that require filler content for templating, UI testing, or staging environments.

## Known failure modes

- Invalid or missing integer values for sentences or paragraphs returns an error
- Negative or zero values may cause unexpected behavior or errors
- Extremely large values for sentences/paragraphs may result in timeouts or oversized payloads
- Payment failure via x402 results in a 402 response before content is delivered

## 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 lorem ipsum text structured according to the requested sentence and paragraph counts.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sentences": {
   "type": "integer"
  },
  "paragraphs": {
   "type": "integer"
  }
 }
}
```

## 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-lorem-ipsum-generator-9e1a2245/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)
