# agent402.tools Lorem Ipsum Generator

> agent402.tools Lorem Ipsum 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-13).

Generates placeholder lorem ipsum text in configurable paragraphs or sentences mode using a fixed vocabulary and deterministic assembly.

## Facts

- Endpoint: GET https://agent402.tools/api/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/agent402-tools-lorem-ipsum-generator-d012ac8b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9h9AnZu70_Dd2KvS6UDYr

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 agent402-tools-lorem-ipsum-generator-d012ac8b
```

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

## When to prefer this

Use this endpoint when you need quick, cheap ($0.001 USDC), deterministic lorem ipsum placeholder text via a simple GET request with no authentication beyond x402 payment — ideal for agents building UI mockups, populating test databases, or filling content templates programmatically.

## Known failure modes

- Invalid mode value (not 'paragraphs' or 'sentences') may return an error or fall back to default
- Non-numeric values for paragraphs or sentences count may cause a 400 error
- Zero or negative count values may return empty text or an error
- Network timeout if the service is temporarily unavailable

## How this service works

Generate placeholder lorem ipsum text. Supports paragraphs or sentences mode with configurable counts. Uses a fixed vocabulary and deterministic assembly.

## Output

Returns a block of lorem ipsum placeholder text — either N paragraphs or N sentences — assembled from a fixed vocabulary in a deterministic way, ready to paste into wireframes, templates, or test fixtures.

## 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": {
      "mode": {
       "type": "string",
       "description": "paragraphs (default) or sentences"
      },
      "sentences": {
       "type": "number",
       "description": "Number of sentences (default 5, mode=sentences)"
      },
      "paragraphs": {
       "type": "number",
       "description": "Number of paragraphs (default 3, mode=paragraphs)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mode": "paragraphs",
  "text": "Lorem ipsum dolor sit amet...",
  "count": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-lorem-ipsum-generator-d012ac8b/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)
