Account object
An Account represents a company / organization tracked in Cirrus Insight's Cortex data model. Returned by the endpoints under /api/v1alpha1/accounts.
Two shapes: a list-view with essential fields, and a detail-view that adds enrichment fields (valuation, funding, summary, parent-company link).
The Account schema
Detail-view (list-view is the same minus the enrichment fields at the bottom):
{
"id": "acct_...",
"orgId": "org_...",
"name": "Acme Corporation",
"rootDomain": "acme.example.com",
"fullyQualifiedDomain": "www.acme.example.com",
"primaryIndustry": "SaaS",
"industries": ["SaaS", "Enterprise Software"],
"employeeCount": 1250,
"primaryLocation": "San Francisco, CA",
"profileIconUri": "https://cdn.example.com/logos/acme.png",
"valuation": {
"amount": 850000000,
"currency": "USD",
"asOf": "2026-04-15"
},
"funding": {
"totalRaised": 175000000,
"currency": "USD",
"lastRound": {
"series": "D",
"amount": 90000000,
"closedOn": "2026-04-15"
}
},
"parentCompany": {
"id": "acct_...",
"name": "Acme Holdings"
},
"summary": "Acme Corporation is a mid-market SaaS company focused on ...",
"sourceRefs": {
"salesforce": {
"id": "0011U00000abcXYZ",
"url": "https://acme.my.salesforce.com/0011U00000abcXYZ"
}
},
"createdAt": "2026-05-01T12:00:00Z",
"updatedAt": "2026-07-14T09:30:00Z"
}Ubiquitous fields (both list and detail)
| Field | Type | Description |
|---|---|---|
id | string | Account id, prefixed acct_. |
orgId | string | Your org id, prefixed org_. Present on every response. |
name | string | Company name. |
rootDomain | string | The account's normalised root domain (e.g., acme.example.com). The domain list-filter matches this exactly. |
fullyQualifiedDomain | string | Full domain including subdomain (e.g., www.acme.example.com). |
primaryIndustry | string | Single "canonical" industry classification. |
industries | list | All industry tags — often broader than primaryIndustry. |
employeeCount | number | Enrichment-provided; may be null on very fresh accounts. |
primaryLocation | string | Free-form city / region string. |
profileIconUri | string | Company logo — public-CDN URL, no expiration. Hotlinkable. |
createdAt, updatedAt | string | ISO 8601 UTC. |
Detail-only fields
valuation object
(optional) Enrichment-provided company valuation. null when unenriched.
| Attribute | Type | Description |
|---|---|---|
amount | number | Value in major units of the given currency (e.g., 850000000 with currency: "USD" is $850,000,000). |
currency | string | ISO 4217 (e.g., USD). |
asOf | string | ISO 8601 date. When this value was reported. |
funding object
(optional) Enrichment-provided fundraising history. All amounts are in major units of the given currency.
| Attribute | Type | Description |
|---|---|---|
totalRaised | number | Cumulative amount raised across all rounds. |
currency | string | ISO 4217 (e.g., USD). |
lastRound.series | string | Round label (Seed, A, B, D, IPO, etc.). |
lastRound.amount | number | Amount raised in the last round. |
lastRound.closedOn | string | ISO 8601 date. |
parentCompany object
(optional) Parent-company link. {id, name}. id is null when the parent isn't tracked in Cortex; name is the raw string in that case.
summary string
(optional) LLM-generated summary of the account. May be stale. Regenerated on enrichment cycles, not per-request.
sourceRefs object
External-system cross-references. Map keyed by integration name; each entry carries {id, url}.
sourceRefs.salesforce.id is the raw Salesforce id — not wrapped in the Platform API's ResourceId prefix scheme. Salesforce ids are stable public identifiers by design; wrapping them would obscure a value partners recognise.
{
"salesforce": {
"id": "0011U00000abcXYZ",
"url": "https://acme.my.salesforce.com/0011U00000abcXYZ"
}
}