# SEC EDGAR Filings Scraper & Search API - 10-K, 10-Q, 8-K (`captainhandsome/sec-edgar-filings-search`) Actor

Find SEC filings by ticker, CIK or company name. An SEC filings scraper over the official EDGAR full-text and submissions API, with form-type and date filters and clean CSV-ready rows carrying direct filing and document URLs. No EDGAR API key required.

- **URL**: https://apify.com/captainhandsome/sec-edgar-filings-search.md
- **Developed by:** [Joseph McRell](https://apify.com/captainhandsome) (community)
- **Categories:** Business, Developer tools
- **Stats:** 2 total users, 1 monthly users, 88.9% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.40 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

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 examples already wired to this Actor's own input schema, see the [API](#api) section below.

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`).

# README

## SEC EDGAR Filings Search & Export

Search official SEC EDGAR filings by ticker, CIK, or company name. Export current and historical filing metadata with direct document URLs. Results are returned as clean, typed dataset rows suitable for CSV, JSON, automation, and AI-agent workflows.

### What data can I extract?

Each row carries 71 flat columns, and the dataset schema documents every one of them before a run starts.

- **Filing**: `form`, `is_amendment`, `filing_date`, `report_date`, `acceptance_datetime`, `accession_number`, `act`, `file_number`, `film_number`, `items`, `size_bytes`, `is_xbrl`, `is_inline_xbrl`, `primary_document`, `primary_document_description`.
- **Registrant**: `cik`, `company_name`, `ticker`, `tickers`, `exchange`, `exchanges`, `entity_type`, `filer_category`, `owner_org`, `ein`, `phone`, `sic`, `sic_description`, `state_of_incorporation`, `state_of_incorporation_description`, `fiscal_year_end`, `former_names`, `current_name_since`, `has_insider_transactions_as_owner`, `has_insider_transactions_as_issuer`.
- **Addresses**, split into scalar columns plus a one-line version for CRM import: `business_address`, `business_address_street1`, `business_address_street2`, `business_address_city`, `business_address_state`, `business_address_state_description`, `business_address_zip`, `business_address_country`, `business_address_is_foreign`, and `mailing_address`, `mailing_address_street1`, `mailing_address_street2`, `mailing_address_city`, `mailing_address_state`, `mailing_address_zip`, `mailing_address_country`.
- **Direct links**: `filing_url`, `primary_document_url`, `filing_directory_url`, `filing_txt_url` (the whole submission as one text file), `company_submissions_url`, `company_filings_url`.
- **Filing header detail**, added when `include_filing_details` is on: `document_count`, `document_types`, `exhibit_count`, `item_descriptions` (readable 8-K item names), `filer_names`, `filer_ciks`, `reporting_owner_names`, `reporting_owner_ciks`, `issuer_name`, `issuer_cik`, `subject_company_name`, `subject_company_cik`, `group_members`, `filing_date_changed`.

### Input example

```json
{
  "companies": [
    "AAPL",
    "MSFT"
  ],
  "forms": [
    "10-K",
    "10-Q",
    "8-K"
  ],
  "date_from": "2024-01-01",
  "include_amendments": false,
  "include_filing_details": true,
  "max_items": 25,
  "sec_user_agent": "Your Organization monitored-email@your-domain.com"
}
```

`max_items` is a hard output and billing ceiling. Source fields may be null when the upstream public record does not provide them.

### Output example

Each dataset item is one normalized result. The field names shown under What data can I extract are emitted as typed JSON properties and can be exported as CSV, Excel, XML, or RSS.

### Common use cases

- Lead, market, compliance, and competitive research
- Scheduled monitoring and change detection
- CSV/JSON enrichment pipelines
- AI-agent retrieval and workflow automation

### Pricing and cost control

Output is billed per result at **$0.002 per result** (about $2.00 per 1,000 results), plus a $0.0005 Actor-start charge billed once per gigabyte of memory at run start. Use `max_items` to cap both output volume and charges. The price shown on the Apify Store listing is authoritative.

### Use with AI agents and MCP

Apify's MCP server can discover and call this Actor. Example intent:

> Retrieve Apple and Microsoft 10-K and 10-Q filings filed since 2024.

Use the JSON input above as the tool arguments, changing filters and `max_items` as needed. The strict input schema rejects unknown properties, and the typed dataset schema describes the returned tool data.

### Reliability

Runs use bounded retries, deduplication, hard result limits, and explicit failure handling. Browser-based sources are monitored by contract canaries and staged selector repair; official-API sources use deterministic contract canaries rather than DOM repair.

### Limitations and responsible use

- Publicly available source data only; coverage and field availability depend on the upstream source.
- A successful search can legitimately return no matching records.
- Point-in-time fields can change after collection.
- Use the data in accordance with applicable law and source terms.
- Do not use results for prohibited eligibility, discrimination, or sensitive-person profiling decisions.

### FAQ

#### What search phrases does this Actor support?

The input schema lists exact accepted fields and examples. Primary discovery terms: SEC EDGAR scraper, SEC filings search, 10-K filings API, company filings export.

#### Can I control cost?

Yes. Set `max_items`; it is enforced as the maximum number of output records.

#### Can an AI agent call it?

Yes. Use Apify MCP `search-actors`, inspect this Actor's schema, then call it with the same JSON accepted in Console.

#### Does it require an external API key?

No external API key is required. SEC EDGAR uses the publisher contact by default and accepts an optional monitored-contact override in `sec_user_agent`.

### Changes

See [CHANGELOG.md](./CHANGELOG.md) for contract and maintenance updates.

# Changelog

This Actor's version history is a separate document: https://apify.com/captainhandsome/sec-edgar-filings-search/changelog.md

# Actor input Schema

## `company` (type: `string`):

Ticker, 1-10 digit CIK, or exact company name. Ignored when companies is supplied.

## `companies` (type: `array`):

Up to 25 tickers, CIK values, or exact company names.

## `forms` (type: `array`):

Exact forms such as 10-K, 10-Q, 8-K, S-1, or DEF 14A. Empty returns all forms.

## `date_from` (type: `string`):

Inclusive earliest filing date in YYYY-MM-DD format.

## `date_to` (type: `string`):

Inclusive latest filing date in YYYY-MM-DD format.

## `include_amendments` (type: `boolean`):

Include SEC forms ending in /A.

## `include_filing_details` (type: `boolean`):

Read each filing's official SEC submission header to add document count, exhibit types, 8-K item descriptions, reporting owners, issuer, subject company, and Schedule 13D group members. Adds one request per filing, so runs take longer. Leave off for fast filing metadata only.

## `max_items` (type: `integer`):

Hard total output and billing ceiling across all companies.

## `sec_user_agent` (type: `string`):

SEC requires every automated request to identify the requester. Runs use this Actor's publisher contact by default, so you can leave this blank. Supply your own organisation and a monitored email - 'Acme Research data@acme.com' - if you would rather your own traffic be identified to the SEC. Placeholders are rejected.

## Actor input object example

```json
{
  "company": "AAPL",
  "date_from": "2024-01-01",
  "include_amendments": true,
  "include_filing_details": false,
  "max_items": 10
}
```

# Actor output Schema

## `results` (type: `string`):

One flat record per filing.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("captainhandsome/sec-edgar-filings-search").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("captainhandsome/sec-edgar-filings-search").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call captainhandsome/sec-edgar-filings-search --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,captainhandsome/sec-edgar-filings-search"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/hT1OkNxS3rRJ2Q4le/builds/scYsPjyzvFWrfpOgW/openapi.json
