diff --git a/lib/hunterService.js b/lib/hunterService.js index 6b84417..684379d 100644 --- a/lib/hunterService.js +++ b/lib/hunterService.js @@ -1,7 +1,7 @@ // lib/hunterService.js const axios = require('axios'); -async function searchDomain(domain, apiKey, limit = 20) { +async function searchDomain(domain, apiKey, limit = 10) { try { const response = await axios.get('https://api.hunter.io/v2/domain-search', { params: { @@ -20,4 +20,5 @@ async function searchDomain(domain, apiKey, limit = 20) { module.exports = { searchDomain -}; \ No newline at end of file + +};