# Research four companies end to end, twelve sections each

**Use case:** 

Four domains in, four dossiers out, one row each. Every section is read from a first-party source and stamped with the request that produced it: firmographics and tech stack from the company's own site, company contacts, DNS, the ATS it hires through, news, SEC filings, federal awards, recalls, YC batch and apps. An empty section is an answer with the query that proves it. $8.00 per 1,000.

## Input

```json
{
  "companies": [
    "stripe.com",
    "nike.com",
    "airbnb.com",
    "allbirds.com"
  ],
  "sections": [
    "profile",
    "tech",
    "contacts",
    "domain",
    "jobs",
    "news",
    "filings",
    "awards",
    "recalls",
    "yc",
    "apps"
  ],
  "maxItemsPerSection": 10,
  "includeSummary": true,
  "flattenSections": false,
  "company": "",
  "includeFinancials": false,
  "financialsMaxPeriods": 8,
  "financialsPeriodKind": "annual",
  "filingForms": [
    "10-K",
    "10-Q",
    "8-K",
    "20-F",
    "S-1"
  ],
  "newsWindowDays": 90,
  "newsSiteScope": false,
  "awardsWindowDays": 1825,
  "recallsWindowDays": 3650,
  "maxPagesPerSite": 4,
  "includeAppDetails": false,
  "includePersonalEmails": false,
  "secUserAgentContact": "Insight Solutions support@insight.solutions",
  "openFdaApiKey": "<YOUR_SECRET>",
  "maxSecsPerCompany": 60,
  "maxConcurrency": 3,
  "sectionConcurrency": 4,
  "maxRunSecs": 300,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "companyName": {
    "label": "Company name",
    "format": "string"
  },
  "resolvedDomain": {
    "label": "Resolved domain",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "sectionCount": {
    "label": "Sections filled (count)",
    "format": "integer"
  },
  "itemCount": {
    "label": "Items",
    "format": "integer"
  },
  "summary": {
    "label": "Summary",
    "format": "string"
  },
  "identifiers": {
    "label": "Join keys",
    "format": "object"
  },
  "partial": {
    "label": "Partial",
    "format": "boolean"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Company Dossier API — Domain to Full Company Answer](https://apify.com/insight.solutions/company-dossier-api.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/insight.solutions/company-dossier-api.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/insight.solutions/company-dossier-api.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
