Darkrecon
Search Queries
Must And Content Keywords

Must AND Content Keywords Search

Specifies keywords that must be present in the content (AND condition).

MustANDContentKeywords Payload

{ "must_and_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_and_content_keywords": ["Stripe", "Sofi"] }
 
response = requests.post(url, headers=headers, json=data)
 
print(response.status_code)
print(response.json())