get https://www.virustotal.com/api/v3/collections/
Special privileges required
Vulnerability Intelligence is only available to users with the Google Threat Intelligence (Google TI) Enterprise or Enterprise Plus licenses.
This endpoint returns a Vulnerability object.
Examples
Get a vulnerability report.
import requests
import urllib
object_id = "vulnerability--cve-2022-30190"
url = f"https://www.virustotal.com/api/v3/collections/{object_id}"
headers = {"accept": "application/json","x-apikey": <api-key>}
response = requests.get(url, headers=headers)