Skip to content

GetEmail.io API

 Our API provides powerful and efficient endpoints to help you streamline your email search and verification processes. Whether you’re integrating GetEmail.io into your sales funnel or enhancing your CRM, our API allows you to programmatically access the core functionalities of GetEmail.io, making it easier to find and verify emails with precision.

Endpoint: GET https://api.getemail.io/v2/find-email

The  Find Email API endpoint allows you to retrieve the email address of a prospect by providing their full name and associated domain or website. Simply send a GET request to https://api.getemail.io/v2/find-email with the required parameters, and the API will return the prospect’s email address.

Example
https://api.getemail.io/v2/find-email?api_key=opV6L12I51GrXsggxQWY&fullname=satya nadella&domain=microsoft&isEnrichToDo=true
{
    "message": "Email found and it is good mail.",
    "code": "EMAIL_FIND_TERMINATED_WITH_SUCCESS",
    "id": "f5030_satya_nadella_microsoft_by_sac.pou412@gmail.com",
    "user_entry": {
        "fullname": "satya nadella",
        "isEnrichToDo": "true",
        "api_key": "a2yHRs9yfTKmn9ohdfs6",
        "domain": "microsoft"
    },
    "email": "snadella@microsoft.com",
    "email_search_details": [
        {
            "bad_email": [
                {
                    "mxStatus": "failed",
                    "computeScore": 10.28,
                    "mxStatusCreatedAt": "2021-07-03T15:56:11.000Z",
                    "score_email_boost": "30.84",
                    "domainScore": 2,
                    "score_with_genereted_email": "10.28",
                    "email": "satya.nadella@microsoft.com",
                    "mlStatusCreatedAt": null,
                    "mlStatus": null
                },
                // ... rest of the JSON data
            ],
            "good_email": [
                {
                    "mxStatus": "passed",
                    "computeScore": 11.13,
                    "mxStatusCreatedAt": "2021-07-03T15:56:11.000Z",
                    "score_email_boost": "33.39",
                    "domainScore": 2,
                    "score_with_genereted_email": "11.13",
                    "email": "snadella@microsoft.com",
                    "mlStatusCreatedAt": null,
                    "mlStatus": null
                },
                {
                    "mxStatus": "passed",
                    "computeScore": 6.88,
                    "mxStatusCreatedAt": "2021-07-03T15:56:11.000Z",
                    "score_email_boost": "20.64",
                    "domainScore": 2,
                    "score_with_genereted_email": "10.32",
                    "email": "satyan@microsoft.com",
                    "mlStatusCreatedAt": null,
                    "mlStatus": null
                }
            ]
        }
    ],
    "is_terminated": true,
    "is_success": true,
    "enrich_data": {
        "lkProfileLink": "https://www.linkedin.com/in/satyanadella",
        "industry": "Computer Software",
        "title": "Chairman and CEO",
        "updated_at": "Thu Oct 21 2021 08:08:20 GMT+0000 (Coordinated Universal Time)",
        "lidFound": "satyanadella",
        "companyDate": "Feb 2014",
        "isLkProfileFoundInWeb": true,
        "confidence": "high",
        "isLkProfileFoundInOurDb": true,
        "locality": "Greater Seattle Area",
        "facebookLink": null,
        "position": "Chairman and CEO",
        "emailFoundInContactInfo": "",
        "guessImageProfile": [],
        "gender": null,
        "age": null,
        "personalEmailGuess": null,
        "title_guess_2": null,
        "company_name_guess_2": null,
        "more_details": {
            "previous_company": null,
            "previous_company_title_2": null,
            "previous_company_2": null,
            "previous_company_title": null,
            "current_company_2": "University of Chicago",
            "previous_company_link_2": null,
            "previous_company_link": null,
            "current_company_title_2": "Member Board Of Trustees",
            "current_company_domain": "microsoft.com",
            "current_company_domain_2": "uchicago.edu",
            "previous_company_domain": null,
            "previous_company_domain_2": null
        },
        "best_match_company": "Microsoft",
        "best_match_company_domain": "https://www.linkedin.com/company/1035/",
        "first_intersting_link": "https://news.microsoft.com/exec/satya-nadella/",
        "best_match_title": "Chairman and CEO"
    },
    "..."
}

Endpoint: GET https://api.getemail.io/v2/status-find-email

The Status Find Email API allows you to quickly check the status of a previous email search request made using the Find Email API. This endpoint is designed for efficiency, returning a response that closely mirrors the original Find Email API response, but without performing additional computations. As a result, it delivers faster results by focusing solely on the status of your prior request. We recommend using the Status Find Email API when you need a swift update on the status of an existing query, rather than initiating a new search.

Example
https://api.getemail.io/v2/status-find-email?id=f5030_satya_nadella_microsoft_by_sac.pou412@gmail.com
The response will be same as find-email Api's response. Please refer to find-email documentation for response.

Endpoint: GET https://api.getemail.io/v2/verif-email

The GET https://api.getemail.io/v2/verif-email endpoint allows you to verify the validity of an email address. This API helps determine whether the email address in question is classified as “Good” or “Bad.” To use this endpoint, you must first send an initial request to initiate the verification process. After a short wait, you will need to resend the request to retrieve the final verification result. This two-step process ensures accurate and up-to-date information on the email address’s status.

Example
https://api.getemail.io/v2/verif-email?api_key=opV6L12I51GrXsggxQWY&email=satyan@microsoft.com
{
"code": "EMAIL_VERIFICATION_TERMINATED",
"id": "478d72cfd0aad0c51ecc5e168aa8a87c",
"method": "api",
"email": "satyan@microsoft.com",
"is_terminated": true,
"verif_email_status": "good_mail",
"message": "email found. And it is good email",
"is_success": true,
"time_to_verif": "2021-10-26T16:41:55.574Z",
"success_verif_algo": "smtp_test"
}