hunter.json•4.51 kB
{
"nodeType": "n8n-nodes-base.hunter",
"displayName": "Hunter",
"description": "Consume Hunter API",
"version": 1,
"properties": [
{
"name": "operation",
"displayName": "Operation",
"type": "options",
"default": "domainSearch",
"description": "Get every email address found on the internet using a given domain name, with sources",
"options": [
{
"name": "Domain Search",
"value": "domainSearch",
"description": "Get every email address found on the internet using a given domain name, with sources"
},
{
"name": "Email Finder",
"value": "emailFinder",
"description": "Generate or retrieve the most likely email address from a domain name, a first name and a last name"
},
{
"name": "Email Verifier",
"value": "emailVerifier",
"description": "Verify the deliverability of an email address"
}
]
},
{
"name": "domain",
"displayName": "Domain",
"type": "string",
"default": "",
"description": "Domain name from which you want to find the email addresses. For example, \"stripe.com\".",
"required": true,
"displayOptions": {
"show": {
"operation": [
"domainSearch"
]
}
}
},
{
"name": "onlyEmails",
"displayName": "Only Emails",
"type": "boolean",
"default": true,
"description": "Whether to return only the found emails",
"displayOptions": {
"show": {
"operation": [
"domainSearch"
]
}
}
},
{
"name": "returnAll",
"displayName": "Return All",
"type": "boolean",
"default": false,
"description": "Whether to return all results or only up to a given limit",
"displayOptions": {
"show": {
"operation": [
"domainSearch"
]
}
}
},
{
"name": "limit",
"displayName": "Limit",
"type": "number",
"default": 100,
"description": "Max number of results to return",
"typeOptions": {
"minValue": 1,
"maxValue": 100
},
"displayOptions": {
"show": {
"operation": [
"domainSearch"
],
"returnAll": [
false
]
}
}
},
{
"name": "filters",
"displayName": "Filters",
"type": "collection",
"default": {},
"placeholder": "Add Filter",
"displayOptions": {
"show": {
"operation": [
"domainSearch"
]
}
}
},
{
"name": "firstname",
"displayName": "First Name",
"type": "string",
"default": "",
"description": "The person's first name. It doesn't need to be in lowercase.",
"required": true,
"displayOptions": {
"show": {
"operation": [
"emailFinder"
]
}
}
},
{
"name": "lastname",
"displayName": "Last Name",
"type": "string",
"default": "",
"description": "The person's last name. It doesn't need to be in lowercase.",
"required": true,
"displayOptions": {
"show": {
"operation": [
"emailFinder"
]
}
}
},
{
"name": "email",
"displayName": "Email",
"type": "string",
"default": "",
"description": "The email address you want to verify",
"placeholder": "name@email.com",
"required": true,
"displayOptions": {
"show": {
"operation": [
"emailVerifier"
]
}
}
}
],
"credentialsConfig": [
{
"name": "hunterApi",
"required": true
},
{
"name": "operation",
"required": false
},
{
"name": "domain",
"required": true
},
{
"name": "seniority",
"required": false
},
{
"name": "department",
"required": false
},
{
"name": "domain",
"required": true
}
],
"io": {
"inputs": [
"Main"
],
"outputs": [
"Main"
],
"outputNames": [],
"hints": {}
},
"wiring": {
"role": "generic",
"requires": [],
"optional": [],
"consumedBy": [],
"consumes": [
"Main"
],
"produces": [
"Main"
]
}
}