# Lorem Ipsum Generator — REST API endpoint `lorem-ipsum`

Generate placeholder "Lorem Ipsum" text by words, sentences, or paragraphs.

- Category: text
- REST endpoint: POST https://api.findutils.com/api/tools/lorem-ipsum/execute (no API keys, 60 req/min per IP)
- MCP: not exposed on the MCP server. See https://findutils.com/mcp/ for the tools that are.
- Reference page: https://findutils.com/api/lorem-ipsum/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/lorem-ipsum/execute \
  -H "Content-Type: application/json" \
  -d '{
    "type": "paragraphs",
    "count": 2
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/lorem-ipsum
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `type` | string (words \| sentences \| paragraphs) | no | Unit of generation. |
| `count` | integer | no | Number of units to generate (1–100). |
| `startWithLorem` | boolean | no | Start the first paragraph with "Lorem ipsum dolor sit amet..." |

Example arguments (verified):

```json
{
  "type": "paragraphs",
  "count": 2
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
