# Scrape SEC Company Profiles & Addresses

**Use case:** 

Scrape SEC EDGAR company profiles: name, tickers, exchanges, SIC industry, address, phone, website and former names, by ticker, CIK or name.

## Input

```json
{
  "mode": "companyFilings",
  "companies": [
    "AAPL",
    "AMZN",
    "META"
  ],
  "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"
  },
  "name": {
    "label": "Company"
  },
  "cik": {
    "label": "CIK"
  },
  "tickers": {
    "label": "Tickers",
    "format": "array"
  },
  "exchanges": {
    "label": "Exchanges",
    "format": "array"
  },
  "sicDescription": {
    "label": "Industry (SIC)"
  },
  "category": {
    "label": "Filer category"
  },
  "stateOfIncorporation": {
    "label": "Incorporated"
  },
  "phone": {
    "label": "Phone"
  },
  "businessAddress": {
    "label": "Business address"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "lastFilingDate": {
    "label": "Last filing"
  },
  "profileUrl": {
    "label": "EDGAR profile",
    "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.