# Company Registry & Filings Aggregator (`fascinating_lentil/company-registry-filings-aggregator`) Actor

Aggregate official company registry and SEC filing data from public APIs. Entity-level company facts only, with no officer, director, or personal-data fields.

- **URL**: https://apify.com/fascinating\_lentil/company-registry-filings-aggregator.md
- **Developed by:** [Md Jakaria Mirza](https://apify.com/fascinating_lentil) (community)
- **Categories:** Automation, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $4.00 / 1,000 company record 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

## Company Registry & Filings Aggregator

Collect normalized, entity-level company registry and filing data from official public APIs. This Actor is designed for KYC, due diligence, finance research, sales/market research, and compliance workflows that need company facts without collecting personal data.

### Sources

- UK Companies House Public Data API: company search, company profile, and filing history.
- US SEC EDGAR submissions data: company identity, tickers, exchanges, SIC information, and recent filings.

This Actor uses official JSON APIs only. It does not use browser scraping and it does not call Companies House officers or persons-with-significant-control endpoints.

### What It Extracts

- Source and search query
- Company number or SEC CIK
- Company name, status, type, jurisdiction, incorporation date
- SIC codes and descriptions where available
- Registered office address for Companies House records
- Tickers, exchanges, state of incorporation, fiscal year end for SEC records
- UK accounts and confirmation statement dates where available
- Recent filing metadata and document URLs
- Source URL, attribution, and scrape timestamp

SEC ownership-oriented forms (`3`, `4`, `5`, `144`, Schedule 13D/G, and amendments) are excluded from `recentFilings` to keep output focused on company/entity-level filings.

### Input

| Field | Type | Description |
| --- | --- | --- |
| `sources` | array | `companies_house`, `sec_edgar`, or both. |
| `query` | string | Company name, ticker, or broad search term. |
| `companyNames` | array | Optional list of names or tickers to search. |
| `companyNumbers` | array | Optional direct UK Companies House company numbers. |
| `ciks` | array | Optional direct SEC CIK identifiers. |
| `maxResults` | integer | Maximum clean records to save, 1 to 1000. |
| `companiesHouseApiKey` | secret string | Free Companies House API key, required only for `companies_house`. |
| `secUserAgent` | string | Descriptive SEC User-Agent. Replace the default contact email for production use. |

### Sample Input

```json
{
  "sources": ["sec_edgar"],
  "query": "Microsoft",
  "maxResults": 3,
  "secUserAgent": "CompanyRegistryFilingsAggregator/1.0 contact@example.com"
}
````

### Sample Output

```json
{
  "source": "sec_edgar",
  "query": "Microsoft",
  "entityId": "0000789019",
  "companyName": "MICROSOFT CORP",
  "status": null,
  "entityType": "public_company",
  "jurisdiction": "US SEC",
  "incorporationDate": null,
  "sicCodes": ["SIC:7372", "SIC_DESCRIPTION:Services-Prepackaged Software"],
  "registeredAddress": null,
  "tickers": ["MSFT"],
  "exchanges": ["Nasdaq"],
  "stateOfIncorporation": "WA",
  "accountsNextDue": null,
  "accountsLastMadeUpTo": null,
  "confirmationStatementNextDue": null,
  "confirmationStatementLastMadeUpTo": null,
  "dissolutionDate": null,
  "fiscalYearEnd": "0630",
  "lastFilingDate": "2026-04-24",
  "recentFilings": [
    {
      "formType": "10-Q",
      "filingDate": "2026-04-24",
      "accessionNumber": "0000950170-26-000000",
      "documentUrl": "https://www.sec.gov/Archives/edgar/data/789019/000095017026000000/example.htm"
    }
  ],
  "sourceUrl": "https://www.sec.gov/edgar/browse/?CIK=789019&owner=exclude",
  "attribution": "SEC EDGAR public company submissions data.",
  "scrapedAt": "2026-06-14T00:00:00.000Z"
}
```

### Use Cases

- KYC checks and entity verification
- Supplier and customer due diligence
- Public-company filing monitoring
- Market research and company list enrichment
- Finance, compliance, and business intelligence workflows

### Pricing

This Actor uses pay per event pricing.

| Event | When charged | Price |
| --- | --- | --- |
| `company-record-scraped` | Each clean company/entity record saved to the dataset | `$0.004` |

The Actor charges only after a record is written to the dataset. It does not charge for empty searches or failed records.

### Attribution

Companies House data: Contains public sector information licensed under the Open Government Licence v3.0.

SEC EDGAR data is sourced from public SEC submissions endpoints. Follow SEC fair access rules and provide a descriptive User-Agent.

### Responsible Use

This Actor is intended for lawful collection of publicly available information only. Users are responsible for ensuring their use complies with the source website's terms, robots.txt, applicable privacy laws, including India's DPDP Act, and all local regulations.

Do not use this Actor to collect, store, sell, or misuse personal data without a lawful basis. The Actor author is not responsible for misuse by end users.

### License

Apache-2.0

# Actor input Schema

## `sources` (type: `array`):

Official APIs to query. Companies House requires an API key; SEC EDGAR works without a key.

## `query` (type: `string`):

Company name, ticker, or broad search term.

## `companyNames` (type: `array`):

Optional list of company names or tickers to search.

## `companyNumbers` (type: `array`):

Optional direct UK Companies House company numbers.

## `ciks` (type: `array`):

Optional direct SEC CIK identifiers.

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

Maximum clean company/entity records to save.

## `companiesHouseApiKey` (type: `string`):

Free Companies House API key. Required only when UK Companies House is selected. You may also set COMPANIES\_HOUSE\_API\_KEY.

## `secUserAgent` (type: `string`):

SEC requires a descriptive User-Agent. Replace contact@example.com with your contact email for production use.

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

Not required for official JSON APIs, included for Apify compatibility.

## Actor input object example

```json
{
  "sources": [
    "sec_edgar"
  ],
  "query": "Microsoft",
  "maxResults": 10,
  "secUserAgent": "CompanyRegistryFilingsAggregator/1.0 contact@example.com",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# 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("fascinating_lentil/company-registry-filings-aggregator").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("fascinating_lentil/company-registry-filings-aggregator").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 '{}' |
apify call fascinating_lentil/company-registry-filings-aggregator --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=fascinating_lentil/company-registry-filings-aggregator",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Company Registry & Filings Aggregator",
        "description": "Aggregate official company registry and SEC filing data from public APIs. Entity-level company facts only, with no officer, director, or personal-data fields.",
        "version": "1.0",
        "x-build-id": "JQe0q3gaKKZQhhJaJ"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/fascinating_lentil~company-registry-filings-aggregator/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-fascinating_lentil-company-registry-filings-aggregator",
                "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/fascinating_lentil~company-registry-filings-aggregator/runs": {
            "post": {
                "operationId": "runs-sync-fascinating_lentil-company-registry-filings-aggregator",
                "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/fascinating_lentil~company-registry-filings-aggregator/run-sync": {
            "post": {
                "operationId": "run-sync-fascinating_lentil-company-registry-filings-aggregator",
                "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": {
                    "sources": {
                        "title": "Sources",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Official APIs to query. Companies House requires an API key; SEC EDGAR works without a key.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "companies_house",
                                "sec_edgar"
                            ],
                            "enumTitles": [
                                "UK Companies House",
                                "US SEC EDGAR"
                            ]
                        },
                        "default": [
                            "sec_edgar"
                        ]
                    },
                    "query": {
                        "title": "Search query",
                        "type": "string",
                        "description": "Company name, ticker, or broad search term.",
                        "default": "Microsoft"
                    },
                    "companyNames": {
                        "title": "Company names",
                        "type": "array",
                        "description": "Optional list of company names or tickers to search.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "companyNumbers": {
                        "title": "Companies House numbers",
                        "type": "array",
                        "description": "Optional direct UK Companies House company numbers.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "ciks": {
                        "title": "SEC CIKs",
                        "type": "array",
                        "description": "Optional direct SEC CIK identifiers.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxResults": {
                        "title": "Maximum records",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum clean company/entity records to save.",
                        "default": 10
                    },
                    "companiesHouseApiKey": {
                        "title": "Companies House API key",
                        "type": "string",
                        "description": "Free Companies House API key. Required only when UK Companies House is selected. You may also set COMPANIES_HOUSE_API_KEY."
                    },
                    "secUserAgent": {
                        "title": "SEC User-Agent",
                        "type": "string",
                        "description": "SEC requires a descriptive User-Agent. Replace contact@example.com with your contact email for production use.",
                        "default": "CompanyRegistryFilingsAggregator/1.0 contact@example.com"
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Not required for official JSON APIs, included for Apify compatibility.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
