Find email addresses published on a company domain. Uses one search credit; returns up to 10 emails per domain on Data Platform plans.
643 matches
CRM/Hunter
Domain search
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, e.g. stripe.com."
},
"limit": {
"type": "integer",
"description": "Max emails to return (default 10)."
},
"offset": {
"type": "integer",
"description": "Pagination offset."
},
"type": {
"type": "string",
"description": "Filter by email type: personal or generic."
}
}
}Output
- 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
- 26
{
"type": "object",
"additionalProperties": true,
"properties": {
"data": {
"type": "object",
"properties": {
"domain": {
"type": "string"
},
"organization": {
"type": "string"
},
"emails": {
"type": "array",
"items": {
"type": "object"
}
}
}
},
"meta": {
"type": "object"
}
}
}