Threat Actor Search
Filters results by the Threat Actor of the leaks.
ThreatActor
Payload
{ "threat_actor": "Joe Trumph" }
Example
import requests
url = 'https://api.darkrecon.cloud/dark-recon/leaks'
headers = {
'Authorization': 'your api key here',
'Content-Type': 'application/json'
}
data = { "threat_actor": "Joe Trumph" }
response = requests.post(url, headers=headers, json=data)
print(response.status_code)
print(response.json())