POST /v2/email-finder
POST https://api.{appDomain}/v2/email-finder
Header
HTTP/1.1
Authorization: Bearer {$api_id}.{$api_secret}
Host: api.$app_domain
Accept: application/json
Parameters
domain | Company domain name (string) |
fname |
Contact's first name (string) |
lname | Contact's last name (string) |
Response
'array (
'code' => 201,
'response' =>
array (
'id' => 1,
'message' => 'Success!',
'email' => 'johndoe@leadfwd.com',
'status' => 'Verified',
'credit_charged' => true,
'total_credits' => 1143,
),
)'
Response data types
id | integer | id for request |
string | The email address discovered in our search | |
status | string |
The validation status of the email address. Verified or Risky. |
credit_charged | string | ‘true’ for verified emails and ‘false’ for risky emails |
total_credits | integer | Remaining email finder credit count after request |
Error code
HTTP/1.1 422 Unprocessable Entity.
{
"id": "0",
"message": "Request missing parameters or request format incorrect."
}
HTTP/1.1 404 No Email Result.
{
"id": "0",
"message": "Oops. No Email found."
}
HTTP/1.1 403 Insufficient Credits.
{
"id": "0",
"message": "No credits: Oops. Insufficient Email Finder credits."
}
Comments
0 comments
Please sign in to leave a comment.