# Email

Email lookup serves as a pivotal tool for validating the authenticity of email addresses, thereby ensuring the integrity of user interactions and compliance with regulatory standards. By confirming the legitimacy of email addresses, this process safeguards against fraudulent activities, enhances data security, and fosters trust in online communications.

## email\_lookup

<mark style="color:green;">`POST`</mark> `https://secctrl.tutelar.io/api/v1/services/business_profile/email_lookup`

### Post parameters description is given below,

<table><thead><tr><th>Body</th><th width="148">Type</th><th>Mandatory</th><th>Description</th></tr></thead><tbody><tr><td>email</td><td>String</td><td>Yes</td><td>email</td></tr></tbody></table>

#### Sample Request Body

```json
{
  "email": "gowtham@gmail.com"
}
```

{% tabs %}
{% tab title="200: Success Response " %}

```json
{
  "success": true,
  "code": 200,
  "message": "Lookup details fetched successfully.",
  "status": "completed",
  "reference_id": "06c64840-e53c-4869-ad9e-5117620c2ffc",
  "result": {
        "value": "gowtham@gmail.com",
        "status": "deliverable",
        "is_disposable": false,
        "is_role": false,
        "is_spamtrap": false,
        "is_free": true,
        "domain": "gmail.com",
        "domain_age": 10442,
        "domain_mx_is_valid": true,
        "domain_mx_provider": "google.com",
        "domain_registrar": "MarkMonitor, Inc.",
        "domain_registered_to": "Google LLC",
        "has_twitter": true,
        "has_amazon": true,
        "has_linkedin": true,
        "has_spotify": true,
        "has_deliveroo": false,
        "has_pinterest": true,
        "has_office365": true,
        "has_hubspot": false,
        "has_instagram": true,
        "first_name": "Gowtham",
        "last_name": "Jayaram",
        "domain_website_exists": true,
        "domain_website_exists_taxonomy": "TAXONOMY_WEBSITE_EXISTS",
        "domain_website_exists_ssl": true,
        "account_length": 7,
        "account_dots_count": 0,
        "account_numbers_count": 0,
        "account_letters_count": 7,
        "account_symbols_count": 0,
        "account_vowels_count": 2,
        "account_consonants_count": 5,
        "account_dots_ratio": 0,
        "account_numbers_ratio": 0,
        "account_letters_ratio": 1,
        "account_symbols_ratio": 0,
        "account_vowels_ratio": 0.2857142857142857,
        "account_consonants_ratio": 0.7142857142857143,
        "contains_first_name": true,
        "contains_last_name": false,
        "parsed_first_name": "gowtha",
        "parsed_name_is_valid": true,
        "has_stop_words": false,
        "has_apple": true,
        "has_paypal": true,
        "has_binance": true,
        "has_ebay": false,
        "has_disney_plus": true,
        "has_google": true,
        "google_id": "111166007780897289194",
        "google_profile_picture": "https://eu-west-1-807149116723-google-profile.s3.eu-west-1.amazonaws.com/production/ccefe9ed/33a8/46cf/9fa4/3f3f1e5f5302/4cdd966e-2c71-4409-863a-3d1b4486fd87.jpg",
        "google_first_name": "Gowtham",
        "google_last_name": "Jayaram",
        "google_last_edit": "1710343483311",
        "google_active_services_count": 0,
        "google_review_link": "https://www.google.com/maps/contrib/111166007780897289194/reviews",
        "data_breaches_count": 47,
        "data_breaches_first_breach": "2008-07-01",
        "data_breaches_last_breach": "2024-02-26",
        "data_breaches_list": "MySpace,2008-07-01|LinkedIn,2012-05-05|Yatra,2013-09-01|iMesh,2013-09-22|Adobe,2013-10-04|BTSec,2014-01-09|Gaadi,2015-05-14|SpecialKSpamList,2015-10-07|R2Games,2015-11-01|DaniWeb,2015-12-01",
        "has_yahoo": true,
        "has_skype": true,
        "skype_city": "hydrebad",
        "skype_country_code": "IN",
        "skype_country": "India",
        "skype_name": "gowtham",
        "skype_id": "gowthamvarma9",
        "has_gravatar": false,
        "phone_partials_count": 0,
        "email_partials_count": 0,
        "score": 220,
        "score_cluster": "very_low",
        "image_source": "google",
        "image_labels": "Furniture,98|Adult,98|Male,98|Man,98|Person,98|Throne,83|Clothing,82|Shorts,82|Monk,81",
        "face1_labels": "Gender_Male,99|EyesOpen,98",
        "face1_bounding_box": "0.12043941020966,0.17235481739044,0.43622821569443,0.41451489925385",
        "face1_age_range": "53-61",
        "face1_is_celebrity": false,
        "reason_codes": "RE011,TE004,TE006,TE003",
        "google_name_is_valid": true,
        "google_name_gender": "M",
        "has_duolingo": true,
        "identity_device_count": 0,
        "identity_ip_count": 0,
        "identity_msisdn_count": 0,
        "identity_name_count": 0
    },
  "requested_at": "2023-09-20T13:28:08.551Z",
  "completed_at": "2023-09-20T13:28:13.452Z"
}
```

{% endtab %}

{% tab title="400: Validation Error Response" %}

```json
{
    "success": false,
    "code": 400,
    "message": "Invalid input. Please check your request and try again.",
    "error": {
        "message": "Invalid email address",
        "field": "email",
        "code": "BAD_REQUEST"
    }
}
```

{% endtab %}

{% tab title="200: Failure Response" %}

```json
{
    "success": true,
    "code": 200,
    "message": "The request could not be completed due to an error.",
    "reference_id": "8e22a730-b2dc-45b8-8532-91c076ca432c",
    "status": "failed",
    "error": {
        "message": "Email lookup not found or invalid. Please review the email information for accuracy.",
        "code": "ERROR"
    },
    "requested_at": "2024-03-14T11:13:58.757Z",
    "completed_at": "2024-03-14T11:13:58.969Z"
}
```

{% endtab %}
{% endtabs %}
