User Intel | Node.js SDK
Look up breached passwords
passwordBreached(hashType: HashType, hashPrefix: string, options: BreachedOptions): Promise<PangeaResponse<BreachedResult>>Find out if a password has been exposed in security breaches by providing a 5 character prefix of the password hash.
const options = {provider: "spycloud", verbose: true, raw: true };
const response = await userIntel.passwordBreached(Intel.HashType.SHA256, "5baa6", options);
Look up breached users
userBreached(request: BreachedRequest): Promise<PangeaResponse<BreachedResult>>Find out if an email address, username, phone number, or IP address was exposed in a security breach.
const request = {phone_number: "8005550123", verbose: true, raw: true };
const response = await userIntel.userBreached(request);