Get a Dark Web Communication object

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)
Path Params
string
required

Dark Web Communication identifier.

Query Params
string

A comma-separated list of the communications attributes to be returned. (All attributes are returned by default.)

Headers
string
required

Your API key.

Responses

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json