Get a Dark Web Communication Channel object

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

Dark Web Communication Channel identifier.

Query Params
string

A comma-separated list of the communication channel 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