CVE Scraper API from Tenable
Access updated vulnerability data, CVSS and EPSS scores, and reference links, all scraped directly from Tenable.
Access updated vulnerability data, CVSS and EPSS scores, and reference links, all scraped directly from Tenable.
Get a list of the 25 most recent vulnerabilities published by Tenable with the /api/cve endpoint.
Search for any CVE by its ID (e.g., /api/cve/CVE-2025-53766) to get complete details.
A simple, authentication-free RESTful API. Just make GET requests and receive clean, structured JSON.
Get the latest CVE with a simple request:
$ curl http://127.0.0.1:5000/api/cve/last
{
"id": "CVE-2025-ZZZZZ",
"description": "Full details of the most recent CVE...",
"metrics": {
"cvss_v3": {
"base_score": 9.8,
"severity": "Critical"
}
}
...
}