Get Leaks By ID API

This endpoint can be used for all related leaks related to given system_id.

Endpoint: https://api.whiteintel.io/get_leaks_by_id.php Method: POST Content-Type: application/json

Parameters

Parameter

Required

Default

Description

apikey

Yes

N/A

Your API Key

query

Yes

N/A

Integer value of log_id. This value can be obtained from the results of consumer, corporate, email, IP and Computer Leaks API.

Response Fields

Response Key

Response Values

success

true or false

remaining_daily_calls

Integer

results

Array of returned results. See below for example "results": { "compromised_device_information": { "hostname": "target_computer_name", "username": "target_user_name", "ip": "target_ip", "malware_path": "malware_path", "anti_virus": "anti_virus", "country": "country_code", "log_date": "2024-12-28" }, "compromised_credentials": [ { "url": "target_url", "username": "leaked_user", "password": "leaked_password" }, { "url": "target_url", "username": "leaked_user", "password": "leaked_password" } ] } }

Full Sample Result

{ "success": true, "remaining_daily_calls": 1974, "results": { "compromised_device_information": { "hostname": "target_computer_name", "username": "target_user_name", "ip": "target_ip", "malware_path": "malware_path", "anti_virus": "anti_virus", "country": "country_code", "log_date": "2024-12-28" }, "compromised_credentials": [ { "url": "target_url", "username": "leaked_user", "password": "leaked_password" }, { "url": "target_url", "username": "leaked_user", "password": "leaked_password" } ] } }

Sample Request

curl --location 'https://api.whiteintel.io/get_leaks_by_id.php' \
--header 'Content-Type: application/json' \
--data '{
           "apikey": "YOUR API KEY",
           "query": 1337
     
}'

Notes

  • Replace "YOUR API KEY" with your actual API key.

  • query should be a valid log_id(e.g., 1337) obtained from other endpoints.

Last updated