Skip to content

Password Strength Auditor

This API analyzes passwords, provides a score (0-4), estimated cracking time, and actionable feedback to improve security.

POST /api/v1/password-strength

The following parameters are accepted in the request body:

FieldTypeRequiredDescription
passwordstringYesThe password string to analyze.
Terminal window
curl -X POST https://heavstal.com.ng/api/v1/password-strength \
-H "Content-Type: application/json" \
-H "x-api-key: <YOUR_API_KEY>" \
-d '{"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"]
}
}
}