# List private offerings that mention a sector

**Use case:** 

Search Form D filings for a keyword such as artificial intelligence since a date, amendments included, and get one row per offering with the issuer, amounts and executives.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://efts.sec.gov/LATEST/search-index?forms=D"
    },
    {
      "url": "https://www.sec.gov/Archives/edgar/data/1740149/000174051818000001/0001740518-18-000001-index.htm"
    },
    {
      "url": "https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=2114445&type=D"
    }
  ],
  "maxItems": 200,
  "maxItemsPerEntry": 30,
  "formType": "D",
  "includeAmendments": true,
  "keyword": "artificial intelligence",
  "dateFrom": "2026-07-01",
  "onlyNew": false
}
```

## Output

```json
{
  "company_name": {
    "label": "Company name",
    "format": "string"
  },
  "cik": {
    "label": "CIK",
    "format": "string"
  },
  "entity_type": {
    "label": "Entity type",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "zip": {
    "label": "Zip",
    "format": "string"
  },
  "year_of_inc": {
    "label": "Year of inc",
    "format": "string"
  },
  "state_of_inc": {
    "label": "State of inc",
    "format": "string"
  },
  "industry_group": {
    "label": "Industry group",
    "format": "string"
  },
  "federal_exemptions": {
    "label": "Federal exemptions",
    "format": "string"
  },
  "date_of_first_sale": {
    "label": "Date of first sale",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [SEC Form D Scraper: Reg D Funding Rounds](https://apify.com/pradio/sec-edgar-form-d.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/pradio/sec-edgar-form-d.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/pradio/sec-edgar-form-d.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`).
