Lorem Ipsum Generator

Generate classic Lorem Ipsum placeholder text for design mockups, prototypes, and testing. Customize the number of paragraphs and sentences per paragraph.

Get API Key

Overview

Use Cases

  • Web design mockups and wireframes
  • Development testing with realistic-looking text
  • Content placeholders while waiting for final copy
  • Typography demonstrations

Features

Customizable paragraphs (1-20)
Customizable sentences per paragraph (1-20)
Returns word count with each response
Built on the Lorelai library for consistent Lorem Ipsum text

API Endpoints

Generate Lorem Ipsum

Generate Lorem Ipsum placeholder text with customizable length and format

GET
https://api.requiems.xyz/v1/text/lorem

Parameters

Name Type Required Description
paragraphs integer Optional Number of paragraphs to generate (1-20)
sentences integer Optional Number of sentences per paragraph (1-20)

Try it out

Live Demo
Request

Number of paragraphs to generate (1-20)

Number of sentences per paragraph (1-20)

Response Fields

Field Type Description
text string Generated Lorem Ipsum text
paragraphs integer Number of paragraphs generated
wordCount integer Total number of words in generated text

Code Examples

# Generate 3 paragraphs with 5 sentences each
curl "https://api.requiems.xyz/v1/text/lorem?paragraphs=3&sentences=5" \
  -H "requiems-api-key: YOUR_API_KEY"

# Generate 1 paragraph with 10 sentences
curl "https://api.requiems.xyz/v1/text/lorem?sentences=10" \
  -H "requiems-api-key: YOUR_API_KEY"

Error Responses

400

paragraphs must be between 1 and 20

The paragraphs parameter is out of valid range

400

sentences must be between 1 and 20

The sentences parameter is out of valid range

Frequently Asked Questions