GET /api/password-generator
Generate a password with configurable options.
/api/password-generator?length=16&includeUppercase=true&includeLowercase=true&includeNumbers=true&includeSymbols=true
Lightweight JSON endpoints for selected utilities. No auth required for this MVP.
Generate a password with configurable options.
/api/password-generator?length=16&includeUppercase=true&includeLowercase=true&includeNumbers=true&includeSymbols=true
Encode plain text to Base64.
/api/base64-encode?text=hello%20world
Also supports POST JSON body:
{ "text": "hello world" }Generate one or more UUID values.
/api/uuid-generator?count=5