Password Generator
Generate cryptographically secure random passwords
Password will contain letters, numbers, and symbols
API · SAME JOB, YOUR MACHINE
# Generate secure password
curl -X POST https://api-uat.open-tools.app/api/upload \
-F "file=@dummy.txt" \
-F "job_type=password-generator" \
-F "length=16"
# Response: {"job_id": "abc-123", "status": "queued"}
# Connect to WebSocket for status updates
# wss://api-uat.open-tools.app/ws/{job_id}
# Download result when completed
curl -X GET https://api-uat.open-tools.app/api/download/{file_id}