# SEC Investment Adviser Scraper - RIA Firms & Advisor Leads (`scrapesage/sec-investment-adviser-scraper`) Actor

Scrape the official SEC IAPD registry: investment-adviser (RIA) firms & individual advisers with CRD/SEC numbers, full address, registration status, disciplinary disclosures, Form ADV brochures & lead score. Filter by state; monitor mode.

- **URL**: https://apify.com/scrapesage/sec-investment-adviser-scraper.md
- **Developed by:** [Scrape Sage](https://apify.com/scrapesage) (community)
- **Categories:** Lead generation, Automation, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 adviser firm (ria) scrapeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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 Investment Adviser (IAPD) Scraper — RIA Firms & Advisor Leads

Extract **investment-adviser firms (RIAs) and individual advisers** straight from the **official SEC IAPD registry** ([adviserinfo.sec.gov](https://adviserinfo.sec.gov)) — the authoritative source that powers every "find an advisor" tool. Get **CRD & SEC numbers, full office addresses, registration status, disciplinary-disclosure flags, Form ADV brochures, Form CRS, and each adviser's current firm** — the primary-source data that secondary directories (NAPFA, CFP Board, Google Maps) don't have.

No login, no API key, no browser — a fast, reliable JSON extractor built on the registry's own search API.

### Why this SEC IAPD scraper?

Other "financial advisor" scrapers pull from secondary member directories or Google Maps. This actor goes to the **system of record** — the SEC's Investment Adviser Public Disclosure database — so your data is authoritative, complete, and compliance-grade.

| Data | Secondary-directory scrapers | This actor |
|---|---|---|
| Authoritative SEC source (all registered RIAs) | ❌ subset | ✅ every registrant |
| Firm CRD + SEC number (801-/802-/8-) | ❌ | ✅ |
| Full office address (street, city, state, ZIP) | partial | ✅ |
| IA / BD registration status (active/inactive) | ❌ | ✅ |
| **Disciplinary-disclosure flag** (compliance) | ❌ | ✅ |
| SEC vs state vs ERA registration | ❌ | ✅ opt-in |
| Form ADV Part 2 **brochures** (PDF links) | ❌ | ✅ opt-in |
| Form CRS (client relationship summary) | ❌ | ✅ opt-in |
| Adviser's **current firm** + city/state | partial | ✅ |
| Exams passed, registered states, disclosures | ❌ | ✅ opt-in |
| Lead / quality score (0–100) | ❌ | ✅ |
| State-by-state enumeration + monitor mode | ❌ | ✅ |

### Use cases

- **B2B lead generation** — RIAs are high-value buyers of compliance software, custodians, TAMPs, marketing, tech, and outsourced services. Build a targeted firm list by state, filter by size (`branchesCount`) and clean record (`hasIaDisclosures: false`), and reach them at their filed office address (`address`).
- **Recruiting & M&A** — find individual advisers by firm, state, or name; see their `currentFirms`, `finraRegistrationCount`, and disclosure history for outreach or roll-up sourcing.
- **Compliance & due diligence** — flag firms/advisers with regulatory disclosures (`hasIaDisclosures`, `hasBdDisclosures`), pull their **Form ADV brochures** and **Form CRS**, and monitor status changes over time.
- **Market intelligence** — map the RIA landscape by state, registration type (SEC vs state), and branch footprint.
- **Data enrichment** — resolve a firm or adviser CRD to a full, current, authoritative profile for your CRM.

### How to use

1. [Sign up for Apify](https://console.apify.com/sign-up) — the free plan is enough to try this actor.
2. Open the **SEC Investment Adviser (IAPD) Scraper**, choose **Firms**, **Individuals**, or **Both**, add search queries or US states, and click **Start**.
3. Watch results stream into the dataset table.
4. **Export** as JSON, CSV, Excel, XML, or RSS — or pull results via the [Apify API](https://docs.apify.com/api/v2).

### Input

```json
{
    "recordType": "firms",
    "searchQueries": ["wealth management"],
    "states": ["TX", "NY"],
    "includeDetails": true,
    "activeAdvisersOnly": true,
    "maxResults": 100
}
````

- **recordType** — `firms` (RIAs), `individuals` (advisers/brokers), or `both`.
- **searchQueries** — firm or person names / keywords to search the registry.
- **states** — two-letter US state codes to enumerate every registered adviser in (e.g. `["TX", "NY", "CA"]`) — ideal for a full state database.
- **firmCrds / individualCrds** — resolve specific CRD numbers to full detailed records.
- **includeDetails** *(default false)* — fetch each record's full IAPD detail: for firms, SEC/state/ERA registration, ADV filing date, Form ADV Part 2 brochures (PDF links), Form CRS, and notice-filing states; for individuals, exams, registered states/SROs, disclosures, and employment history.
- **activeAdvisersOnly** *(default true)* — keep only records with an active IA registration (turn off to include inactive registrants and brokers).
- **hasDisclosuresOnly / secRegisteredOnly / keyword** — extra filters.
- **maxResults** *(default 100; `0` = no limit, explicit opt-in)*.
- **monitorMode** *(default false)* — output only new/changed records across scheduled runs (compliance monitoring).

### Output

One record per firm (`type: "firm"`) or adviser (`type: "individual"`):

```json
{
    "type": "firm",
    "firmCrd": "107342",
    "name": "FISHER INVESTMENTS",
    "otherNames": ["FISHER ASSET MANAGEMENT, LLC"],
    "iaSecNumber": "801-29362",
    "iaScope": "ACTIVE",
    "isAdviser": true,
    "hasIaDisclosures": false,
    "branchesCount": 34,
    "address": {
        "street1": "6500 INTERNATIONAL PKWY", "street2": "STE 2050",
        "city": "PLANO", "state": "TX", "postalCode": "75093-8222",
        "country": "United States", "full": "6500 INTERNATIONAL PKWY, STE 2050, PLANO, TX, 75093-8222"
    },
    "isSecRegistered": true,
    "advFilingDate": "04/02/2026",
    "brochures": [
        { "name": "INSTITUTIONAL", "versionId": 1008279, "dateSubmitted": "2/11/2026", "url": "https://adviserinfo.sec.gov/firm/brochure/1008279" }
    ],
    "brochureCount": 4,
    "formCrsUrl": "https://reports.adviserinfo.sec.gov/crs/crs_48e07dea-....pdf",
    "profileUrl": "https://adviserinfo.sec.gov/firm/summary/107342",
    "advPdfUrl": "https://reports.adviserinfo.sec.gov/reports/ADV/107342/PDF/107342.pdf",
    "leadScore": 88,
    "source": "SEC IAPD (adviserinfo.sec.gov)",
    "scrapedAt": "2026-07-02T08:00:00.000Z"
}
```

Detail fields (`brochures`, `isSecRegistered`, `formCrsUrl`, `registeredStates`, `examsPassed`, …) populate with **Fetch full details**. Other fields are `null` only when the SEC filing doesn't contain them (e.g. a pure RIA has no BD number) — never because the scraper skipped them.

> **Note on AUM / employees:** the SEC's live IAPD directory API exposes identity, address, registration status, disclosures, and brochures. Firm-level figures like assets under management and employee counts live in the downloadable Form ADV Part 1 data set and each firm's linked ADV/brochure PDFs (`advPdfUrl`, `brochures[].url`), not the directory API — so this actor returns the authoritative directory record plus direct links to those documents.

### Automate & schedule

Run this actor on autopilot and pull results into your own stack:

- **[Apify API](https://docs.apify.com/api/v2)** — start runs, fetch datasets, and manage schedules over REST.
- **[apify-client for JavaScript](https://docs.apify.com/api/client/js/)** and **[apify-client for Python](https://docs.apify.com/api/client/python/)** — official SDKs.
- **[Schedules](https://docs.apify.com/platform/schedules)** — enumerate a state weekly with Monitor mode to catch new registrations and status/disclosure changes.
- **[Webhooks](https://docs.apify.com/platform/integrations/webhooks)** — trigger CRM import or a Slack alert the moment a run finishes.

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

const client = new ApifyClient({ token: 'MY_APIFY_TOKEN' });

const run = await client.actor('scrapesage/sec-investment-adviser-scraper').call({
    recordType: 'firms',
    states: ['TX'],
    includeDetails: true,
    maxResults: 500,
});

const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(`Got ${items.length} RIA firms`);
```

### Integrate with any app

Connect the dataset to 5,000+ apps — no code required:

- **[Make](https://docs.apify.com/platform/integrations/make)** — multi-step automation scenarios.
- **[Zapier](https://docs.apify.com/platform/integrations/zapier)** — push new adviser leads straight into your CRM.
- **[Slack](https://docs.apify.com/platform/integrations/slack)** — get notified when a monitored state gains new registrants.
- **[Google Drive / Sheets](https://docs.apify.com/platform/integrations/drive)** — auto-export every run to a spreadsheet.
- **[Airbyte](https://docs.apify.com/platform/integrations/airbyte)** — pipe results into your data warehouse.
- **[GitHub](https://docs.apify.com/platform/integrations/github)** — trigger runs from commits or releases.

### Use with AI assistants (MCP)

The output is clean, LLM-ready JSON. You can call this actor from Claude, ChatGPT, or any agent framework through the **[Apify MCP server](https://docs.apify.com/platform/integrations/mcp)** — ask your assistant to "list active RIA firms in Texas with no disclosures and their office addresses" and let it run this scraper for you.

### Agent-ready: autonomous payments (x402 & Skyfire)

This actor is **agent-ready** — AI agents can discover it, run it, and **pay for it autonomously**, with no Apify account and no human in the loop. It uses [pay-per-event](https://docs.apify.com/platform/actors/publishing/monetize/pay-per-event) pricing and [limited permissions](https://docs.apify.com/platform/actors/development/permissions), so it qualifies for Apify's agentic-payment standards:

- **[x402](https://docs.apify.com/platform/integrations/x402)** — an open, HTTP-native payment protocol. Agents pay per run in USDC on the Base network directly through the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp) — no account, no API key.
- **[Skyfire](https://docs.apify.com/platform/integrations/skyfire)** — agent-to-service payments for fully autonomous AI-agent workflows.

Building an AI agent, MCP tool, or autonomous data pipeline? This scraper is ready to plug in and pay as it goes.

### More scrapers from scrapesage

Build a complete **financial-services & B2B lead stack**:

- **[SEC EDGAR Scraper](https://apify.com/scrapesage/sec-edgar-scraper)** — company filings, financials, and insider data.
- **[Growjo Scraper](https://apify.com/scrapesage/growjo-scraper)** — company revenue, funding, and B2B leads.
- **[LinkedIn Company Scraper](https://apify.com/scrapesage/linkedin-company-scraper)** — firmographics and decision-maker signals.
- **[Website Contact Scraper](https://apify.com/scrapesage/website-contact-scraper)** — emails, phones, and socials from any domain list.
- **[Yahoo Finance Scraper](https://apify.com/scrapesage/yahoo-finance-scraper)** — quotes, financials, and analyst data.
- **[TaxBuzz Scraper](https://apify.com/scrapesage/taxbuzz-scraper)** — tax & accounting professional leads.
- **[Google Maps Scraper](https://apify.com/scrapesage/google-maps-scraper)** — local business leads with contact details.
- **[FastExpert Scraper](https://apify.com/scrapesage/fastexpert-agent-scraper)** — real-estate agent leads and reviews.

### Tips

- **Build a state database**: put a state code in `states` and raise `maxResults` — each state returns thousands of registrants; the actor pages through them for you.
- **Compliance monitoring**: combine `hasDisclosuresOnly` with a [Schedule](https://docs.apify.com/platform/schedules) + Monitor mode to track disciplinary changes.
- **Cost control**: leave `includeDetails` off for large lead sweeps (identity + address + status are already in the search results); turn it on when you need brochures, registration flags, or exams.
- **CRD lookups**: paste known CRD numbers into `firmCrds` / `individualCrds` to enrich them directly — always fully detailed.

### FAQ

**What is IAPD / CRD?** IAPD is the SEC's Investment Adviser Public Disclosure system. A CRD number is the unique regulator ID for each firm and individual — the number in `adviserinfo.sec.gov/firm/summary/<CRD>`.

**Do I get RIAs only, or brokers too?** Both are searchable. By default `activeAdvisersOnly` keeps active investment advisers; turn it off to include brokers and inactive registrants.

**Where do AUM and employee counts come from?** Those live in the downloadable Form ADV Part 1 data and each firm's ADV/brochure PDFs — this actor returns the authoritative directory record plus direct links (`advPdfUrl`, `brochures[].url`, `formCrsUrl`).

**Can I export to Google Sheets, CSV, or Excel?** Yes — one click in the dataset view, or automatically on every run via the [Google Drive integration](https://docs.apify.com/platform/integrations/drive).

**Is this data public?** Yes. The SEC and states require investment advisers to file this information publicly via IAPD. You are responsible for using it in compliance with applicable laws.

**A field is null — why?** Some firms genuinely don't have a BD number (pure RIAs), DBAs, or a Form CRS. Detail fields require the "Fetch full details" option. Fields are `null` only when the data doesn't exist on the filing.

### Need help?

Open an issue on the actor's **Issues** tab, or visit the [Apify help center](https://help.apify.com/). Feature requests are welcome — this actor is actively maintained.

# Actor input Schema

## `recordType` (type: `string`):

Scrape investment-adviser firms (RIAs), individual advisers/brokers, or both, from the official SEC IAPD registry.

## `searchQueries` (type: `array`):

Firm or person names / keywords to search (e.g. "wealth management", "Fisher Investments", "Smith"). Each is searched in the SEC IAPD registry.

## `states` (type: `array`):

Two-letter US state codes to enumerate ALL registered advisers in (e.g. \["TX", "NY", "CA"]). Great for building a full state-by-state adviser database. Combine with Max results.

## `firmCrds` (type: `array`):

Specific firm CRD ids (the number in adviserinfo.sec.gov/firm/summary/<CRD>) to fetch as detailed firm records.

## `individualCrds` (type: `array`):

Specific individual CRD ids (the number in adviserinfo.sec.gov/individual/summary/<CRD>) to fetch as detailed adviser records.

## `includeDetails` (type: `boolean`):

Fetch each record's full IAPD detail — for firms: SEC/state/ERA registration flags, ADV filing date, Form ADV Part 2 brochures (with PDF links), Form CRS, notice-filing states; for individuals: exams, registered states/SROs, disclosure count, employment history. One extra request per record.

## `activeAdvisersOnly` (type: `boolean`):

Keep only records whose investment-adviser registration is ACTIVE (firms currently registered as RIAs; individuals currently registered as advisers). Turn OFF to also include inactive registrants and brokers.

## `hasDisclosuresOnly` (type: `boolean`):

Keep only records that have regulatory disclosures/disciplinary history flagged — useful for compliance and due-diligence.

## `secRegisteredOnly` (type: `boolean`):

For firms, keep only those registered with the SEC (vs state-registered). Requires "Fetch full details".

## `keyword` (type: `string`):

Keep only records whose name, DBAs, or current firm contains this text.

## `maxResults` (type: `integer`):

Maximum number of records to return. Set to 0 for no limit (explicit opt-in; use with a run timeout).

## `monitorMode` (type: `boolean`):

Track records across runs in a key-value store and output only those that are new or whose status/firm/disclosures changed. Pairs with Apify Schedules for compliance monitoring.

## `monitorStoreName` (type: `string`):

Named key-value store for monitor-mode state (lowercase letters, digits, hyphens).

## `proxyConfiguration` (type: `object`):

The SEC IAPD API is a clean public endpoint; Apify Proxy (the default) is used to rotate IPs on large sweeps. Datacenter US is plenty.

## Actor input object example

```json
{
  "recordType": "firms",
  "searchQueries": [
    "wealth management"
  ],
  "includeDetails": false,
  "activeAdvisersOnly": true,
  "hasDisclosuresOnly": false,
  "secRegisteredOnly": false,
  "maxResults": 100,
  "monitorMode": false,
  "monitorStoreName": "sec-iapd-monitor",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

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

All scraped SEC IAPD firm and individual records as JSON items in the default dataset.

# 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 = {
    "searchQueries": [
        "wealth management"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapesage/sec-investment-adviser-scraper").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 = { "searchQueries": ["wealth management"] }

# Run the Actor and wait for it to finish
run = client.actor("scrapesage/sec-investment-adviser-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "searchQueries": [
    "wealth management"
  ]
}' |
apify call scrapesage/sec-investment-adviser-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapesage/sec-investment-adviser-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "SEC Investment Adviser Scraper - RIA Firms & Advisor Leads",
        "description": "Scrape the official SEC IAPD registry: investment-adviser (RIA) firms & individual advisers with CRD/SEC numbers, full address, registration status, disciplinary disclosures, Form ADV brochures & lead score. Filter by state; monitor mode.",
        "version": "0.1",
        "x-build-id": "c2OcCUNUTq8AqnFhq"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapesage~sec-investment-adviser-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapesage-sec-investment-adviser-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/scrapesage~sec-investment-adviser-scraper/runs": {
            "post": {
                "operationId": "runs-sync-scrapesage-sec-investment-adviser-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/scrapesage~sec-investment-adviser-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-scrapesage-sec-investment-adviser-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "recordType": {
                        "title": "What to scrape",
                        "enum": [
                            "firms",
                            "individuals",
                            "both"
                        ],
                        "type": "string",
                        "description": "Scrape investment-adviser firms (RIAs), individual advisers/brokers, or both, from the official SEC IAPD registry.",
                        "default": "firms"
                    },
                    "searchQueries": {
                        "title": "Search queries (names / keywords)",
                        "type": "array",
                        "description": "Firm or person names / keywords to search (e.g. \"wealth management\", \"Fisher Investments\", \"Smith\"). Each is searched in the SEC IAPD registry.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "states": {
                        "title": "US states",
                        "type": "array",
                        "description": "Two-letter US state codes to enumerate ALL registered advisers in (e.g. [\"TX\", \"NY\", \"CA\"]). Great for building a full state-by-state adviser database. Combine with Max results.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "firmCrds": {
                        "title": "Firm CRD / SEC numbers",
                        "type": "array",
                        "description": "Specific firm CRD ids (the number in adviserinfo.sec.gov/firm/summary/<CRD>) to fetch as detailed firm records.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "individualCrds": {
                        "title": "Individual CRD numbers",
                        "type": "array",
                        "description": "Specific individual CRD ids (the number in adviserinfo.sec.gov/individual/summary/<CRD>) to fetch as detailed adviser records.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "includeDetails": {
                        "title": "Fetch full details",
                        "type": "boolean",
                        "description": "Fetch each record's full IAPD detail — for firms: SEC/state/ERA registration flags, ADV filing date, Form ADV Part 2 brochures (with PDF links), Form CRS, notice-filing states; for individuals: exams, registered states/SROs, disclosure count, employment history. One extra request per record.",
                        "default": false
                    },
                    "activeAdvisersOnly": {
                        "title": "Filter: active advisers only",
                        "type": "boolean",
                        "description": "Keep only records whose investment-adviser registration is ACTIVE (firms currently registered as RIAs; individuals currently registered as advisers). Turn OFF to also include inactive registrants and brokers.",
                        "default": true
                    },
                    "hasDisclosuresOnly": {
                        "title": "Filter: has disclosures (disciplinary) only",
                        "type": "boolean",
                        "description": "Keep only records that have regulatory disclosures/disciplinary history flagged — useful for compliance and due-diligence.",
                        "default": false
                    },
                    "secRegisteredOnly": {
                        "title": "Filter: SEC-registered firms only",
                        "type": "boolean",
                        "description": "For firms, keep only those registered with the SEC (vs state-registered). Requires \"Fetch full details\".",
                        "default": false
                    },
                    "keyword": {
                        "title": "Filter: keyword match",
                        "type": "string",
                        "description": "Keep only records whose name, DBAs, or current firm contains this text."
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of records to return. Set to 0 for no limit (explicit opt-in; use with a run timeout).",
                        "default": 100
                    },
                    "monitorMode": {
                        "title": "Monitor mode (only new / changed)",
                        "type": "boolean",
                        "description": "Track records across runs in a key-value store and output only those that are new or whose status/firm/disclosures changed. Pairs with Apify Schedules for compliance monitoring.",
                        "default": false
                    },
                    "monitorStoreName": {
                        "title": "Monitor store name",
                        "type": "string",
                        "description": "Named key-value store for monitor-mode state (lowercase letters, digits, hyphens).",
                        "default": "sec-iapd-monitor"
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "The SEC IAPD API is a clean public endpoint; Apify Proxy (the default) is used to rotate IPs on large sweeps. Datacenter US is plenty.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
