> ## Documentation Index
> Fetch the complete documentation index at: https://docs.enrow.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Find Single Email

> Find a single professional email address from a full name and company domain or name

<Badge color="green">POST</Badge>

```
https://api.enrow.io/email/find/single
```

Run a single email search to find a professional email address. Authenticate every request with your [API key](/authentication) in the `x-api-key` header. For batch operations, use the [Find Bulk Emails](/api-reference/email-finder/find-bulk) endpoint (up to 5,000 searches per batch).

<Info>
  Enrow performs **determinist verifications** that verify even catch-all emails. This means passing the found emails through a debouncer afterwards isn't needed.
</Info>

## Request Body

<ParamField body="fullname" type="string" required>
  The full name of the person for which to find the email
</ParamField>

<ParamField body="company_domain" type="string">
  The company's domain, multiple formats accepted (`"dundermifflin.com"`, `"https://www.dundermifflin.com"`...)

  **Note**: Either `company_domain` or `company_name` is required.
</ParamField>

<ParamField body="company_name" type="string">
  The company's name (`"Apple"`, `"Air France"`, ...)

  **Note**: Either `company_domain` or `company_name` is required.
</ParamField>

<ParamField body="custom" type="object">
  Custom params that will be returned in the GET response and in the webhook notification.

  <Expandable title="custom object">
    <ParamField body="your_custom_key_name" type="string" default="your_custom_property">
      Custom data of yours
    </ParamField>
  </Expandable>
</ParamField>

<ParamField body="settings" type="object">
  A set of settings related to this search

  <Expandable title="settings properties">
    <ParamField body="webhook" type="string">
      A URL that will be notified through an HTTP POST request once the single search is finished. See [How Webhooks Work](/how-webhooks-work).
    </ParamField>

    <ParamField body="country_code" type="string" default="US">
      The ISO 3166 Alpha-2 code of the country related to the search. Relevant when using a company name — helps disambiguate homonyms by searching on localized Google.
    </ParamField>

    <ParamField body="retrieve_gender" type="boolean" default="false">
      Allows you to get the gender (`male`/`female`) of the person.
    </ParamField>

    <ParamField body="retrieve_company_info" type="boolean" default="false">
      Return additional company information in the result. Currently only effective when `country_code` is `FR`.
    </ParamField>
  </Expandable>
</ParamField>

## Response

### 200 — Search initiated

<ResponseField name="message" type="string">
  Confirmation message
</ResponseField>

<ResponseField name="id" type="string">
  Unique identifier for this search. Use this to retrieve results via the [GET endpoint](/api-reference/email-finder/get-single-result).
</ResponseField>

<ResponseField name="credits_used" type="number">
  Number of credits consumed. See [Credits & billing](/credits-billing) for per-endpoint costs.
</ResponseField>

### Error Responses

| Code    | Message                                                                                     |
| ------- | ------------------------------------------------------------------------------------------- |
| **400** | `invalid JSON input`                                                                        |
| **400** | `both company_domain and company_name are absent, input payload needs at least one of them` |
| **400** | `missing fullname`                                                                          |
| **401** | `No apikey found in the x-api-key headers`                                                  |
| **401** | `This apikey is not valid`                                                                  |
| **402** | `Insufficient credits`                                                                      |

<Note>
  Insufficient-credit (`402`) responses on single endpoints return `{ "reason": "...", "success": false }`; all other errors return `{ "message": "..." }`.
</Note>

See [Error handling](/error-handling) for the full list of status codes and response formats.

<RequestExample>
  ```bash cURL theme={null}
  curl --request POST \
    --url https://api.enrow.io/email/find/single \
    --header 'Content-Type: application/json' \
    --header 'x-api-key: YOUR_API_KEY' \
    --data '{
      "fullname": "Dwight Schrute",
      "company_domain": "dundermifflin.com",
      "settings": {
        "retrieve_gender": true
      }
    }'
  ```

  ```javascript Node.js theme={null}
  const response = await fetch('https://api.enrow.io/email/find/single', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
      'x-api-key': process.env.ENROW_API_KEY
    },
    body: JSON.stringify({
      fullname: 'Dwight Schrute',
      company_domain: 'dundermifflin.com',
      settings: {
        retrieve_gender: true
      }
    })
  });

  const data = await response.json();
  console.log(data.id);
  ```

  ```python Python theme={null}
  import requests
  import os

  url = "https://api.enrow.io/email/find/single"
  headers = {
      "Content-Type": "application/json",
      "x-api-key": os.getenv("ENROW_API_KEY")
  }
  payload = {
      "fullname": "Dwight Schrute",
      "company_domain": "dundermifflin.com",
      "settings": {
          "retrieve_gender": True
      }
  }

  response = requests.post(url, json=payload, headers=headers)
  print(response.json())
  ```
</RequestExample>

<ResponseExample>
  ```json Success Response theme={null}
  {
    "message": "Single search operating",
    "id": "0cf517bc-16e8-45bc-b967-ab9116b3c804",
    "credits_used": 1
  }
  ```

  ```json Error Response theme={null}
  {
    "message": "..."
  }
  ```
</ResponseExample>

## Next steps

<CardGroup cols={2}>
  <Card title="Get the result" icon="inbox" href="/api-reference/email-finder/get-single-result">
    Retrieve the found email using the search `id`.
  </Card>

  <Card title="Find emails in bulk" icon="layer-group" href="/api-reference/email-finder/find-bulk">
    Run up to 5,000 email searches in a single request.
  </Card>

  <Card title="Authentication" icon="key" href="/authentication">
    How to pass your API key in the x-api-key header.
  </Card>

  <Card title="Webhooks" icon="bell" href="/how-webhooks-work">
    Get notified automatically when a search completes.
  </Card>
</CardGroup>
