Group OR Channel Filter
Filter the responses by the type, either Group OR Channel \
Available types are:
group
channel
TypeofSource
Payload
{
"chat_type": "channel"
}
Example
import requests
url = 'https://api.darkrecon.cloud/dark-recon/telegram'
headers = {
'Authorization': 'your api key here',
'Content-Type': 'application/json'
}
data = {
"chat_type": "channel"
}
response = requests.post(url, headers=headers, json=data)
print(response.status_code)
print(response.json())