# Compare Company Funding Filings

**Use case:** 

Look up specific companies in SEC Form D filings and compare fundraising amounts, securities types, dates, and filing links.

## Input

```json
{
  "mode": "company",
  "searchQuery": "artificial intelligence",
  "companyNames": [
    "SpaceX",
    "Tesla"
  ],
  "includeAmendments": true,
  "maxResults": 25
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "filingDate": {
    "label": "Filed",
    "format": "text"
  },
  "totalAmountSold": {
    "label": "Amount Raised",
    "format": "number"
  },
  "totalOfferingAmount": {
    "label": "Offering Size",
    "format": "text"
  },
  "industryGroup": {
    "label": "Industry",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "entityType": {
    "label": "Entity Type",
    "format": "text"
  },
  "securitiesType": {
    "label": "Securities",
    "format": "text"
  },
  "exemptions": {
    "label": "Exemptions",
    "format": "text"
  },
  "minimumInvestment": {
    "label": "Min Investment",
    "format": "number"
  },
  "formType": {
    "label": "Form",
    "format": "text"
  },
  "filingUrl": {
    "label": "SEC Filing",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Company Funding Tracker](https://apify.com/automation-lab/company-funding-tracker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/company-funding-tracker) to learn more, explore other use cases, and run it yourself.