Generates lorem ipsum text formatted as proper HTML with paragraphs, headings, and lists. Access via MCP in Cursor or Windsurf for quick mockup content, or hit GET /v1/lorem/html directly. Returns structured HTML ready for web development — not just plain text wrapped in tags. Perfect for testing layouts without content distractions.
curl "https://tinyfn.io/v1/lorem/html" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/lorem/html', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const data = await response.json();
console.log(data);
import requests
response = requests.get('https://tinyfn.io/v1/lorem/html',
headers={'X-API-Key': 'YOUR_API_KEY'})
data = response.json()
print(data)
Connect your AI agent (Claude, Cursor, Windsurf, etc.) to TinyFn's lorem ipsum tools:
{
"mcpServers": {
"tinyfn-lorem": {
"url": "https://tinyfn.io/mcp/lorem",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Generates semantic HTML including <p> paragraphs, <h1>-<h6> headings, <ul>/<ol> lists, and <blockquote> elements. The structure mimics real content hierarchy for realistic layout testing.
Call the lorem/html tool in Cursor, Windsurf, or other MCP clients. Specify parameters like word count or element types to customize the generated HTML structure.
Yes, you can specify parameters for paragraph count, include headings, add lists, and control overall length to match your mockup requirements.
This outputs valid, semantic HTML markup instead of plain text. You get properly nested elements with realistic content hierarchy, not just lorem text in paragraph tags.
Yes, the generated HTML includes inline elements like <em>, <strong>, and <a> tags to create more realistic content structure for comprehensive layout testing.