Catalog/gen-lorem-variant

Generators

Seeded themed lorem API

Generates reproducible themed placeholder copy (corporate-jargon, hipster, or pirate) of N sentences from a seed. The value-add: stable, flavored mockup text from curated word pools (distinct from plain lorem-ipsum). Answers 'Give me deterministic corporate-speak placeholder text', 'Generate reproducible pirate filler copy.'.

Price$0.01per request
MethodPOST
Route/v1/generate/lorem-variant
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache0s public
loremplaceholdercorporatehipsterpiratedeterministicseedtext
API URLhttps://x402.hexl.dev/v1/generate/lorem-variant
Integration docs
Example request
{
  "variant": "pirate",
  "sentences": 2,
  "seed": "abc"
}
Example response
{
  "text": "Bilge ahoy marooned treasure buccaneer marooned hornswaggle treasure cutlass. Kraken plunder ahoy scurvy treasure booty anchor.",
  "variant": "pirate",
  "sentences": 2,
  "seed": "abc",
  "wordCount": 16,
  "deterministic": true,
  "interpretation": "Reproducible pirate-flavored placeholder copy for mockups."
}
Input schema
{
  "type": "object",
  "required": [
    "variant",
    "seed"
  ],
  "properties": {
    "variant": {
      "type": "string",
      "enum": [
        "corporate",
        "hipster",
        "pirate"
      ],
      "examples": [
        "pirate"
      ]
    },
    "sentences": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100,
      "examples": [
        2
      ]
    },
    "seed": {
      "type": [
        "string",
        "number"
      ],
      "examples": [
        "abc"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}