# UK Companies House Enricher (`silentflow/uk-companies-house-enricher`) Actor

Enrich any UK company with profile, directors, shareholders, and financial data (cash, net worth, assets, liabilities). 5-year history included. Proxies included.

- **URL**: https://apify.com/silentflow/uk-companies-house-enricher.md
- **Developed by:** [SilentFlow](https://apify.com/silentflow) (community)
- **Categories:** Lead generation, Developer tools
- **Stats:** 4 total users, 2 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $6.00 / 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/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

## 🏢 UK Companies House Enricher

**Enrich any UK company in seconds.** Profile, directors, shareholders, and financial data with 5-year history.

Enrich any UK company by number or name. Get company profile, directors, shareholders, and **financial data** (cash, net worth, assets, liabilities) with 5 years of history.

### ✨ Why use this scraper?

- 🌐 **Proxies included** — No need to configure or pay for proxies separately
- ⚡ **Fast** — 1-3 seconds per company
- 📊 **Financial data included** — Cash, net worth, assets, liabilities with 5-year history
- 👤 **Directors & shareholders** — Active officers with nationality, role, appointment date
- 🔍 **Flexible search** — Company number or name, single or batch

### 🎯 Use cases

| Industry | Application |
|----------|-------------|
| **Sales & BD** | Qualify UK prospects with financial health data before outreach |
| **Due Diligence** | Verify company status, directors, and shareholders |
| **Market Research** | Analyse competitors' financial trends over 5 years |
| **Compliance / KYC** | Identify persons with significant control and verify company details |
| **Lead Enrichment** | Enrich CRM data with official UK company information |

### 📥 Input parameters

| Parameter | Type | Description |
|-----------|------|-------------|
| `query` | string | UK company number (e.g. `00445790`) or company name (e.g. `Tesco`) |
| `queries` | string[] | Multiple company numbers or names for batch enrichment |
| `maxResults` | integer | Max companies returned per name search (default: 10, max: 50) |

### 📊 Output data

#### Company example

```json
{
  "companyNumber": "08804411",
  "companyName": "REVOLUT LTD",
  "companyStatus": "active",
  "companyType": "ltd",
  "address": "30 South Colonnade",
  "locality": "London",
  "postalCode": "E14 5HX",
  "country": "United Kingdom",
  "sicCodes": ["62090"],
  "dateOfCreation": "2013-12-06",
  "officers": [
    {
      "name": "STORONSKIY, Nikolay",
      "role": "director",
      "appointedOn": "2013-12-06",
      "nationality": "British",
      "countryOfResidence": "United Kingdom",
      "dateOfBirth": "7/1984"
    }
  ],
  "personsWithSignificantControl": [
    {
      "name": "Mr Nikolay Storonsky",
      "naturesOfControl": ["ownership-of-shares-25-to-50-percent"],
      "nationality": "British",
      "notifiedOn": "2016-04-08"
    }
  ],
  "financials": {
    "cash": 6598511000,
    "netWorth": 1510914000,
    "totalCurrentAssets": 9977206000,
    "totalCurrentLiabilities": 8534539000,
    "cashChange": "10.16%",
    "netWorthChange": "68.38%"
  },
  "financialHistory": [
    {
      "year": "2024",
      "cash": 6598511000,
      "netWorth": 1510914000,
      "assets": 9977206000,
      "liabilities": 8534539000
    }
  ],
  "companiesHouseUrl": "https://find-and-update.company-information.service.gov.uk/company/08804411",
  "dataSources": ["companies-house-api", "companycheck"],
  "scrapedAt": "2026-04-06T20:23:38Z"
}
````

### 🗂️ Data fields

| Category | Fields |
|----------|--------|
| **Identifiers** | companyNumber, companyName, companyStatus, companyType |
| **Address** | address, locality, region, postalCode, country |
| **Activity** | sicCodes, sicLabels |
| **Dates** | dateOfCreation, dateOfCessation |
| **Officers** | name, role, appointedOn, nationality, countryOfResidence, occupation, dateOfBirth |
| **Shareholders (PSC)** | name, naturesOfControl, notifiedOn, nationality |
| **Financials** | cash, netWorth, totalCurrentAssets, totalCurrentLiabilities, change percentages |
| **Financial History** | 5 years of cash, netWorth, assets, liabilities |
| **Accounts** | accountsNextDue, accountsOverdue, lastAccountsDate |
| **Links** | companiesHouseUrl, companyCheckUrl |

### 🚀 Examples

#### Single company by number

```json
{
  "query": "00445790"
}
```

#### Search by name

```json
{
  "query": "Revolut"
}
```

#### Batch enrichment

```json
{
  "queries": ["00445790", "08804411", "Monzo", "Brewdog"]
}
```

### 💻 Integrations

#### Python

```python
from apify_client import ApifyClient

client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("silentflow/uk-companies-house-enricher-ppe").call(
    run_input={"query": "00445790"}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(f"{item['companyName']}: £{item['financials']['cash']:,.0f} cash")
```

#### JavaScript

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

const client = new ApifyClient({ token: 'YOUR_API_TOKEN' });
const run = await client.actor('silentflow/uk-companies-house-enricher-ppe').call({
    query: '00445790',
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach(item => console.log(`${item.companyName}: £${item.financials.cash} cash`));
```

### 📈 Performance & limits

| Metric | Value |
|--------|-------|
| Speed | ~1-3 seconds per company |
| Batch processing | Up to 50 companies per run |
| Financial data | Available for most active UK companies with filed accounts |

### 💡 Tips for best results

1. **Use company numbers** — More precise than name search, returns exactly one result
2. **Pad short numbers** — Company numbers should be 8 digits (e.g. `445790` → `00445790`)
3. **SC/NI prefixes** — Scottish and Northern Irish companies use prefixes like `SC123456`
4. **Financial data availability** — Micro entities and newly incorporated companies may not have financial data

### ❓ FAQ

**Q: What is a company number?**
A: An 8-digit identifier assigned by Companies House to every UK registered company. You can find it on the Companies House website.

**Q: Why are some financials missing?**
A: Micro entities, dormant companies, and recently incorporated companies may not have financial data available. Banks may also file in non-standard formats.

**Q: Can I search by SIC code or location?**
A: Not yet — this enricher works by company number or name. Contact us if you need bulk search by industry or region.

### 📬 Support

We're building this scraper for **you**, your feedback makes it better for everyone!

- 🐛 **Found a bug?** Open an issue directly on this actor's page, we'll fix it fast
- 💡 **Need a feature?** Tell us what's missing and we'll prioritize it
- ⚙️ **Custom solutions**: Contact us for enterprise integrations or high-volume needs

We respond to every issue, usually within 24 hours. Don't hesitate, even small suggestions help!

Check out our other scrapers: [SilentFlow on Apify](https://apify.com/silentflow)

# Actor input Schema

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

UK company number (8 digits, e.g. 00445790) or company name (e.g. Tesco)

## `queries` (type: `array`):

List of company numbers or names to enrich in batch

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

Maximum number of companies returned when searching by name (1-50)

## Actor input object example

```json
{
  "query": "00445790",
  "queries": [],
  "maxResults": 10
}
```

# Actor output Schema

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

Complete company data including: companyName, companyNumber, companyStatus, address, officers, PSCs, financials, financialHistory, and more.

## `resultsCSV` (type: `string`):

CSV format export for spreadsheet analysis

## `resultsExcel` (type: `string`):

Excel format export

# 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 = {
    "query": "00445790",
    "queries": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("silentflow/uk-companies-house-enricher").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 = {
    "query": "00445790",
    "queries": [],
}

# Run the Actor and wait for it to finish
run = client.actor("silentflow/uk-companies-house-enricher").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 '{
  "query": "00445790",
  "queries": []
}' |
apify call silentflow/uk-companies-house-enricher --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=silentflow/uk-companies-house-enricher",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "UK Companies House Enricher",
        "description": "Enrich any UK company with profile, directors, shareholders, and financial data (cash, net worth, assets, liabilities). 5-year history included. Proxies included.",
        "version": "1.0",
        "x-build-id": "SGl0g4IwrF2ax8LRh"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/silentflow~uk-companies-house-enricher/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-silentflow-uk-companies-house-enricher",
                "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/silentflow~uk-companies-house-enricher/runs": {
            "post": {
                "operationId": "runs-sync-silentflow-uk-companies-house-enricher",
                "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/silentflow~uk-companies-house-enricher/run-sync": {
            "post": {
                "operationId": "run-sync-silentflow-uk-companies-house-enricher",
                "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": {
                    "query": {
                        "title": "Company number or name",
                        "type": "string",
                        "description": "UK company number (8 digits, e.g. 00445790) or company name (e.g. Tesco)"
                    },
                    "queries": {
                        "title": "Multiple queries (batch)",
                        "type": "array",
                        "description": "List of company numbers or names to enrich in batch",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxResults": {
                        "title": "Max results per name search",
                        "minimum": 1,
                        "maximum": 50,
                        "type": "integer",
                        "description": "Maximum number of companies returned when searching by name (1-50)",
                        "default": 10
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
