Get IDs From Leaks

This API endpoint is designed for returning list of Ids associated with a domain address in combolist data sets.

Endpoint

POST /api/combolists/ids_from_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 domain.com)

apikey

string

Yes

N/A

Your API key.

limit

int

N/A

100

Maximum value 1000

start_id

int

N/A

0

start id of the records

end_id

int

N/A

N/A

end id of the records

full_stats

int

N/A

0

This option includes full stats (total number of ids, minimum id and maximum id)

leak_type

string

Yes

customer

Leak type. customer, corporate or username

Sample Request

Request URL

POST /api/combolists/get_ids_from_leaks.php

{
    "apikey": "yourapikey"
    "query": "exampledomain.com",
    "full_stats": 1,
    "leak_type": "customer"
    
}

Example Success Response

{"total_results_returned":55,"remaining_daily_api_calls":467,"id_values":[876971,26021309,36311149,503078514,510483414,525001678,525990451,526970605,596740937,649549823,650958787,660376419,662460305,828254786,1018287887,1086729837,1134875135,1135279022,1162517112,1162588579,1166699444,1183951003,1208994198,1218170175,1234952924,1250669578,1332453017,1354013854,1365207290,1414732894,1468766452,1503855668,1577713118,1585785237,1605671666,1755689038,1976246225,2085130647,2211845843,2213288597,2214424843,2270925194,2340249234,2340551598,2341286777,2343421827,2345331724,2345533257,2348679766,2353130876,2354102879,2373234306,2403845099,2415149649,2422267155],"max_id":2422267155,"min_id":876971,"total_ids":55}

Example Error Response

{"error":"Invalid type."}

Code Examples

Example with Curl

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

Example with Python


import requests

url = "https://whiteintel.io/api/combolists/get_ids_from_leaks.php"
payload = {
           "apikey": "yourapikey",
           "query": "exampledomain.com",
           "full_stats": 1,
           "leak_type": "customer"
}
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 ids:", response.status_code, response.text)

Last updated