CVE Scraper API from Tenable

Access updated vulnerability data, CVSS and EPSS scores, and reference links, all scraped directly from Tenable.

What does this API offer?

Latest CVEs

Get a list of the 25 most recent vulnerabilities published by Tenable with the /api/cve endpoint.

Specific Details

Search for any CVE by its ID (e.g., /api/cve/CVE-2025-53766) to get complete details.

Easy to Use

A simple, authentication-free RESTful API. Just make GET requests and receive clean, structured JSON.

Try it Out

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"
        }
    }
    ...
    }