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
  • Description
  • Endpoint
  • Required Headers
  • Parameters
  • Sample Request
  • Code Examples
  1. Whiteintel API v1
  2. Combolists API

Get Corporate Leaks by Id API

Get Leaks by ID API

Description

This API endpoint allows users to retrieve corporate leaks associated with given set of ids from combolist data sets.

Endpoint

POST /api/combolists/v2/get_corporate_leaks_by_id.php

Required Headers

Name
Description

Content-Type

Must be set to application/json

Parameters

Name
Type
Required
Default
Description

query

string

Yes

N/A

The query to search for leaks (e.g domain.com)

apikey

string

Yes

N/A

Your API key.

ids

array

Yes

N/A

Array of ID values to retrieve results.

Maximum length of array is 100 items.

Sample Request

Request URL

POST /api/combolists/v2/get_corporate_leaks_by_id.php

{
    "query": "exampledomain.com",
    "ids": [876971,26021309,36311149,503078514]
    
}

Example Success Response

{"results":[{"id":876971,"url":"","username":"","password":""}],"remaining_calls":470}

Example Error Response

{"error":"Invalid type."}

Code Examples

Example with Curl

curl -X POST https://whiteintel.io/api/combolists/v2/get_corporate_leaks_by_id.php \
     -H "Content-Type: application/json" \
     -d '{
           "apikey": "yourapikey",
           "query": "exampledomain.com",
           "ids": [876971,26021309,36311149,503078514]
           
         }'

Example with Python


import requests

url = "https://whiteintel.io/api/combolists/v2/get_corporate_leaks_by_id.php"
payload = {
    "apikey": "yourapikey",
    "query": "exampledomain.com",
    "ids": [876971,26021309,36311149,503078514]
}
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 by id:", response.status_code, response.text)
PreviousGet Customer Leaks by Id APINextGet Username Leaks by Id API

Last updated 1 month ago