get
https://www.virustotal.com/api/v3/ddw_communications/
Use this endpoint to retrieve a Dark Web Communication object by its unique identifier.
Examples
Retrieve the communication object with ID 616a132d-f942-4165-b132-60eca4348c54.
import requests
id = "616a132d-f942-4165-b132-60eca4348c54"
url = f"https://www.virustotal.com/api/v3/ddw_communications/{id}"
headers = {"accept": "application/json","x-apikey": <api-key>}
response = requests.get(url, headers=headers)Retrieve only the content and content_translated attributes for communication ID 4a65a7e7-9f3f-4d1c-8b93-e85fc356b780.
import requests
id = "4a65a7e7-9f3f-4d1c-8b93-e85fc356b780"
attributes = "content,content_translated"
url = f"https://www.virustotal.com/api/v3/ddw_communications/{id}?attributes={attributes}"
headers = {"accept": "application/json","x-apikey": <api-key>}
response = requests.get(url, headers=headers)