Use Hunter features wherever you want with the API. Getting started takes only a few minutes.
Get every email address found on the internet using a given domain name. With sources.
{
"data" : {
"domain" : "intercom.io",
"webmail" : false,
"pattern" : "{first}",
"organization" : "Intercom",
"emails" : [
{
"value": "ciaran@intercom.io",
"type": "personal",
"confidence": 92,
"sources": [
{
"domain" : "github.com",
"uri" : "http://github.com/ciaranlee",
"extracted_on" : "2015-07-29"
},
{
"domain" : "blog.intercom.io",
"uri" : "http://blog.intercom.io/were-hiring-a-support-engineer/",
"extracted_on" : "2015-08-29"
}
],
"first_name" : "Ciaran",
"last_name" : "Lee",
"position" : "Support Engineer",
"linkedin" : null,
"twitter" : "ciaran_lee",
"phone_number" : null,
},
...
}
},
"meta" : {
"results" : 35,
"limit": 10,
"offset" : 0,
"params" : {
"domain" : "intercom.io",
"company" : null,
"type" : null,
"offset" : "0"
}
}
}
Find the email address of someone from his first name, last name and domain name.
{
"data" : {
"email": "dustin@asana.com",
"score": 72,
"domain": "asana.com",
"sources": [
{
"domain" : "blog.asana.com",
"uri" : "http://blog.asana.com",
"extracted_on" : "2015-09-27"
}
],
}
},
"meta" : {
"params" : {
"first_name" : "Dustin",
"last_name" : "Moskovitz",
"domain" : "asana.com",
"company" : null
}
}
}
Check if a given email address is deliverable and has been found on the internet.
{
"data" : {
"result": "deliverable",
"score": 91,
"regexp": true,
"gibberish": false,
"disposable": false,
"webmail": false,
"mx_records": true,
"smtp_server": true,
"smtp_check": true,
"accept_all": false,
"sources": [
{
"domain": "blog.close.io",
"uri": "http://blog.close.io/how-to-become-great-at-sales",
"extracted_on": "2015-01-26"
},
{
"domain": "blog.close.io",
"uri": "http://blog.close.io/how-to-do-referral-sales",
"extracted_on": "2015-01-26"
}
]
},
"meta" : {
"params" : {
"email" : "steli@close.io"
}
}
}