ComboLists Username Leaks API
Combolists Username Leaks API
Description
The Username Leaks API allows users to retrieve leaks associated with a specific username (e.g., [email protected] or a direct username such as admin). The request must include the query parameter and apikey. Other parameters are optional and can be used to include system information of compromised devices or to specify a custom date range.
Endpoint
POST /api/combolists/v2/get_username_leaks.php
Required Headers
Content-Type
Must be set to application/json
Parameters
apikey
string
Yes
N/A
Your API key.
limit
int
No
20
Affects have many results return for query. Max value 100.
start_id
int
No
N/A
To restrict results to start from given id.
boolean
int
No
0
Set to 1 to return true if the user was breached, otherwise false.
Sample Request
Request URL
POST /api/combolists/v2/get_username_leaks.php
{
"query": "[email protected]",
"limit": 100,
}
Example Success Response
{"total_leaks":2,"remaining_daily_api_calls":176,"data":[{"url":"https:\/\/outlook.microsoftonline.com\/","username":"[email protected]","password":"123*****"}]}
Example Error Response
{"error":"Invalid type."}
Code Examples
Example with Curl
curl -X POST https://whiteintel.io/api/combolists/v2/get_username_leaks.php \
-H "Content-Type: application/json" \
-d '{
"apikey": "yourapikey",
"query": "[email protected]"
}'
Example with Python
import requests
url = "https://whiteintel.io/api/combolists/v2/get_username_leaks.php"
payload = {
"apikey": "yourapikey",
"query": "[email protected]"
}
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)
Last updated