get
https://www.virustotal.com/api/v3/collections//
This endpoint returns available Vulnerability's relationships that are described in the Vulnerability object documentation.
Examples
Get 5 files related to the vulnerability--cve-2024-6387 vulnerability
import requests
import urllib
object_id = "vulnerability--cve-2024-6387"
relationship = "files"
limit = 10
url = f"https://www.virustotal.com/api/v3/collections/{object_id}/{relationship}?limit={limit}"
headers = {"accept": "application/json","x-apikey": <api-key>}
response = requests.get(url, headers=headers)Get all the objects associated to the Follina vulnerability vulnerability--cve-2022-30190
import requests
import urllib
object_id = "vulnerability--cve-2022-30190"
relationship = "associations"
url = f"https://www.virustotal.com/api/v3/collections/{object_id}/{relationship}"
headers = {"accept": "application/json","x-apikey": <api-key>}
response = requests.get(url, headers=headers)