GnistAI GnistAI
Log in

Lorem Ipsum

Generate lorem ipsum placeholder text — paragraphs, sentences, or words for design and development.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 4 tools tools 4 4 type: calculator type type calculator calculator lifecycle: maintained lifecycle lifecycle maintained maintained Utilities

Data source: Built-in generator

REST Bridge Endpoint https://context.gnist.ai/rest/lorem-ipsum/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (4)

generate_lorem_paragraphs

Generate lorem ipsum placeholder paragraphs.

Produces realistic-looking Latin placeholder text commonly used in design,
typesetting, and development. Each paragraph contains 3-7 sentences.

ParameterTypeRequiredDescription
countintegeroptionalNumber of paragraphs (1-100). (default: 3)
start_with_lorembooleanoptionalStart with the classic 'Lorem ipsum dolor sit amet...' opening. (default: true)
Request Body
{
  "query": "example"
}
generate_lorem_sentences

Generate lorem ipsum placeholder sentences.

Each sentence contains 5-15 words of Latin-style placeholder text.

ParameterTypeRequiredDescription
countintegeroptionalNumber of sentences (1-500). (default: 5)
start_with_lorembooleanoptionalStart with the classic opening sentence. (default: true)
Request Body
{
  "query": "example"
}
generate_lorem_words

Generate lorem ipsum placeholder words.

Returns a sequence of Latin-style placeholder words without sentence structure.

ParameterTypeRequiredDescription
countintegeroptionalNumber of words (1-5000). (default: 50)
Request Body
{
  "query": "example"
}
report_feedback

Report a bug, feature request, or general feedback for this data source.

Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.

Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
Request Body
{
  "feedback": "example"
}

Quick Start

Shell
curl -X POST "https://context.gnist.ai/rest/lorem-ipsum/report_feedback" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"feedback": "example"}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/rest/lorem-ipsum/report_feedback",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    json={
  "feedback": "example"
},
)
print(resp.json())

Related Toolkits (Utilities)

Resources