Password Strength
Check strength of the given password.
For a given password, return information about its strength.
post/v1/password_strength
Request body
Example request
{
"password": "R3@llyStr0ng!P@55w0rd_123456"
}Response
OK
Example response
{
"success": true,
"errors": [],
"messages": [],
"result": {
"strength": 90,
"strong": true
}
}