Delete subscription from a vulnerability

Use this endpoint to unfollow a certain Vulnerability, stopping IoC Stream and email notifications for new IoCs added to it.

Examples

Unfollow the Vulnerability with vulnerability--cve-2025-53164 identifier.

import requests

object_id = "vulnerability--cve-2025-53164"
url = f"https://www.virustotal.com/api/v3/collections/{object_id}/subscription_preferences"
headers = {
    "accept": "application/json","x-apikey": <api-key>
}
response = requests.delete(url, headers=headers)
Path Params
string
required

Vulnerability's ID

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