Overview
Pulsedive is a threat intelligence platform that lets you look up IPs, domains, and URLs to see if they are associated with malicious activity. It aggregates data from many feeds and returns risk scores, threat categories, and historical indicators. It's useful for building security monitoring tools or enriching security alerts with context.
Beginner Tip
Use the /api/info.php endpoint with the indicator parameter to look up a single IP or domain — a free API key gives you more requests per day than anonymous access.
Available Data
Example Response
{
"url": "https://example.com",
"safe": true,
"threat_level": "none",
"categories": [
"clean"
],
"scan_date": "2025-01-15T10:00:00Z"
} Field Reference
iid Internal Pulsedive ID for this indicator. indicator The IP address, domain, or URL that was looked up. type Indicator type: ip, domain, or url. risk Overall risk level: none, low, medium, high, or critical. threats List of threat names associated with this indicator (e.g., botnet, malware). feeds Threat intelligence feeds that flagged this indicator. Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://pulsedive.com/api/";
// 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.