Overview
Intelligence X is an OSINT search engine API that lets you search historical and leaked data including emails, domains, IPs, URLs, and more from the dark web and other sources. It is designed for security researchers and investigators who need to pivot across data sources quickly. Access requires an API key and usage is metered based on the plan you choose.
Beginner Tip
Searches are asynchronous — first submit a search to get a search ID, then poll the results endpoint until the search completes. Always handle the "still searching" state in your code to avoid processing incomplete data.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Intelligence X",
"description": "Perform OSINT via Intelligence X",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
id Unique search ID used to retrieve results via the polling endpoint. status Search status code: 0 = success, 3 = still searching. records Array of matching records found across indexed data sources. records[].name File or source name where the match was found. records[].date Date the record was indexed by Intelligence X. Implementation Example
const url = "https://github.com/IntelligenceX/SDK/blob/master/";
// 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.