CVE Lookup API - NVD Vulnerability Details & CVSS Score avatar

CVE Lookup API - NVD Vulnerability Details & CVSS Score

Pricing

$20.00 / 1,000 cve looked ups

Go to Apify Store
CVE Lookup API - NVD Vulnerability Details & CVSS Score

CVE Lookup API - NVD Vulnerability Details & CVSS Score

CVE lookup API backed by the official NVD database. Input: cveIds (array, e.g. CVE-2024-3094). Output: JSON per CVE with description, CVSS score and severity, affected products (CPEs), and reference links. Built for security agents; pennies per CVE looked up.

Pricing

$20.00 / 1,000 cve looked ups

Rating

0.0

(0)

Developer

Anthony Snider

Anthony Snider

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

CVE Vulnerability Lookup

Look up any CVE by ID straight from the official NVD database — description, CVSS score & severity, CWE, affected products, and references in clean JSON.

Live on the Apify Store — run it instantly or call it as an agent tool via Apify MCP.

What you get

For each CVE id you pass:

  • description — the official NVD English summary
  • cvss — base score (0–10) plus severity (LOW/MEDIUM/HIGH/CRITICAL), vector, and CVSS cvssVersion (3.1 → 3.0 → 2.0 fallback)
  • cwe — weakness classifications (e.g. CWE-502)
  • published / modified — NVD timestamps and status
  • affectedCpes — affected product CPE strings
  • references — vendor advisories, patches, and writeups

Accepts a single cve or a bulk cves array. Invalid ids and not-found CVEs are reported per-item, so one bad input never breaks the run. NVD rate limits are handled with automatic backoff.

Input

{
"cve": "CVE-2021-44228",
"cves": ["CVE-2014-0160"],
"maxItems": 25
}

Output

{
"cve": "CVE-2021-44228",
"found": true,
"description": "Apache Log4j2 ... JNDI features ... do not protect against attacker controlled LDAP ...",
"cvss": 10.0,
"cvssVersion": "3.1",
"severity": "CRITICAL",
"vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H",
"cwe": ["CWE-502", "CWE-400", "CWE-20"],
"published": "2021-12-10T10:15:09.143",
"modified": "2023-11-07T03:17:14.683",
"status": "Analyzed",
"affectedCpes": ["cpe:2.3:a:apache:log4j:2.0:*:*:*:*:*:*:*"],
"references": ["https://logging.apache.org/log4j/2.x/security.html"]
}