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

# gtm apollo

> Command reference for gtm apollo — Apollo API commands. Generated from the CLI help text.

Apollo API commands.

Every command follows the [CLI contract](/concepts/cli-contract): JSON on stdout, errors on stderr, and command-specific mutation safety controls. Keys resolve as described in [Secrets and API keys](/secrets).

## `gtm apollo people`

People enrichment and search via Apollo.

### `gtm apollo people enrich`

Enrich a person's data using Apollo.

```bash theme={"system"}
uv run gtm apollo people enrich [OPTIONS]
```

| Option             | Type | Default | Description                                     |
| ------------------ | ---- | ------- | ----------------------------------------------- |
| `--email, -e`      | text | —       | Email address                                   |
| `--name, -n`       | text | —       | Full name                                       |
| `--first-name`     | text | —       | First name                                      |
| `--last-name`      | text | —       | Last name                                       |
| `--domain, -d`     | text | —       | Company domain                                  |
| `--linkedin, -l`   | text | —       | LinkedIn profile URL                            |
| `--org`            | text | —       | Organization name                               |
| `--json`           | text | —       | JSON payload (overrides flags)                  |
| `--apollo-api-key` | text | —       | Override the Apollo API key for this invocation |

### `gtm apollo people search`

Search for people in Apollo's database.

```bash theme={"system"}
uv run gtm apollo people search [OPTIONS] [KEYWORDS]
```

| Argument   | Type | Required |
| ---------- | ---- | -------- |
| `KEYWORDS` | text | no       |

| Option             | Type    | Default | Description                                     |
| ------------------ | ------- | ------- | ----------------------------------------------- |
| `--title, -t`      | text    | —       | Job titles to filter by (repeatable)            |
| `--seniority, -s`  | text    | —       | Seniority levels (repeatable)                   |
| `--location`       | text    | —       | Person locations (repeatable)                   |
| `--domain, -d`     | text    | —       | Company domains (repeatable)                    |
| `--page, -p`       | integer | `1`     | Page number                                     |
| `--per-page, -n`   | integer | `10`    | Results per page                                |
| `--json`           | text    | —       | JSON payload (overrides flags)                  |
| `--apollo-api-key` | text    | —       | Override the Apollo API key for this invocation |

## `gtm apollo organizations`

Organization enrichment and search via Apollo.

### `gtm apollo organizations enrich`

Enrich an organization's data by domain.

```bash theme={"system"}
uv run gtm apollo organizations enrich [OPTIONS] [DOMAIN]
```

| Argument | Type | Required |
| -------- | ---- | -------- |
| `DOMAIN` | text | no       |

| Option             | Type | Default | Description                                     |
| ------------------ | ---- | ------- | ----------------------------------------------- |
| `--json`           | text | —       | JSON payload (overrides flags)                  |
| `--apollo-api-key` | text | —       | Override the Apollo API key for this invocation |

### `gtm apollo organizations search`

Search for organizations in Apollo's database.

```bash theme={"system"}
uv run gtm apollo organizations search [OPTIONS] [KEYWORDS]
```

| Argument   | Type | Required |
| ---------- | ---- | -------- |
| `KEYWORDS` | text | no       |

| Option             | Type    | Default | Description                                                  |
| ------------------ | ------- | ------- | ------------------------------------------------------------ |
| `--location`       | text    | —       | HQ locations (repeatable)                                    |
| `--employees`      | text    | —       | Employee count ranges like '1,10' or '501,1000' (repeatable) |
| `--page, -p`       | integer | `1`     | Page number                                                  |
| `--per-page, -n`   | integer | `10`    | Results per page                                             |
| `--json`           | text    | —       | JSON payload (overrides flags)                               |
| `--apollo-api-key` | text    | —       | Override the Apollo API key for this invocation              |


## Related topics

- [CLI overview](/cli/index.md)
- [gtm-sdk: Go-To-Market SDK and CLI for Modal](/index.md)
- [Quickstart: install gtm-sdk and run your first command](/quickstart.md)
- [Secrets and API keys](/secrets.md)
- [CLI contract](/concepts/cli-contract.md)
