Wildcard Threat Actor Search
Specifies the wildcard pattern for the Threat Actor field. We encourage you to look at the Wildcard Info
and build your own wildcard payload.
WildcardThreatActor
Payload
{
"wild_cards":{
"wildcard_threat_actor":"iZda*"
}
}
Example
import requests
url = 'https://api.darkrecon.cloud/dark-recon/combolists'
headers = {
'Authorization': 'your api key here',
'Content-Type': 'application/json'
}
data = {
"wild_cards":{
"wildcard_threat_actor":"iZda*"
}
}
response = requests.post(url, headers=headers, json=data)
print(response.status_code)
print(response.json())