Forum Name Search
Filters results by the name of the forum.
ForumName
Payload
{ "forum_name": "xss" }
Example
import requests
url = 'https://api.darkrecon.cloud/dark-recon/search'
headers = {
'Authorization': 'your api key here',
'Content-Type': 'application/json'
}
data = { "forum_name": "xss" }
response = requests.post(url, headers=headers, json=data)
print(response.status_code)
print(response.json())