Get objects related to a vulnerability

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 the names and descriptions of all the objects associated to the Follina vulnerability vulnerability--cve-2022-30190

import requests
import urllib

object_id = "vulnerability--cve-2022-30190"
relationship = "associations"
relationship_attributes = "name,description"
url = f"https://www.virustotal.com/api/v3/collections/{object_id}?relationships={relationship}&relationship_attributes={relationship_attributes}"
headers = {"accept": "application/json","x-apikey": <api-key>}
response = requests.get(url, headers=headers)
Path Params
string
required

Vulnerability's ID

string
required

Relationship name (see table)

Query Params
int32
0 to 40
Defaults to 10

Maximum number of related objects to retrieve

string

Continuation cursor

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