hunter_find_email
Locate professional email addresses by providing a domain and individual details such as name or company. Ideal for targeted outreach and networking.
Instructions
Find an email address using domain and name information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
company | No | The name of the company | |
domain | Yes | The domain name of the company, e.g. "stripe.com" | |
first_name | No | The first name of the person | |
full_name | No | The full name of the person (alternative to first_name and last_name) | |
last_name | No | The last name of the person |
Input Schema (JSON Schema)
{
"properties": {
"company": {
"description": "The name of the company",
"type": "string"
},
"domain": {
"description": "The domain name of the company, e.g. \"stripe.com\"",
"type": "string"
},
"first_name": {
"description": "The first name of the person",
"type": "string"
},
"full_name": {
"description": "The full name of the person (alternative to first_name and last_name)",
"type": "string"
},
"last_name": {
"description": "The last name of the person",
"type": "string"
}
},
"required": [
"domain"
],
"type": "object"
}