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

# Find Business Email

> Find a business email address for a person based on their name and company.

## Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST "https://api.groweasy.io/email/find" \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "firstName": "John",
      "lastName": "Smith",
      "company": "acme.com"
    }'
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.groweasy.io/email/find', {
    method: 'POST',
    headers: {
      'Authorization': 'Bearer YOUR_API_KEY',
      'Content-Type': 'application/json',
    },
    body: JSON.stringify({
      firstName: 'John',
      lastName: 'Smith',
      company: 'acme.com',
    }),
  });

  const data = await response.json();
  console.log(data.data.email); // "john.smith@acme.com"
  console.log(data.data.confidence); // 0.95
  ```

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

  response = requests.post(
      "https://api.groweasy.io/email/find",
      headers={
          "Authorization": "Bearer YOUR_API_KEY",
          "Content-Type": "application/json",
      },
      json={
          "firstName": "John",
          "lastName": "Smith",
          "company": "acme.com",
      },
  )

  data = response.json()
  print(data["data"]["email"])  # "john.smith@acme.com"
  print(data["data"]["confidence"])  # 0.95
  ```
</CodeGroup>

## Response

```json theme={null}
{
  "success": true,
  "data": {
    "email": "john.smith@acme.com",
    "confidence": 0.95,
    "sources": ["linkedin", "company_website"]
  }
}
```

## With LinkedIn URL

For better accuracy, include the person's LinkedIn profile URL:

```bash theme={null}
curl -X POST "https://api.groweasy.io/email/find" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "firstName": "John",
    "lastName": "Smith",
    "company": "acme.com",
    "linkedinUrl": "https://linkedin.com/in/johnsmith"
  }'
```

## Confidence Scores

| Score     | Meaning                                |
| --------- | -------------------------------------- |
| 0.9 - 1.0 | Very high confidence, verified email   |
| 0.7 - 0.9 | High confidence, likely correct        |
| 0.5 - 0.7 | Medium confidence, pattern-based guess |
| \< 0.5    | Low confidence, consider verifying     |


## OpenAPI

````yaml POST /email/find
openapi: 3.1.0
info:
  title: GrowEasy API
  description: >-
    The GrowEasy API allows you to programmatically start scrapes, check status,
    manage credits, and find/verify emails.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.groweasy.io
security:
  - bearerAuth: []
paths:
  /email/find:
    post:
      summary: Find Business Email
      description: >-
        Find a business email address for a person based on their name and
        company.
      operationId: findEmail
      requestBody:
        description: Person and company information
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FindEmailRequest'
      responses:
        '200':
          description: Email found successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FindEmailResponse'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '402':
          description: Insufficient credits
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Email not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    FindEmailRequest:
      type: object
      required:
        - firstName
        - lastName
        - company
      properties:
        firstName:
          type: string
          description: First name of the person
          example: John
        lastName:
          type: string
          description: Last name of the person
          example: Smith
        company:
          type: string
          description: Company name or domain
          example: acme.com
        linkedinUrl:
          type: string
          format: uri
          description: Optional LinkedIn profile URL for better accuracy
    FindEmailResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          type: object
          properties:
            email:
              type: string
              format: email
              description: The found business email
              example: john.smith@acme.com
            confidence:
              type: number
              description: Confidence score (0-1)
              example: 0.95
            sources:
              type: array
              items:
                type: string
              description: Sources where the email was found
              example:
                - linkedin
                - company_website
    Error:
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          example: false
        error:
          type: object
          properties:
            code:
              type: string
              description: Error code
              example: INVALID_REQUEST
            message:
              type: string
              description: Human-readable error message
              example: The request body is missing required fields
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key authentication. Get your API key from the GrowEasy dashboard.

````