Password Leaks API
Last updated
{
"query": "12345",
"apikey": "yourapikey"
}{"breached":true}{"error":"Invalid type."}curl -X POST https://whiteintel.io/api/get_password_leaks.php \
-H "Content-Type: application/json" \
-d '{
"apikey": "yourapikey",
"query": "12345"
}'
import requests
url = "https://whiteintel.io/api/get_password_leaks.php"
payload = {
"apikey": "yourapikey",
"query": "12345"
}
headers = {
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
if response.status_code == 200:
print("Response:", response.json())
else:
print("Failed to retrieve customer leaks:", response.status_code, response.text)