Darkrecon
Search Queries
URL

URL Name Search

Filters results by the URL.

URL Payload

{ "url": "google.com/abc/def" }

Example

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