Find the most likely email for a person at a domain. Uses one finder credit when a result is returned.
643 matches
CRM/Hunter
Email finder
v1.0.0Input
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
{
"type": "object",
"required": [
"domain"
],
"additionalProperties": false,
"properties": {
"domain": {
"type": "string",
"description": "Company domain."
},
"first_name": {
"type": "string",
"description": "Person first name."
},
"last_name": {
"type": "string",
"description": "Person last name."
},
"company": {
"type": "string",
"description": "Company name when domain is unknown."
}
}
}Output
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
{
"type": "object",
"additionalProperties": true,
"properties": {
"data": {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"score": {
"type": "integer"
},
"domain": {
"type": "string"
}
}
}
}
}