Utilities
Lorem-ipsum generator API
Generate placeholder lorem-ipsum text as words, sentences, or paragraphs from the classic Latin word pool, optionally forcing the canonical 'Lorem ipsum dolor sit amet' opening. A deterministic mulberry32 seed makes output reproducible for fixtures/snapshots; returns the text plus parts array, word count and char count. Answers 'give me 3 paragraphs of lorem ipsum','generate 50 placeholder words','reproducible dummy text with a seed'.
Price$0.01per request
MethodPOST
Route/v1/util/util-lorem
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
utilloremlorem-ipsumplaceholdertextgeneratordummy-textseed
API URL
Integration docshttps://x402.hexl.dev/v1/util/util-loremExample request
{
"units": "words",
"count": 8,
"seed": 1
}Example response
{
"text": "Lorem ipsum dolor sit amet deserunt lorem sint",
"units": "words",
"count": 8,
"startWithLorem": true,
"seed": 1,
"parts": [
"Lorem",
"ipsum",
"dolor",
"sit",
"amet",
"deserunt",
"lorem",
"sint"
],
"wordCount": 8,
"charCount": 46
}Input schema
{
"type": "object",
"required": [],
"properties": {
"count": {
"type": "integer",
"minimum": 1,
"maximum": 500,
"examples": [
8
]
},
"units": {
"type": "string",
"enum": [
"words",
"sentences",
"paragraphs"
],
"examples": [
"words"
]
},
"startWithLorem": {
"type": "boolean",
"examples": [
true
]
},
"seed": {
"type": "integer",
"examples": [
1
]
}
},
"examples": [
{
"units": "words",
"count": 8,
"seed": 1
}
]
}Output schema
{
"type": "object",
"additionalProperties": true
}