hunter_domain_search
Locate email addresses associated with a specific domain or company name, with options to filter by type, limit results, and skip entries.
Instructions
Find all the email addresses corresponding to a website or company name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
company | No | The company name to search for (alternative to domain) | |
domain | No | The domain name to search for, e.g. "stripe.com" | |
limit | No | The maximum number of emails to return (default: 10, max: 100) | |
offset | No | The number of emails to skip (default: 0) | |
type | No | The type of emails to return (personal or generic) |
Input Schema (JSON Schema)
{
"properties": {
"company": {
"description": "The company name to search for (alternative to domain)",
"type": "string"
},
"domain": {
"description": "The domain name to search for, e.g. \"stripe.com\"",
"type": "string"
},
"limit": {
"description": "The maximum number of emails to return (default: 10, max: 100)",
"type": "number"
},
"offset": {
"description": "The number of emails to skip (default: 0)",
"type": "number"
},
"type": {
"description": "The type of emails to return (personal or generic)",
"type": "string"
}
},
"required": [],
"type": "object"
}