Overview
VulDB is a vulnerability database API that lets you query detailed information about security vulnerabilities, CVEs, and threat intelligence data. You can retrieve vulnerability entries by ID, search across their database, and even set up automated bots for continuous monitoring. It is a great resource for security researchers and developers building threat-tracking tools.
Beginner Tip
Start with a simple GET request using your API key to fetch a specific CVE entry by its VulDB ID. Keep in mind that the free tier has strict rate limits, so cache responses locally to avoid hitting the quota quickly.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from VulDB",
"description": "VulDB API allows to initiate queries for one or more items along with transactional bots",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
id Unique VulDB identifier for the vulnerability entry entry.title Human-readable title describing the vulnerability cve.id Official CVE identifier (e.g., CVE-2023-12345) if assigned cvss.score CVSS score from 0 to 10 indicating severity of the vulnerability entry.summary Brief description of the vulnerability and its potential impact affected.vendor Name of the vendor or organization whose software is affected Implementation Example
const url = "https://vuldb.com/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →Application Environment Verification
Application Environment Verification (AEV) is an Android library and API from FingerprintJS that checks whether a user device is safe to use.
BinaryEdge
BinaryEdge is a cybersecurity platform that continuously scans the entire internet and exposes the results through its API.
Botd
Botd is an open-source JavaScript library and API from FingerprintJS that detects whether a web visitor is a bot or a real human browser.
Bugcrowd
The Bugcrowd API gives you programmatic access to your organization's bug bounty program data, including submissions, rewards, and researcher profiles.
Censys
Censys is an internet-wide scanning platform that lets you search for any internet-connected host, device, or certificate using its REST API.