# Lorem Ipsum Placeholder Text Generator

> Lorem Ipsum Placeholder Text Generator is a paid API for AI agents from agent402.tools, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Generates lorem ipsum placeholder text by paragraph count or word count

## Facts

- Endpoint: GET https://agent402.tools/api/lorem
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lorem-ipsum-placeholder-text-generator-023b026e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DpayF_WaTN-Vuj0xBKN7n

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-placeholder-text-generator-023b026e
```

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

## When to prefer this

Use this endpoint when you need quickly generated lorem ipsum filler text for UI mockups, design templates, or development testing. Choose paragraphs parameter for layout-based needs and words for precise character/word-count-constrained contexts.

## Known failure modes

- paragraphs value out of range (must be 1-20) returns error
- words value out of range (must be 1-2000) returns error
- both paragraphs and words specified simultaneously may cause ambiguous behavior
- missing query params defaults to 1 paragraph
- payment failure results in 402 response

## How this service works

Placeholder text. ?paragraphs=1..20 or ?words=1..2000.

## Output

Returns lorem ipsum placeholder text, either as a specified number of paragraphs (1-20) or a specific word count (1-2000 words), as plain text suitable for use in mockups, templates, or testing.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "paragraphs": "3"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "words": {
       "type": "string",
       "description": "Alternative: exact word count (1-2000)"
      },
      "paragraphs": {
       "type": "string",
       "description": "1-20 (default 1)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "text": "Lorem ipsum dolor sit amet…"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lorem-ipsum-placeholder-text-generator-023b026e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
