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

# contact-enrich

> Enrich records with contact-level data such as emails and phone numbers

Enrich records with contact-level data including verified emails, phone numbers, LinkedIn URLs, and job titles.

## contact-enrich

**Usage**

```bash theme={null}
landbase-cli contact-enrich <dataset-id> [flags]
```

<ParamField path="dataset-id" type="string" required>
  The ID of the dataset to enrich with contact data. The dataset should already be matched or enriched with company data.
</ParamField>

**Flags**

| Flag                        | Default | Description                                                                |
| --------------------------- | ------- | -------------------------------------------------------------------------- |
| `--contact-fields=<fields>` | —       | Comma-separated contact fields to include, e.g. `email,phone,linkedin_url` |
| `--wait`                    | —       | Block until enrichment completes before returning                          |
| `--timeout=<seconds>`       | \~600   | Override the default polling timeout                                       |
| `--no-update-check`         | —       | Skip the daily update check                                                |
| `--verbose`                 | —       | Print request/response details to stderr                                   |

**Examples**

```bash theme={null}
# Enrich with contact data
landbase-cli contact-enrich <dataset-id> --wait

# Enrich with specific contact fields
landbase-cli contact-enrich <dataset-id> --contact-fields=email,phone,linkedin_url --wait
```
