Darkrecon
Search Queries
Must Or Content Keywords

Must OR Content Keywords Search

Specifies keywords where at least one must be present in the content (OR condition).

MustORContentKeywords Payload

{ "must_or_content_keywords": ["Stripe", "Sofi"] }

Example

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