# Lorem Ipsum Generator

> Lorem Ipsum Generator is a paid API for AI agents from api.24klabs.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Generates placeholder text (lorem ipsum) in configurable units of paragraphs, sentences, or words

## Facts

- Endpoint: POST https://api.24klabs.ai/api/v1/lorem-ipsum
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lorem-ipsum-generator-c565517e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5p36X2ujja3a3meoFPnpA

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

Example prompt: Can you generate 3 paragraphs of lorem ipsum placeholder text for my design mockup?

## When to prefer this

Choose this endpoint when an agent needs programmatically generated lorem ipsum placeholder text in a specific unit granularity (paragraphs, sentences, or words) with a defined count, especially within an x402 micropayment workflow. Prefer it over client-side lorem ipsum libraries when the generation must happen server-side or within an agentic pipeline that already handles x402 payments.

## Known failure modes

- Invalid unit type provided (not paragraphs/sentences/words) — returns 400 error
- Count value missing or zero — returns 400 validation error
- Count value extremely large — may time out or return rate-limit error
- Network timeout if service is temporarily unavailable

## How this service works

Generate placeholder text by paragraphs, sentences, or words.

## Output

Returns generated lorem ipsum placeholder text in the requested unit (paragraphs, sentences, or words) and quantity, delivered as a plain text or structured string ready to paste into designs, templates, or test fixtures.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "paragraphs": {
   "type": "number"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "text": "Lorem ipsum..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lorem-ipsum-generator-c565517e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.24klabs.ai](https://www.zero.xyz/host/api.24klabs.ai/llms.txt)
