Overview
Spyse (now part of SecurityTrails) is an internet asset search engine that provides comprehensive data on domains, IPs, SSL certificates, and autonomous systems. It is designed for attack surface management and security research, letting you enumerate an organization's internet-facing infrastructure. Note: Spyse has been integrated into SecurityTrails, so check SecurityTrails for the latest API access.
Beginner Tip
If you find that Spyse API endpoints return errors, check the SecurityTrails documentation as Spyse was acquired and merged into SecurityTrails in 2022.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Spyse",
"description": "Access data on all Internet assets and build powerful attack surface management applications",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
data Top-level container for the queried entity's details. data.items List of matching records returned for the search query. context Pagination context including total_count and page information. data.items[].name Domain or hostname for this result entry. data.items[].dns_records Current DNS records associated with the domain. Implementation Example
const url = "https://spyse-dev.readme.io/reference/quick-start";
// 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.