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

ComboLists Corporate Email Leaks API

Combolists Username Leaks API

Description

The Corporate Email Leaks API allows users to retrieve leaks associated with a specific email extension (e.g., [@]example.com). The request must include the query parameter and apikey.

Endpoint

POST /api/combolists/v2/get_corporate_email_leaks.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., test@example.com) Must be in email format.

apikey

string

Yes

N/A

Your API key.

limit

int

No

20

Affects have many results return for query. Max value 500.

start_id

int

No

N/A

To restrict results to start from given id.

Sample Request

Request URL

POST /api/combolists/v2/get_corporate_leaks.php

{
    "query": "exampledomain.com",
    "limit": 100,
    
}

Example Success Response

{"total_leaks":2,"remaining_daily_api_calls":176,"data":[{"url":"https:\/\/login.exampledomain.com\/","username":"sampleuser@exampledomain.com","password":"123*****"}]}

Example Error Response

{"error":"Invalid type."}

Code Examples

Example with Curl

curl -X POST https://whiteintel.io/api/combolists/v2/get_corporate_email_leaks.php \
     -H "Content-Type: application/json" \
     -d '{
           "apikey": "yourapikey",
           "query": "exampledomain.com"
         }'

Example with Python


import requests

url = "https://whiteintel.io/api/combolists/v2/get_corporate_email_leaks.php"
payload = {
    "apikey": "yourapikey",
    "query": "exampledomain.com"
}
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)
PreviousComboLists Customer Leaks APINextGet IDs From Leaks

Last updated 1 month ago