# UUID Generator — REST API endpoint `uuid`

Generate one or more UUID v4 values.

- Category: developer
- REST endpoint: POST https://api.findutils.com/api/tools/uuid/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/uuid/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/uuid/execute \
  -H "Content-Type: application/json" \
  -d '{}'

# Parameter schema
curl https://api.findutils.com/api/tools/uuid
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `count` | integer | no | Number of UUIDs to generate (1–100). |
| `uppercase` | boolean | no | Return UUIDs in uppercase. |

Example arguments (verified):

```json
{}
```

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
