# Lorem Ipsum Text Generator

> Lorem Ipsum Text Generator is a paid API for AI agents from lorem.steer.fun, paid per call via x402, $0.001/call, status down (last checked 2026-09-16).

Generates lorem ipsum placeholder text in configurable counts of words, sentences, or paragraphs in plain or HTML format

## Facts

- Endpoint: GET https://lorem.steer.fun/generate
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lorem-steer-fun-51966eff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f9zsVyCbLSyU5GYHsSz2x

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-steer-fun-51966eff
```

Example prompt: Generate 3 paragraphs of lorem ipsum placeholder text in plain format for my wireframe.

## When to prefer this

Use this endpoint when you need quick, configurable lorem ipsum placeholder text for UI mockups, wireframes, or content testing, especially when you need control over the quantity and unit type (words, sentences, paragraphs) and output format (plain or HTML).

## Known failure modes

- count out of range (must be 1–50): returns error
- invalid units value (must be words, sentences, or paragraphs): returns error
- invalid format value (must be plain or html): returns error
- missing required method or type fields: returns validation error
- payment failure via x402 protocol: returns 402 status

## How this service works

Paid placeholder text API with MPP and x402 support.

## Output

Returns generated lorem ipsum text as either plain string or HTML-tagged content, with the requested number of units (words, sentences, or paragraphs, up to 50).

## 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": {
      "count": {
       "type": "string",
       "description": "Integer between 1 and 50"
      },
      "units": {
       "enum": [
        "words",
        "sentences",
        "paragraphs"
       ],
       "type": "string"
      },
      "format": {
       "enum": [
        "plain",
        "html"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lorem-steer-fun-51966eff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from lorem.steer.fun](https://www.zero.xyz/host/lorem.steer.fun/llms.txt)
