Skip to content

Secure Password Generator

Heavstal Keygen creates cryptographically secure passwords. Unlike standard random generators, this uses high-entropy randomness suitable for production security keys and user credentials.

POST /password-generator

FieldTypeRequiredDescription
lengthnumberNoLength of the password (Min: 4, Max: 128, Default: 16).
uppercasebooleanNoInclude A-Z? (Default: true).
numbersbooleanNoInclude 0-9? (Default: true).
symbolsbooleanNoInclude !@#$%…? (Default: true).
const res = await fetch('https://heavstal.com.ng/api/v1/password-generator', {
method: 'POST',
headers: { 'x-api-key': 'YOUR_KEY' },
body: JSON.stringify({ length: 24, symbols: false })
});
{
"status": "success",
"creator": "HEAVSTAL TECH",
"data": {
"password": "x9L2mP5q...",
"length": 24,
"entropy_bits": 142
}
}