Skip to main content

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.

Same shape as get_contact_journey but rolled up to the company. Includes a contact_roster of every profile that touched ads on the company’s behalf.

When to use

  • “Show me the journey for Acme Corp.”
  • “Which contacts at this company touched our ads?”
For per-contact journeys, use get_contact_journey. For the basic company record, use get_company.

Parameters

ParameterTypeRequiredDescription
company_idintegerYesNumeric company id.
formatstringNojson (default), csv, or yaml.

Output

{
  "company_id":     901,
  "domain":         "acme.com",
  "ltv":            12849.20,
  "contact_roster": [8231, 8240, 8312],
  "event_count":    34,
  "events": [
    { "type": "touchpoint", "event_time_utc": "2026-03-02T...", "source": "linkedin_ads", "profile_id": 8231 },
    { "type": "conversion", "event_time_utc": "2026-03-15T...", "event_name": "purchase", "amount": 4200, "profile_id": 8240 }
  ]
}
companies in this codebase are domain-based only — there’s no human “company name” column. Surface the domain to the user.

Caveats

Capped at 250 touchpoints + 250 conversions per company (500 events total).