Email Finding API
Email Finding Dropleads API
Find a professional email from a person's name and company domain or company name.
POST/v1/run/email_finding.dropleads
Requests
-
30d
Call it
Make your first request
import os, requests res = requests.post( "https://api.getanyapi.com/v1/run/email_finding.dropleads", headers={"Authorization": f"Bearer {os.environ['ANYAPI_KEY']}"}, json={ "firstName": "", "lastName": "" }, ) print(res.json())
Sample response
{
"data": {
"companyDomain": "example.com",
"companyName": "Acme Inc",
"companySize": 42,
"email": "alex@example.com",
"firstName": "Alex",
"industry": "general",
"lastName": "Rivera",
"mxProvider": "a1b2c3d4",
"mxRecord": "example",
"status": "active"
},
"found": true,
"reason": "not_found"
}Response interface
interface EmailFindingDropleadsResponse {
data: {
companyDomain?: string;
companyName?: string;
companySize?: number;
email: string;
firstName?: string;
industry?: string;
lastName?: string;
mxProvider?: string;
mxRecord?: string;
status: string;
} | null;
found: boolean;
reason?: "not_found";
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-20 · uptime and latency measured over 30dPOST /v1/run/email_finding.dropleads
curl -X POST https://api.getanyapi.com/v1/run/email_finding.dropleads \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"companyDomain":"apollo.io","firstName":"Tim","lastName":"Zheng"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| firstName | string | "Tim"Person's first name. |
| lastName | string | "Zheng"Person's last name. |
| companyDomain | string | "apollo.io"Company domain without a path. |
| companyName | string | Company name when the domain is unavailable. |
| Response | ||
| data | object | Normalized email result, or null when no email matched. |
| data.companyDomain | string | Matched company domain. |
| data.companyName | string | Matched company name. |
| data.companySize | integer | Company size when available. |
| data.email | string | Matched email address. |
| data.firstName | string | Matched first name. |
| data.industry | string | Company industry when available. |
| data.lastName | string | Matched last name. |
| data.mxProvider | string | Detected mail provider. |
| data.mxRecord | string | Selected mail exchange record. |
| data.status | string | Source validation status for the matched email. |
| found | boolean | Whether a matching email was found. |
| reason | "not_found" | Present only when `found` is false, and says why there is no result. `not_found`: the source states the target does not exist, or returned nothing for it. A `found: false` answer is a successful call, not an error, and `costUsd` is what it actually cost. |
| Price | ||
| Price per request | USD | $0.0312 |
| Price /1k req | USD | $31.20 |
FAQ
About the Email Finding Dropleads API
The AnyAPI Email Finding Dropleads API returns Email Finding dropleads data as normalized JSON from one POST call to /v1/run/email_finding.dropleads. Find a professional email from a person's name and company domain or company name. AnyAPI returns one normalized schema whichever source serves it. It costs from $31.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum.
It costs from $31.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.
Find a professional email from a person's name and company domain or company name. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.