# geni crm search (/cli/crm/search)



```sh
geni crm search <query> [flags]
```

Runs one query across every CRM entity and returns the mixed results. Use `--type` to narrow to a single kind.

## Synopsis [#synopsis]

```sh
geni crm search "acme"                       # everything matching "acme"
geni crm search "acme" --type company        # only companies
geni crm search "ada" --type person --json
```

| Flag                   | Notes                                                   |
| ---------------------- | ------------------------------------------------------- |
| `--type <kind>`        | One of `person`, `company`, `list`, `pipeline`, `card`. |
| `--limit-per-type <n>` | Max results per kind (1 to 20, default 6).              |
| `--json`               | Machine-readable output.                                |

## Output [#output]

```
TYPE      ID          NAME            DETAIL
person    per_01HX…   Ada Lovelace    CTO @ Acme
company   cmp_01HX…   Acme            Tech · acme.com
pipeline  ppl_01HX…   New Business    sales · 12 Deals
```
