Password Strength Checker API — Evaluate Password Security in Real-Time
Check password strength with entropy calculation, common password detection, character set analysis, and length scoring. Get actionable feedback to improve password security. Free API.
What is Password Strength Checking?
Password strength checking evaluates how resistant a password is to guessing and brute-force attacks. The API checks minimum length, character variety (uppercase, lowercase, digits, symbols), entropy, repetition patterns, and compares against common password lists. Returns a score from 0-100 with specific improvement suggestions.
How to Use It
Call GET /api/v1/password-strength?password=MyP@ss123. Returns { score: number, strength: string, entropy: number, length: number, has_upper: boolean, has_lower: boolean, has_digit: boolean, has_symbol: boolean, common_password: boolean, feedback: string[] }.