Map an organization's attack surface by discovering all public subdomains.
Organizations often lose track of all their public-facing assets. Forgotten subdomains become security vulnerabilities.
Enumerate all subdomains to identify the complete attack surface for security assessment.
const res = await fetch("https://api.apiverve.com/v1/subdomainfinder?domain=google.com&limit=5", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);