Skip to main content
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 instead.

Inputs

FieldTypeRequiredDefaultDescription
company_slugstringyesCompany 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.
includearray of enumsno[]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_statusstringno"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.
  • ### 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):
## 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

Agent calls: particle_company_get {
  "company_slug": "nvidia",
  "include": ["people", "products", "competitors"],
  "product_status": "active,announced"
}