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

# enrich

> Enrich matched records with firmographic and contact data

Enrich matched records in a dataset with additional firmographic data such as industry, company size, and location.

## enrich

**Usage**

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

<ParamField path="dataset-id" type="string" required>
  The ID of a matched dataset to enrich. Run `landbase-cli match` first to produce a matched dataset.
</ParamField>

**Flags**

| Flag                        | Default | Description                                                                   |
| --------------------------- | ------- | ----------------------------------------------------------------------------- |
| `--company-fields=<fields>` | —       | Comma-separated company fields to include, e.g. `industry,size_range,hq_city` |
| `--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 default fields
landbase-cli enrich <dataset-id> --wait

# Enrich with specific company fields
landbase-cli enrich <dataset-id> --company-fields=industry,size_range,hq_city --wait
```
