Components
Hunter
Hunter is a tool that helps users find and verify professional email addresses, enabling effective outreach and communication.
Hunter is a tool that helps users find and verify professional email addresses, enabling effective outreach and communication.
Type: hunter/v1
Connections
Version: 1
API Key
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
key | Key | STRING | true | |
value | Value | STRING | true |
Actions
Email Enrichment
Name: emailEnrichment
Returns all the information associated with an email address, such as a person's name, location and social handles.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
Email Address | STRING | The email address name for which you to find associated information. | true |
Example JSON Structure
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
data | OBJECT Properties{STRING(id), {STRING(fullName), STRING(givenName), STRING(familyName)}(name), STRING(email), STRING(location), {STRING(city), STRING(state), INTEGER(stateCode), STRING(country), STRING(countryCode), NUMBER(lat), NUMBER(lng)}(geo), {STRING(email)}(meta)} |
Output Example
Company Enrichment
Name: companyEnrichment
Returns all the information associated with a domain name, such as the industry, the description, or headquarters' location.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
domain | Domain | STRING | The domain name for which you to find associated information. | true |
Example JSON Structure
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
data | OBJECT Properties{STRING(id), STRING(name), STRING(legalName), STRING(domain), STRING(description), INTEGER(foundedYear), STRING(location), STRING(timeZone), STRING(logo), STRING(emailProvider), STRING(phone), {STRING(domain)}(meta)} |
Output Example
Combined Enrichment
Name: combinedEnrichment
Returns all the information associated with an email address and its domain name.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
Email Address | STRING | The email address name for which you to find associated information. | true |
Example JSON Structure
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
data | OBJECT Properties{{STRING(id), {STRING(fullName), STRING(givenName), STRING(familyName)}(name), STRING(email), STRING(location), {STRING(city), STRING(state), INTEGER(stateCode), STRING(country), STRING(countryCode), NUMBER(lat), NUMBER(lng)}(geo)}(person), {STRING(id), STRING(name), STRING(legalName), STRING(domain), STRING(description), INTEGER(foundedYear), STRING(location), STRING(timeZone), STRING(logo), STRING(emailProvider), STRING(phone)}(company)} |
Output Example
Create Lead
Name: createLead
Creates a new lead.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
Email Address | STRING | The email address of the lead. | false | |
first_name | First Name | STRING | The first name of the lead. | false |
last_name | Last Name | STRING | The last name of the lead. | false |
position | Position | STRING | The job title of the lead. | false |
company | Company | STRING | The name of the company the lead is working in. | false |
phone_number | Phone Number | STRING | The phone number of the lead. | false |
lead_list_id | Lead List ID | INTEGER | The identifier of the list the lead belongs to. If it's not specified, the lead is saved in the last list created. | false |
Example JSON Structure
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
data | OBJECT Properties{STRING(id), STRING(email), STRING(first_name), STRING(last_name), STRING(position), STRING(company), {INTEGER(id), STRING(name)}(leads_list)} |