{
  "name": "Clawculus Utility API",
  "version": "1.0.0",
  "endpoints": {
    "/api/uuid": "Generate a UUID v4",
    "/api/password?length=16&symbols=true": "Generate a secure password",
    "/api/hash?text=hello&algo=sha256": "Hash text (md5, sha1, sha256, sha512)",
    "/api/base64/encode?text=hello": "Base64 encode text",
    "/api/base64/decode?text=aGVsbG8=": "Base64 decode text",
    "/api/timestamp": "Current Unix timestamp + ISO date",
    "/api/random?min=1&max=100": "Random number in range",
    "/api/ip": "Your public IP address",
    "/api/headers": "Echo your request headers",
    "/api/json/format": "POST raw JSON to pretty-print it",
    "/api/qr?text=hello&size=200": "Generate QR code PNG"
  }
}