WhiteIntel API Documentation
  • WhiteIntel API
  • Authentication
  • Postman Collections
  • Webhooks
    • WhiteIntel Webhook API
    • Signature Validation
  • WhiteIntel API v2
    • Consumer Leaks API
  • Corporate Leaks API
  • Username Leaks API
  • IP Leaks API
  • Computer Leaks API
  • Get Leaks By ID API
  • Overall Stats API
  • Last Leaks API
  • Whiteintel API v1
    • Combolists API
      • ComboLists Username Leaks API
      • ComboLists Customer Leaks API
      • ComboLists Corporate Email Leaks API
      • Get IDs From Leaks
      • Get Customer Leaks by Id API
      • Get Corporate Leaks by Id API
      • Get Username Leaks by Id API
    • Infostealer API
      • Customer Leaks API
      • Corporate Email Leaks API
      • Username Leaks API
      • Password Leaks API
      • IP Leaks API
      • Hostname Leaks API
      • Get IDs From Leaks
      • Get Multiple Leaks By Ids
      • Get Leak by Id
    • Overall Stats API
    • Last Leaks API
Powered by GitBook
On this page
  • Parameters
  • Response Fields
  • Sample Request
  • Notes

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

This endpoint only available for Threat Intel licenses.

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.

PreviousComputer Leaks APINextOverall Stats API

Last updated 17 days ago