get
https://www.virustotal.com/api/v3/ddw_communication_channels/
Use this endpoint to retrieve a Dark Web Communication Channel object by its unique identifier.
Examples
Retrieve the communication channel object with ID 5061d4801dcb13de593b4257734193eeb9f61595eccd99e7cc311c57e70833a1.
import requests
id = "5061d4801dcb13de593b4257734193eeb9f61595eccd99e7cc311c57e70833a1"
url = f"https://www.virustotal.com/api/v3/ddw_communication_channels/{id}"
headers = {
"accept": "application/json",
"x-apikey": <api-key>
}
response = requests.get(url, headers=headers)Retrieve only the URL and description attributes for communication channel with ID 5118255fbf18cf3bd85182016101efaa2f6e286e73fde3b0fa2c84c2fee27de1.
import requests
id = "5118255fbf18cf3bd85182016101efaa2f6e286e73fde3b0fa2c84c2fee27de1"
attributes = "url,description"
url = f"https://www.virustotal.com/api/v3/ddw_communication_channels/{id}?attributes={attributes}"
headers = {
"accept": "application/json",
"x-apikey": <api-key>
}
response = requests.get(url, headers=headers)
