Darkrecon
Search Queries
Domain

Domain Name Search

Filters results by the domain of the source.

DomainName Payload

{ "domain": "google.com" }

Example

import requests
 
url = 'https://api.darkrecon.cloud/dark-recon/search'
headers = {
  'Authorization': 'your api key here',
  'Content-Type': 'application/json'
}
data = { "domain": "google.com" }
 
response = requests.post(url, headers=headers, json=data)
 
print(response.status_code)
print(response.json())