Lorem Ipsum Text Generator avatar
Lorem Ipsum Text Generator

Pricing

$2.00 / 1,000 results

Go to Apify Store
Lorem Ipsum Text Generator

Lorem Ipsum Text Generator

Developed by

Akash Kumar Naik

Akash Kumar Naik

Maintained by Community

Generate configurable lorem ipsum placeholder text with HTML, Markdown, and plain-text outputs, optimized for design workflows and CMS testing.

0.0 (0)

Pricing

$2.00 / 1,000 results

0

2

2

Last modified

15 days ago

SEO-Optimized Lorem Ipsum Text Generator

Generate human-readable lorem ipsum placeholder text tailored to design mockups, CMS testing, and editorial previews. Configure paragraph and sentence structure, blend in custom vocabulary, and export plain text, HTML, or Markdown in one run.

Why use this actor?

  • Content design – Produce branded placeholder copy that mirrors production tone.
  • Front-end prototyping – Stress-test layouts with realistic paragraph and sentence lengths.
  • CMS staging – Populate staging environments with reproducible sample content using seeds.
  • Localization prep – Insert domain-specific vocabulary to evaluate text overflow risks.

Input parameters

FieldTypeDefaultDescription
paragraphCountinteger3Total paragraphs to generate (1-50).
sentencesPerParagraph.mininteger4Minimum sentences per paragraph (1-12).
sentencesPerParagraph.maxinteger7Maximum sentences per paragraph (1-12).
wordsPerSentence.mininteger8Minimum words per sentence (4-32).
wordsPerSentence.maxinteger16Maximum words per sentence (4-32).
customWordListstring array[]Optional list of extra words to weave into the text.
outputFormatenumallChoose all, plain, html, or markdown.
seedintegerSet a seed for reproducible output.

Output dataset schema

Each dataset item represents one paragraph:

FieldTypeNotes
paragraphIdinteger1-based paragraph index.
sentenceCountintegerTotal sentences in the paragraph.
wordCountintegerTotal words in the paragraph.
plainTextstringPresent when outputFormat includes plain text.
htmlstring<p> block when HTML output is requested.
markdownstringMarkdown-friendly paragraph when selected.

A summary object is stored in the default key-value store (OUTPUT) containing average sentence and word counts to help size layouts quickly.

Quick start

Run with Apify CLI

# Install dependencies and initialize storage
pip install -r requirements.txt
apify run --input-file=test-input.json

Invoke via API

curl -X POST "https://api.apify.com/v2/acts/your-username~lorem-ipsum-text-generator/runs?token=YOUR_APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"paragraphCount": 5,
"sentencesPerParagraph": {"min": 3, "max": 6},
"wordsPerSentence": {"min": 6, "max": 14},
"customWordList": ["design", "layout", "prototype"],
"outputFormat": "html",
"seed": 42
}'

The run stores generated paragraphs in the default dataset and returns the summary record via the run output API.

Pricing and limitations

  • Recommended memory: 512 MB (scales comfortably up to 2,048 MB for larger paragraph counts).
  • Execution time: Typically <500 ms for up to 20 paragraphs.
  • Fair-use guidance: Paragraph cap enforced at 50 to prevent runaway datasets.
  • Pay-per-result readiness: Honors the ACTOR_MAX_PAID_DATASET_ITEMS cap when pricing per dataset item (see DEVELOPMENT.md for template code).