Skip to main content

ToolLaunchpad API

Lightweight JSON endpoints for selected utilities. No auth required for this MVP.

Available Endpoints

GET /api/password-generator

Generate a password with configurable options.

/api/password-generator?length=16&includeUppercase=true&includeLowercase=true&includeNumbers=true&includeSymbols=true

GET /api/base64-encode

Encode plain text to Base64.

/api/base64-encode?text=hello%20world

Also supports POST JSON body:

{ "text": "hello world" }

GET /api/uuid-generator

Generate one or more UUID values.

/api/uuid-generator?count=5

Related Tools