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

# Findymail Reverse Email Lookup: Inputs, Cost & CLI Example

> Find a business profile from an email address (work email or personal email). Includes inputs, outputs, costs, and Deepline CLI examples for GTM automation.

## Run in Enrichment Spreadsheet

<Info>
  Use this function as a column step in `deepline enrich`.
</Info>

```bash theme={null}
deepline enrich --input leads.csv --output leads.enriched.csv --with 'result=findymail_reverse_email_lookup:{"email":"{{email}}"}' --json
```

<Tip>
  Map payload values to spreadsheet columns with `{{column_name}}` placeholders.
</Tip>

## Input Schema

| Name                   | Type      | Required | Default | Description                                                  |
| ---------------------- | --------- | -------- | ------- | ------------------------------------------------------------ |
| `payload.email`        | `string`  | Yes      |         | Email address to lookup                                      |
| `payload.with_profile` | `boolean` | No       |         | optional Whether to return profile metadata (default: false) |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Find a business profile from an email address (work email or personal email). Credit usage: - Uses 1 finder credit if a profile is found (without profile data) - Uses 2 finder credits if a profile is found with complete profile data (only if `with_profile` option enabled)",
    "properties": {
      "email": {
        "type": "string",
        "description": "Email address to lookup"
      },
      "with_profile": {
        "type": "boolean",
        "description": "optional Whether to return profile metadata (default: false)"
      }
    },
    "required": [
      "email"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object` | Yes      |         | Provider response payload.                     |
| `result.meta` | `object` | No       |         | Additional response metadata (status, paging). |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "description": "Provider response payload.",
        "anyOf": [
          {
            "type": "object",
            "description": "Without profile enrichment",
            "properties": {
              "linkedin_url": {
                "type": "string"
              }
            },
            "additionalProperties": false
          },
          {
            "type": "object",
            "description": "With profile enrichment",
            "properties": {
              "fullName": {
                "type": "string"
              },
              "username": {
                "type": "string"
              },
              "headline": {
                "type": "string"
              },
              "jobTitle": {
                "type": "string"
              },
              "summary": {
                "type": "string"
              },
              "city": {
                "type": "string"
              },
              "region": {
                "type": "string"
              },
              "country": {
                "type": "string"
              },
              "companyLinkedinUrl": {
                "type": "string"
              },
              "companyName": {
                "type": "string"
              },
              "companyWebsite": {
                "type": "string"
              },
              "isPremium": {
                "type": "boolean"
              },
              "isOpenProfile": {
                "type": "boolean"
              },
              "skills": {
                "type": "array"
              },
              "jobs": {
                "type": "array"
              },
              "educations": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "school": {
                      "type": "string"
                    },
                    "degree": {
                      "type": "string"
                    },
                    "fieldOfStudy": {
                      "type": "string"
                    },
                    "startDate": {
                      "type": "string"
                    },
                    "endDate": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              },
              "certificates": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string"
                    },
                    "issuingOrganization": {
                      "type": "string"
                    },
                    "issueDate": {
                      "type": "string"
                    },
                    "expirationDate": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          {
            "type": "object",
            "description": "No LinkedIn URL found",
            "properties": {
              "linkedin_url": {
                "type": "string"
              }
            },
            "additionalProperties": false
          }
        ]
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

<Info>
  Use direct execution for single payload debugging.
</Info>

```bash theme={null}
deepline tools execute findymail_reverse_email_lookup --payload '{
  "email": "string"
}' --json
```

### CLI flags

| Flag                        | Description                                         |
| --------------------------- | --------------------------------------------------- |
| `--json`                    | Print machine-readable output.                      |
| `--wait`                    | Wait for terminal provider status when supported.   |
| `--debug`                   | Enable wait mode with additional status/log output. |
| `--wait-timeout SECONDS`    | Max seconds to wait in wait mode.                   |
| `--poll-interval SECONDS`   | Polling interval in seconds during wait mode.       |
| `--timeout SECONDS`         | Request timeout in seconds.                         |
| `--connect-timeout SECONDS` | Connection timeout in seconds.                      |

## Cost

* Pricing model: `per_result` (per result).
* Estimated Deepline credits: `1.38` per pricing unit.
* Billing mode: `post_deduct`.
