# SEC Filing Full-Text Search - Search All EDGAR Filings

**Use case:** 

Full-text search across all SEC EDGAR filings by keyword, optionally filtered by form type. Find filings mentioning any term. No API key.

## Input

```json
{
  "mode": "search",
  "companies": [
    "AAPL",
    "TSLA"
  ],
  "dataTypes": [
    "company",
    "filings"
  ],
  "forms": [
    "10-K"
  ],
  "maxFilings": 40,
  "searchQueries": [
    "artificial intelligence"
  ],
  "limit": 25
}
```

## Output

```json
{
  "dataType": {
    "label": "Type",
    "format": "text"
  },
  "name": {
    "label": "Company",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "form": {
    "label": "Form",
    "format": "text"
  },
  "filingDate": {
    "label": "Filed",
    "format": "text"
  },
  "sicDescription": {
    "label": "Industry",
    "format": "text"
  },
  "cik": {
    "label": "CIK",
    "format": "text"
  },
  "accessionNumber": {
    "label": "Accession",
    "format": "text"
  },
  "query": {
    "label": "Query",
    "format": "text"
  }
}
```

## About this Actor

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