Wildcard Content Search
Specifies the wildcard pattern for the content field.
WildcardContent
Payload
{
"wildcards": {
"wildcard_content": " * for any character(s) and ? for a single character"
}
}
Example
import requests
url = 'https://api.darkrecon.cloud/dark-recon/search'
headers = {
'Authorization': 'your api key here',
'Content-Type': 'application/json'
}
data = {
"wildcards": {
"wildcard_content": " * for any character(s) and ? for a single character"
}
}
response = requests.post(url, headers=headers, json=data)
print(response.status_code)
print(response.json())