Lorem Ipsum Generator
Generate placeholder text by paragraphs, sentences, or word count.
GET
1 credit
/v1/lorem-ipsum
curl "https://devtools.toolkitapi.io/v1/lorem-ipsum?paragraphs=2"
import httpx
resp = httpx.get(
"https://devtools.toolkitapi.io/v1/lorem-ipsum?paragraphs=2",
)
print(resp.json())
const resp = await fetch("https://devtools.toolkitapi.io/v1/lorem-ipsum?paragraphs=2", {
});
const data = await resp.json();
console.log(data);
# See curl example
Response
200 OK
{
"format": "paragraphs",
"count": 2,
"text": "Lorem ipsum dolor sit amet consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore. Et dolore magna aliqua ut enim ad minim veniam quis nostrud exercitation.\n\nUllamco laboris nisi ut aliquip ex ea commodo consequat duis aute irure dolor in reprehenderit. Voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat."
}
Try It Live
Live Demo
Response
Description
Generate placeholder text by paragraphs, sentences, or word count.
How to Use
1
1. Send a GET request with one of: `paragraphs`, `sentences`, or `words`.
2
2. The response contains the generated text and metadata about the format used.
About This Tool
Lorem Ipsum Generator produces placeholder text in three formats: paragraphs, sentences, or a specific word count. Use one parameter at a time — paragraphs takes priority, then sentences, then words. If none are specified, it defaults to 3 paragraphs.
Why Use This Tool
- UI prototyping — Fill mockups and wireframes with realistic text lengths
- Testing — Generate varied-length text for layout and overflow testing
- Content templates — Pre-fill CMS fields with placeholder content
Frequently Asked Questions
What happens if I pass multiple parameters?
Only one is used. Priority order: `paragraphs` > `sentences` > `words`. If none are specified, 3 paragraphs are generated.
Is the text truly random?
The words are randomly selected from the classic Lorem Ipsum vocabulary. Sentences are 8–20 words and paragraphs contain 4–8 sentences.
Start using Lorem Ipsum Generator now
Get your free API key and make your first request in under a minute.