Skip to content

Password Strength Auditor

Heavstal Security Engine analyzes passwords using entropy calculations and dictionary matching (zxcvbn). It provides a score (0-4), estimated cracking time, and actionable feedback to improve security.

POST /password-strength

FieldTypeRequiredDescription
passwordstringYesThe password string to analyze.
const res = await fetch('https://heavstal.com.ng/api/v1/password-strength', {
method: 'POST',
headers: { 'x-api-key': 'YOUR_KEY' },
body: JSON.stringify({ password: 'password123' })
});
{
"status": "success",
"creator": "HEAVSTAL TECH",
"data": {
"score": 0,
"verdict": "Very Weak",
"crack_time": "Instant",
"feedback": {
"warning": "This is a top-10 common password",
"suggestions": ["Add another word or two", "Avoid common phrases"]
}
}
}