v1

latestOpenAPI 3.0.02026-07-14198572488.4 KB
Password Strength

Check strength of the given password.

For a given password, return information about its strength.

post/v1/password_strength

Request body

passwordstring

Password to check the strength of

Example request

{
  "password": "R3@llyStr0ng!P@55w0rd_123456"
}

Response

OK

successboolean

whether the request succeeded

errorsstring[]
messagesstring[] nullable

Example response

{
  "success": true,
  "errors": [],
  "messages": [],
  "result": {
    "strength": 90,
    "strong": true
  }
}