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

# particle_company_get

> Bundled profile for one company — identifiers, optional people, product hierarchy, and competitor list.

Return a bundled profile for one company: identifiers (slug, ticker, domain, CIK, QID, linked entity), name, and description.

The default response is lean. Request the heavier sub-resources with `include`: `people` for current leadership and notable people, `products` for the three-level product hierarchy, `competitors` for the competitor list. For sponsor/advertising analytics on this company, use [`particle_company_get_podcast_ad_presence`](/mcp/tools/podcast_advertising/company-get-podcast-ad-presence) instead.

## Inputs

| Field            | Type           | Required | Default    | Description                                                                                                                                                                                                                                                               |
| ---------------- | -------------- | -------- | ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `company_slug`   | string         | yes      | —          | Company identifier — accepts slug (e.g. `"nvidia"`), domain (e.g. `"nvidia.com"`), or canonical ID. If you already know the domain you can call this tool directly without first running `particle_company_resolve`.                                                      |
| `include`        | array of enums | no       | `[]`       | Optional response sections: `people` (current leadership and notable people; person slugs feed `particle_person_get`), `products` (three-level segment → product line → product hierarchy), `competitors` (competitor list, paginated to 25). Request only what you need. |
| `product_status` | string         | no       | `"active"` | Comma-separated lifecycle filter for `include: ["products"]`. Allowed values: `active`, `announced`, `discontinued`, `rumored`.                                                                                                                                           |

## Output

A markdown document with the company name as an H2, identifier KV lines (`**Slug:**`, `**Ticker:**`, `**Domain:**`, `**CIK:**`, `**QID:**`, `**Entity slug:**` — only those that have values, and deduplicated: `**Slug:**` is omitted when it would repeat the Domain or ID rows, and `**Entity slug:**` when it would repeat `**Slug:**`. As the chaining handle, use `**Slug:**` when present, otherwise `**Domain:**` — both are accepted by `company_slug` parameters; a ticker is not, so when neither row is present re-resolve via `particle_company_resolve` with the ticker), then a paragraph with the description. The following H3 sections appear when the matching `include` value was requested and data is present:

* `### People` — one bullet per person, formatted `Name (slug) — title`. The parenthesized slug feeds [`particle_person_get`](/mcp/tools/people/person-get).
* `### Products` — an indented bullet hierarchy `- **Name** (level, status)` (segment → product\_line → product).
* `### Competitors` — one bullet per competitor: `- Name (handles) — competitive_basis`.

Sample (`company_slug="nvidia", include=["people","products","competitors"]`, truncated):

```markdown theme={"dark"}
## Nvidia

**Slug:** nvidia
**Ticker:** NVDA
**Domain:** nvidia.com
**CIK:** 0001045810
**QID:** Q182477
Nvidia is a leading developer of graphics processing units. …

### People

- Jensen Huang (jensen-huang) — Founder & CEO
- Colette Kress (colette-kress) — EVP & CFO

### Products

- **Automotive** (segment, active)
  - **NVIDIA DRIVE** (product_line, active)
    - **DRIVE Hyperion Platform** (product, active)
- **Compute & Networking** (segment, active)
  - **Data Center Accelerators** (product_line, active)
    - **Blackwell GPUs** (product, active)

### Competitors

- Raspberry Pi Holdings plc (uetersen, raspberrypi.com) — NVIDIA competes with Raspberry Pi in edge AI and robotics segments through its Jetson series…
```

## Example

```text theme={"dark"}
Agent calls: particle_company_get {
  "company_slug": "nvidia",
  "include": ["people", "products", "competitors"],
  "product_status": "active,announced"
}
```

## Related

* REST equivalent: [`GET /v1/companies/{id}`](/companies/overview), with sub-resources for people, products, and competitors.
* For sponsor analytics, use [`particle_company_get_podcast_ad_presence`](/mcp/tools/podcast_advertising/company-get-podcast-ad-presence).
* For dialogue mentioning the company, use [`particle_podcast_find_mentions`](/mcp/tools/podcasts/podcast-find-mentions) with `company_slug`.
