Back to Blog
Automating CVE Monitoring with the BrilliantDog API
Tutorial

Automating CVE Monitoring with the BrilliantDog API

Austen
December 28, 2025
1 min read

Learn how to leverage the BrilliantDog API to build custom alerts and integrate vulnerability data into your existing workflows.

#api#automation#devsecops#python

def check_new_cves(vendor, product): url = "https://api.brilliantdog.io/v1/cves" params = { "vendor": vendor, "product": product, "min_cvss": 9.0, "published_since": "24h" } response = requests.get(url, params=params) return response.json()

Check for critical Chrome issues

alerts = check_new_cves("google", "chrome") if alerts: send_slack_notification(alerts)

Views: 133

Back to Blog