Chat Data Title Filter
Filter the responses by chat title name. Very similar to Group/Channel Name. It specifically returns the objects which has the specific title inside the chat_data
object
ChatDataTitle
Payload
{
"chat_data_title": "White House"
}
Example
import requests
url = 'https://api.darkrecon.cloud/dark-recon/telegram'
headers = {
'Authorization': 'your api key here',
'Content-Type': 'application/json'
}
data = {
"chat_data_title": "White House"
}
response = requests.post(url, headers=headers, json=data)
print(response.status_code)
print(response.json())