# Find S-1 IPO Filings on SEC EDGAR

**Use case:** 

Search SEC EDGAR for S-1 registration statements to track upcoming IPOs: company, filing date and document links. No login. Export to CSV or Excel.

## Input

```json
{
  "mode": "search",
  "companies": [
    "AAPL"
  ],
  "searchQuery": "initial public offering",
  "forms": [
    "S-1"
  ],
  "includeProfile": true,
  "includeFilings": true,
  "maxFilingsPerCompany": 50,
  "maxResults": 100,
  "monitorMode": false,
  "monitorStoreName": "sec-edgar-monitor",
  "userAgent": "",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "form": {
    "label": "Form"
  },
  "companyName": {
    "label": "Company"
  },
  "cik": {
    "label": "CIK"
  },
  "tickers": {
    "label": "Tickers",
    "format": "array"
  },
  "filingDate": {
    "label": "Filed"
  },
  "reportDate": {
    "label": "Period"
  },
  "primaryDocDescription": {
    "label": "Description"
  },
  "accessionNumber": {
    "label": "Accession"
  },
  "documentUrl": {
    "label": "Document",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [SEC EDGAR Scraper — Filings, Financials & Companies](https://apify.com/scrapesage/sec-edgar-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/sec-edgar-scraper) to learn more, explore other use cases, and run it yourself.