
Lorem Ipsum Builder API
Content
Create custom Lorem Ipsum placeholder text with full control over structure. Build paragraphs, lists, and lines for your design mockups and web layouts.
Authentication
All API requests require a valid API key passed in the Authorization header as a Bearer token.
Rate Limit
100 requests per minute
Endpoints
1 endpoint available
Overview
The Lorem Ipsum Builder API generates customizable placeholder text with precise control over structure. Specify an array of blocks with different types to create exactly the content structure you need.
Block Types
- large-paragraph - Full paragraph of Lorem Ipsum text (~200 chars)
- small-paragraph - Shorter paragraph (~100 chars)
- line - Single line of text (~8 words)
- bullet-list - Bullet points (each sentence becomes a bullet)
- numbered-list - Numbered list items
- all-caps - Uppercase paragraph
Use Cases
- Generate placeholder content for design mockups
- Create structured dummy text for web layouts
- Fill prototypes with realistic content structures
- Test typography and layout with varied text blocks
Endpoints
POST
/v1/tools/lorem-ipsum-builderGenerate Lorem Ipsum text with custom structure
Request Body
Content-Type: application/json
| Parameter | Type | Required | Description |
|---|---|---|---|
| blocks | array | Required | Array of block types to generate. Each item should be a block type string. |
Response Example
{
"success": true,
"result": {
"text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\n\n• Ut enim ad minim veniam\n• Quis nostrud exercitation ullamco\n• Laboris nisi ut aliquip ex ea\n\nSed ut perspiciatis unde omnis.",
"blockCount": 3
}
}Error Codes
400
Invalid request body or empty blocks array401
Missing or invalid API key422
Invalid block type specified429
Rate limit exceeded500
Internal server errorCode Examples
curl -X POST https://api.opentools.ca/v1/tools/lorem-ipsum-builder \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"blocks": [
"large-paragraph",
"bullet-list",
"small-paragraph",
"line"
]
}'