# SEC Filing Intelligence (`authoritative_plantain/sec-filing-intelligence`) Actor

Turn SEC 10-Q, 10-K, and 8-K filings into structured, explainable intelligence.

- **URL**: https://apify.com/authoritative\_plantain/sec-filing-intelligence.md
- **Developed by:** [Humberto Suarez](https://apify.com/authoritative_plantain) (community)
- **Categories:**
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## SEC Filing Intelligence

SEC Filing Intelligence is an Apify Actor that turns SEC filings into structured, explainable research data. It retrieves a company's latest 10-Q, 10-K, or 8-K filing, optionally finds a period-compatible prior filing, and returns the information needed to understand what changed.

### What It Provides

- Ticker-to-CIK resolution and authoritative SEC filing metadata
- Period-compatible financial comparisons from SEC Company Facts XBRL data
- Filing-text changes across risk factors, legal proceedings, and management discussion
- Deterministic liquidity, materiality, direction, and confidence assessments
- 8-K event classification and materiality
- Optional AI analysis of risks, tone, guidance, and legal developments

Every output includes the selected accession number, filing date, and report date. Financial changes include their source concept, units, period metadata, and comparison type.

### Run In Apify

Open the Actor in Apify Console, select **Start**, and use an input such as:

```json
{
  "ticker": "NVDA",
  "filingType": "10-Q",
  "comparePrevious": true,
  "includeAIAnalysis": false,
  "analysis": {
    "financials": true,
    "liquidity": true
  }
}
```

#### Input Reference

| Field | Type | Default | Description |
| --- | --- | --- | --- |
| `ticker` | string | required | U.S. ticker symbol, one to five letters, for example `NVDA`. |
| `filingType` | `10-Q` | `10-K` | `8-K` | `10-Q` | Filing type to analyze. |
| `comparePrevious` | boolean | `true` | Finds a period-compatible prior filing when one is available. |
| `includeAIAnalysis` | boolean | `false` | Requests optional AI analysis when the Actor operator has configured an LLM provider. |
| `analysis.financials` | boolean | `true` | Extracts available XBRL financial metrics and comparisons. |
| `analysis.liquidity` | boolean | `false` | Produces a deterministic liquidity assessment from verified metrics. |
| `analysis.riskFactors` | boolean | `false` | Requests AI analysis of risk-factor changes. |
| `analysis.managementTone` | boolean | `false` | Requests AI analysis of MD\&A tone. |
| `analysis.guidance` | boolean | `false` | Requests AI analysis of guidance in MD\&A. |
| `analysis.legal` | boolean | `false` | Requests AI analysis of legal proceedings. |

### Use The API

Replace `<actor-id>` with the Actor ID or `username~actor-name`, and keep your Apify token in an environment variable rather than source code.

```bash
export APIFY_TOKEN="your_apify_api_token"

curl --request POST \
  "https://api.apify.com/v2/actors/<actor-id>/run-sync-get-dataset-items" \
  --header "Authorization: Bearer ${APIFY_TOKEN}" \
  --header "Content-Type: application/json" \
  --data '{
    "ticker": "NVDA",
    "filingType": "10-Q",
    "comparePrevious": true,
    "includeAIAnalysis": false,
    "analysis": { "financials": true, "liquidity": true }
  }'
```

The synchronous endpoint returns dataset items after the run finishes. It has a 300-second request limit, so production integrations should start runs asynchronously, store the returned run ID, and retrieve the default dataset once the run succeeds.

### AI Analysis

Set `includeAIAnalysis` to `true` and request the relevant analysis options:

```json
{
  "ticker": "IONQ",
  "filingType": "10-Q",
  "comparePrevious": true,
  "includeAIAnalysis": true,
  "analysis": {
    "financials": true,
    "riskFactors": true,
    "managementTone": true,
    "guidance": true,
    "legal": true
  }
}
```

AI analysis is optional. Each accepted AI result contains at least one verbatim quote from the relevant SEC filing section. If the filing does not contain the required section, or the provider is not configured, that analysis is omitted rather than replaced with an unsupported conclusion.

Actor operators must configure `SEC_CONTACT_EMAIL` for SEC fair access. AI requires an operator-managed `ANTHROPIC_API_KEY` or `OPENAI_API_KEY`. Never place either provider key or an Apify API token in input JSON, source code, or a public README.

### Output

Each run writes one JSON record to the default dataset. Common fields are:

```json
{
  "company": {
    "ticker": "NVDA",
    "cik": "0001045810",
    "name": "NVIDIA CORP"
  },
  "filing": {
    "current": {
      "accessionNumber": "0001045810-26-000075",
      "filingType": "10-Q",
      "reportDate": "2026-07-26"
    },
    "previous": null
  },
  "financialChanges": [],
  "metadata": {
    "analysisVersion": "5.0.0",
    "phase": "PHASE_5_EXPLAINABLE_SCORING"
  }
}
```

Optional fields include `metrics`, `sections`, `textualChanges`, `liquidity`, `materialChanges`, `summary`, `keyTakeaways`, `scoring`, `aiAnalysis`, and `eightKAnalysis`. Their availability depends on the filing type, requested options, SEC disclosure structure, and whether a safe comparable filing was found.

### Best Practices

- Use `comparePrevious: true` for 10-Q and 10-K analysis, but handle a missing `filing.previous` as a valid outcome.
- Store the filing accession number and report date with downstream research so results remain reproducible.
- Treat absent metrics or AI fields as insufficient evidence, not as zero values or negative findings.
- Check the evidence quotes and original SEC filing before using an AI conclusion in a decision or report.
- Use asynchronous Actor runs and persist the run ID for production workloads; reserve synchronous calls for short interactive requests.
- Set a maximum run cost in your Apify integration and monitor runs before enabling paid AI analysis at scale.
- Do not use this Actor as the sole basis for investment, legal, tax, or financial decisions.

### Supported Filings

- `10-Q` quarterly reports
- `10-K` annual reports
- `8-K` current reports

### Disclaimer

SEC Filing Intelligence is intended for research and automation workflows. It does not provide investment, legal, tax, or financial advice. Verify material conclusions against the original SEC filing.

# Actor input Schema

## `ticker` (type: `string`):

Stock ticker symbol (e.g., NVDA, AAPL)

## `filingType` (type: `string`):

Type of SEC filing to analyze

## `comparePrevious` (type: `boolean`):

Whether to find and compare with previous filing

## `includeAIAnalysis` (type: `boolean`):

Include AI-powered filing intelligence. Requires OPENAI\_API\_KEY or ANTHROPIC\_API\_KEY.

## `analysis` (type: `object`):

Specific analysis components to include

## Actor input object example

```json
{
  "ticker": "NVDA",
  "filingType": "10-Q",
  "comparePrevious": true,
  "includeAIAnalysis": false
}
```

# Actor output Schema

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

No description

# 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 = {
    "ticker": "NVDA"
};

// Run the Actor and wait for it to finish
const run = await client.actor("authoritative_plantain/sec-filing-intelligence").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 = { "ticker": "NVDA" }

# Run the Actor and wait for it to finish
run = client.actor("authoritative_plantain/sec-filing-intelligence").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 '{
  "ticker": "NVDA"
}' |
apify call authoritative_plantain/sec-filing-intelligence --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,authoritative_plantain/sec-filing-intelligence"
        }
    }
}

```

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/RI37FAqfK917WbLUD/builds/ai8QpLobIQaJ4TrsO/openapi.json
