Leaks
Wildcard
Wildcard Leak ID

Wildcard Leak ID Search

Specifies the wildcard pattern for the LeakId field. We encourage you to look at the Wildcard Info and build your own wildcard payload.

WildcardLeakId Payload

{ "wildcard_leak_id": " * for any character(s) and ? for a single character" }

Example

import requests
 
url = 'https://api.darkrecon.cloud/dark-recon/leaks'
headers = {
  'Authorization': 'your api key here',
  'Content-Type': 'application/json'
}
data = { "wildcard_leak_id": " * for any character(s) and ? for a single character" }
 
response = requests.post(url, headers=headers, json=data)
 
print(response.status_code)
print(response.json())