jQuery Implementation
Password Request
$.getJSON("https://leakedpassword.com/api/?p={your-password}", function(data) {
console.log(data);
});
SHA1 Hash Request
$.getJSON("https://leakedpassword.com/api/?s={your-sha1-hash}", function(data) {
console.log(data);
});
Response
{
"password": {
"leak": true,
"hash": "7110eda4d09e062aa5e4a390b0a572ac0d2c0220",
"seen": 1256907
}
}