Leaks
Search Queries
Should Keywords

Should Keywords Search

Filters results by the Should Keywords of the leaks.

ShouldKeywords Payload

{ "should_keywords": ["United States", "2024"] }

Example

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