# Vendor risk: recalls, federal awards and filings per supplier

**Use case:** 

The two questions a vendor questionnaire asks first: has anything of theirs been recalled, and does the US government buy from them. Reads CPSC SaferProducts and three openFDA enforcement endpoints by firm name, USAspending by recipient, and SEC EDGAR for whether they file at all. "No recalls found" arrives with the query that proves it. $8.00 per 1,000.

## Input

```json
{
  "companies": [
    "nike.com",
    "allbirds.com",
    "3m.com",
    "kimberly-clark.com"
  ],
  "sections": [
    "profile",
    "contacts",
    "domain",
    "filings",
    "awards",
    "recalls"
  ],
  "maxItemsPerSection": 25,
  "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`).
