CVE Lookup API • Live on Signet test network only

Look up CVEs in one call.

Query a CVE ID and get normalized vulnerability data for severity, CVSS, CWE, KEV signal, published dates, and references. Built for security agents, triage, and reporting workflows.

3 sats / call
POST /api/cve-lookup
NVD-backed lookup

What It Does

ArkAPI CVE Lookup returns a clean JSON view of a specific CVE. It is designed for bots, analysts, and reporting pipelines that need direct vulnerability context without scraping advisory pages or wiring up multiple upstream sources.

Result Shape

The response is designed for triage and reporting, not just raw storage. ArkAPI surfaces the fields that matter most when an agent or analyst needs to quickly decide whether a vulnerability deserves attention.

Example Request

curl -X POST https://arkapi.dev/api/cve-lookup \ -H "Authorization: Bearer ak_your_token" \ -H "Content-Type: application/json" \ -d '{"cve":"CVE-2024-3400"}' | jq

Example Response

{ "success": true, "data": { "cve_id": "CVE-2024-3400", "severity": "CRITICAL", "cvss_score": 10.0, "cwes": [ "CWE-77" ], "has_kev": true, "published": "2024-04-12T00:00:00Z", "last_modified": "2024-04-18T00:00:00Z", "description": "Command injection vulnerability in PAN-OS GlobalProtect.", "references": [ "https://nvd.nist.gov/vuln/detail/CVE-2024-3400" ] }, "cost_sats": 3, "response_ms": 210, "endpoint": "/api/cve-lookup" }

Good Uses

For broader platform usage, see the main docs and the live catalog.

Good Inputs

Discovery