Query Passwords for an Email Address

Query all cleartext passwords for a given email address.

Returns a list of passwords in the Enzoic database for a given email address.

get

/cleartext-credentials

Authorizations
Query parameters
usernamestringrequired

The email or SHA-256 hash of the lowercased email you wish to check credentials for

Example: test@enzoic.com
includeExposureDetailsinteger

(Optional) If this parameter is specified and non-zero, the results will include the exposure details inline, rather than just the IDs. In this case the exposures array in the response will contain an array of ExposureDetails objects

Example: 1
Responses
curl -L \
  --url 'https://api.enzoic.com/v1/cleartext-credentials?username=text' \
  --header 'Authorization: Basic username:password'
{
  "lastBreachDate": "2022-12-10T02:05:03.000Z",
  "passwords": [
    {
      "password": "password123",
      "hashType": 0,
      "salt": "text",
      "exposures": [
        {
          "id": "57dc11964d6db21300991b78",
          "title": "funsurveys.net",
          "entries": 5123,
          "date": "2015-05-01T00:00:00.000Z",
          "category": "Manufacturing",
          "source": "Cybercrime Forums",
          "passwordType": "Cleartext",
          "dateAdded": "2016-09-16T15:36:54.000Z",
          "domainsAffected": 683,
          "sourceFileCount": 1,
          "exposedData": [
            "Emails",
            "Passwords"
          ],
          "sourceURLs": [
            "https://www.someplace.com"
          ]
        }
      ]
    }
  ]
}

Last updated

Was this helpful?