Darkrecon
Wildcard
Wildcard Author

Wildcard Author Name Search

Specifies the wildcard pattern for the author field.

WildcardAuthorName Payload

{
  "wildcards": {
    "wildcard_author": "*Jack Bakes*"
  }
}

Example

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