text_lorem_ipsum
Generate random Lorem Ipsum placeholder text as words, sentences, paragraphs, or bullet lists, in plain text or HTML. Ideal for dummy copy in mockups and layout testing.
Instructions
Generate Random Lorem Ipsum Placeholder Text. Generate random classic Latin lorem ipsum filler text as words, sentences, paragraphs, or a bullet list, in plain text or HTML. Output is non-deterministic (each call uses random selection, so words and lengths vary) except for the optional fixed opening Lorem ipsum dolor sit amet clause. Use this for neutral placeholder/dummy copy in mockups, UI prototypes, and layout testing. Prefer text_lorem_ipsum_variations when you need themed vocabularies (bacon, cupcake, pirate, Shakespeare, tech, medical); prefer data_data_faker or data_sample_data_generator when you need structured fake records (names, emails, rows) rather than prose. Read-only, offline, no auth; rate limited to 60 requests/minute for anonymous callers. Returns the generated text plus character/word counts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Unit of text to generate. Invalid values fall back to paragraphs. | paragraphs |
| count | No | How many units (words, sentences, paragraphs, or list items) to produce. Clamped to 1-1000. | |
| startWithLorem | No | Begin the output with the canonical Lorem ipsum dolor sit amet opening. Any value other than false is treated as true. | |
| format | No | Output format. html wraps paragraphs in p tags and lists in ul/li; anything other than html yields plain text. | plain |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| success | No | True when generation succeeded. | |
| result | No | The generated lorem ipsum text (plain or HTML per the format parameter). | |
| stats | No | Counts for the generated text. Always includes words, characters, charactersNoSpaces; plus paragraphs (type=paragraphs), sentences (type=sentences), or items (type=lists). |