Password Generator API
The Password Generator API is a cryptographically secure solution for generating random passwords, passphrases, and PINs. Includes detailed strength analysis, entropy calculation, and crack time estimation. ## Core Features - **Password Generation**: Cryptographically secure random passwords (4-128 chars) - **Passphrase Generation**: Memorable word-based passwords (2-10 words) - **PIN…
Password Generator API endpoints
| Method | Endpoint | Description |
|---|---|---|
| Generation | ||
| POST |
generatePassphrase /api/password/passphrase |
Generate a passphrase |
| POST |
generateBulkPasswords /api/password/bulk |
Generate a batch of passwords at once. |
| POST |
generatePassword /api/password/generate |
Generate a password |
| POST |
generatePin /api/password/pin |
Generate a secure numeric PIN with optional repeat digit control. |
| Analysis | ||
| GET |
estimateCrackTime /api/password/crack-time |
Estimate how long it would take to crack a password under various attack scenarios. |
| POST |
checkPasswordStrength /api/password/strength |
Check the strength of a password |
| POST |
calculateEntropy /api/password/entropy |
Calculate the Shannon entropy of a password based on its character pool. |
| Validation | ||
| POST |
checkCommonPassword /api/password/check-common |
Check whether a password appears in a list of commonly used passwords. |
| POST |
validatePassword /api/password/validate |
Validate a password with various requirements |
| Info | ||
| GET |
healthCheck /health |
|
| GET |
getApiInfo / |
|
Password Generator API pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO Recommended | $9 / month | 500 / minute |
|
| ULTRA | $29 / month | 1000 / minute |
|
| MEGA | $99 / month | 5000 / minute |
|