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

# get_company

> Retrieve detail for a single company by ID.

Returns the record for one company tracked in your Space.

## When to use

* Drilling into a single company after [`list_companies`](/mcp/tools/list-companies) returns its ID.
* *"Tell me about company 1041."*
* *"What's the domain on company 1039?"*

## Parameters

| Parameter | Type    | Required | Description                    |
| --------- | ------- | -------- | ------------------------------ |
| `id`      | integer | Yes      | The numeric ID of the company. |

## Example response

```json theme={null}
{
  "id": 1041,
  "domain": "acme.com",
  "created_at": "2026-04-12T18:00:00Z"
}
```

## Caveats

* Returns 404 (`[not_found]`) if no company with that ID exists in the current Space.
* For per-contact data within a company, use [`list_contacts`](/mcp/tools/list-contacts) or pivot through [`query_ad_metrics`](/mcp/tools/query-ad-metrics) with `query_mode: "company"`.
