> ## 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.

# Forager Person Contacts Lookup Work Emails: Inputs, Cost &

> The Person Work Emails Lookup endpoint retrieves work email addresses associated with an individual in the Forager dataset.

## 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=forager_person_contacts_lookup_work_emails:{}' --json
```

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

## Input Schema

| Name                                 | Type      | Required | Default | Description                                                                                                           |
| ------------------------------------ | --------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------- |
| `payload.person_id`                  | `integer` | No       |         |                                                                                                                       |
| `payload.linkedin_public_identifier` | `string`  | No       |         | LinkedIn organization "Public identifier/Slug/ID" - "linkedin.com/in/!slug!/".                                        |
| `payload.do_contacts_enrichment`     | `boolean` | No       | `false` |                                                                                                                       |
| `payload.linkedin_url`               | `string`  | No       |         | Compatibility alias. Deepline converts a full LinkedIn URL to linkedin\_public\_identifier before provider execution. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Person work emails request serializer.",
    "properties": {
      "person_id": {
        "type": "integer"
      },
      "linkedin_public_identifier": {
        "type": "string",
        "description": "LinkedIn organization \"Public identifier/Slug/ID\" - \"linkedin.com/in/!slug!/\"."
      },
      "do_contacts_enrichment": {
        "type": "boolean",
        "default": false
      },
      "linkedin_url": {
        "type": "string",
        "description": "Compatibility alias. Deepline converts a full LinkedIn URL to linkedin_public_identifier before provider execution.",
        "minLength": 1
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `array`  | 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": {
        "type": "array",
        "description": "Provider response payload.",
        "items": {
          "type": "object",
          "description": "Person details email serializer, implemented for documentation.",
          "properties": {
            "email": {
              "type": "string",
              "format": "email"
            },
            "email_type": {
              "type": "string"
            },
            "validation_status": {
              "type": "string",
              "description": "* `valid` - Valid * `risky` - Risky * `invalid` - Invalid * `unknown` - Unknown",
              "enum": [
                "valid",
                "risky",
                "invalid",
                "unknown"
              ]
            }
          },
          "required": [
            "email",
            "email_type",
            "validation_status"
          ],
          "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 forager_person_contacts_lookup_work_emails --payload '{}' --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.56` per pricing unit.
* Billing mode: `post_deduct`.
