Tool — UK Companies House Registry
What it does
Queries the UK Companies House (CH) public registry to retrieve corporate information, officer data, PSC (People with Significant Control) records, filing history, charges, and insolvency filings for any company registered in England & Wales, Scotland, or Northern Ireland.
Companies House is widely considered the world's most open and comprehensive free corporate registry. It is frequently the most accessible first entry point for due diligence on MENA deals because many BVI, Cayman, and GCC holding structures maintain a UK subsidiary or have UK-based directors.
Setup / auth
- Free public API: Companies House provides a public API (https://developer.company-information.service.gov.uk/) requiring an API key (free, self-registered).
- Rate limits: 600 requests per 5-minute window per API key; implement caching for repeated lookups on the same company.
- Data freshness: Filed documents typically appear within 24–72 hours of submission at CH. For real-time solvency risk, supplement with credit-bureau data.
Capabilities
Search modes
| Mode |
Input |
Returns |
| Company number lookup |
company_number (8-digit, e.g., 12345678) |
Full company profile, status, registered address, SIC code |
| Company name search |
company_name (partial match supported) |
List of matching companies with numbers and status |
| Officer search |
officer_name |
All directorships (current + historic) for the individual |
| PSC search |
psc_name |
All PSC registrations linked to the individual/entity |
| Insolvency search |
company_number |
Insolvency practitioners, proceedings, and status |
Data retrievable
| Data category |
Description |
KYC relevance |
| Company profile |
Registered address, SIC, incorporation date, company type, status (active/dissolved/in-liquidation) |
Basic entity verification |
| Officer register |
Directors, secretaries, LLP members — name, DOB, nationality, appointment/resignation dates |
Who controls the company |
| PSC register |
Persons or legal entities with >25% ownership or control |
UBO (Ultimate Beneficial Owner) identification |
| Filing history |
Annual returns, confirmation statements, accounts, mortgage charges |
Financial health, compliance track record |
| Charges register |
Fixed and floating charges, debentures — creditor, creation date, status |
Security encumbrances on assets |
| Accounts |
Filed annual accounts (micro, small, full) |
Financial snapshot; note that small companies file abridged accounts |
| Insolvency filings |
CVA, administration, liquidation, winding-up petitions |
Solvency red flags |
Output schema
{
"companyNumber": "12345678",
"companyName": "Gulf Holdings UK Limited",
"status": "active",
"incorporationDate": "2019-03-15",
"registeredAddress": "1 King Street, London, EC2V 8AU",
"sicCode": "64999",
"officers": [
{
"name": "Al Rashidi, Mohammed Fahad",
"role": "Director",
"nationality": "Saudi",
"appointedOn": "2019-03-15",
"resignedOn": null,
"dob": { "month": 6, "year": 1978 }
}
],
"pscs": [
{
"name": "Gulf Capital SAOC",
"kind": "corporate-entity",
"naturesOfControl": ["ownership-of-shares-75-to-100-percent"],
"notifiedOn": "2019-03-15"
}
],
"charges": [],
"insolvency": null,
"filingHistoryUrl": "https://find-and-update.company-information.service.gov.uk/company/12345678/filing-history"
}
Usage patterns
Pattern 1 — Pre-acquisition KYC
Client is acquiring a UK target. Run Companies House search to:
- Confirm company status and registered address
- Extract full officer list and cross-check with sanctions databases
- Map PSC chain to identify UBOs
- Review charges register for undisclosed security interests
Pattern 2 — MENA deal — UK holding company
A UAE family office holds UK real estate through a UK SPV. Run CH to:
- Identify the SPV and confirm it is active (not dormant or dissolved)
- Confirm directors match the counterparty's representations
- Extract PSC register to verify ownership chain consistency with deal documents
Pattern 3 — Officer background check
Run officer name search to surface all historical directorships — including resigned positions and involvement in dissolved or liquidated companies — as part of a background check.
Pattern 4 — Insolvency screening
Before extending credit or entering a significant contract, run insolvency check to confirm no winding-up petition, administration, or CVA in progress.
Permissions & safety
- Return only publicly available Companies House data; do not attempt to access non-public records.
- PSC DOB and officer full DOB are available to the full digit for anti-fraud purposes under the Economic Crime (Transparency and Enforcement) Act 2022; handle personal data in accordance with UK GDPR.
- Do not represent a clean Companies House result as a clean AML check — Companies House is one layer; also check OFAC, HMT, and EU sanctions for all principals.
Failure modes
| Failure |
Response |
| Company not found |
Return 0 results; suggest searching by registered number (more reliable than name) |
| Company dissolved/struck off |
Return status prominently; warn that the entity may not be valid for contracting |
| PSC register shows "exemption applied" |
Flag that UBO transparency is claimed to be exempt (e.g., listed company); note the listed exchange |
| Charges register shows unreleased charge |
Flag prominently; advise review of the charge document and confirmation of release before title transfer |
Related skills
- [[tool-adgm-courts-search]]
- [[tool-difc-courts-search]]
- [[research-kyc-ubo]]
- [[review-due-diligence]]
1---2name: tool-companies-house-uk3description: Use when performing KYC/UBO research, pre-transaction due diligence, or credit checks on UK-registered companies and their officers. UK Companies House is the world's most comprehensive free corporate registry — covering full filing history, director and PSC registers, charges, and insolvency filings. Particularly useful in MENA deals where UK holding structures, UK subsidiaries, or UK-based officers are common.4license: MIT5---67# Tool — UK Companies House Registry89## What it does1011Queries the UK Companies House (CH) public registry to retrieve corporate information, officer data, PSC (People with Significant Control) records, filing history, charges, and insolvency filings for any company registered in England & Wales, Scotland, or Northern Ireland.1213Companies House is widely considered the world's most open and comprehensive free corporate registry. It is frequently the most accessible first entry point for due diligence on MENA deals because many BVI, Cayman, and GCC holding structures maintain a UK subsidiary or have UK-based directors.1415## Setup / auth1617- **Free public API:** Companies House provides a public API (https://developer.company-information.service.gov.uk/) requiring an API key (free, self-registered).18- **Rate limits:** 600 requests per 5-minute window per API key; implement caching for repeated lookups on the same company.19- **Data freshness:** Filed documents typically appear within 24–72 hours of submission at CH. For real-time solvency risk, supplement with credit-bureau data.2021## Capabilities2223### Search modes2425| Mode | Input | Returns |26|---|---|---|27| Company number lookup | `company_number` (8-digit, e.g., `12345678`) | Full company profile, status, registered address, SIC code |28| Company name search | `company_name` (partial match supported) | List of matching companies with numbers and status |29| Officer search | `officer_name` | All directorships (current + historic) for the individual |30| PSC search | `psc_name` | All PSC registrations linked to the individual/entity |31| Insolvency search | `company_number` | Insolvency practitioners, proceedings, and status |3233### Data retrievable3435| Data category | Description | KYC relevance |36|---|---|---|37| **Company profile** | Registered address, SIC, incorporation date, company type, status (active/dissolved/in-liquidation) | Basic entity verification |38| **Officer register** | Directors, secretaries, LLP members — name, DOB, nationality, appointment/resignation dates | Who controls the company |39| **PSC register** | Persons or legal entities with >25% ownership or control | UBO (Ultimate Beneficial Owner) identification |40| **Filing history** | Annual returns, confirmation statements, accounts, mortgage charges | Financial health, compliance track record |41| **Charges register** | Fixed and floating charges, debentures — creditor, creation date, status | Security encumbrances on assets |42| **Accounts** | Filed annual accounts (micro, small, full) | Financial snapshot; note that small companies file abridged accounts |43| **Insolvency filings** | CVA, administration, liquidation, winding-up petitions | Solvency red flags |4445## Output schema4647```json48{49 "companyNumber": "12345678",50 "companyName": "Gulf Holdings UK Limited",51 "status": "active",52 "incorporationDate": "2019-03-15",53 "registeredAddress": "1 King Street, London, EC2V 8AU",54 "sicCode": "64999",55 "officers": [56 {57 "name": "Al Rashidi, Mohammed Fahad",58 "role": "Director",59 "nationality": "Saudi",60 "appointedOn": "2019-03-15",61 "resignedOn": null,62 "dob": { "month": 6, "year": 1978 }63 }64 ],65 "pscs": [66 {67 "name": "Gulf Capital SAOC",68 "kind": "corporate-entity",69 "naturesOfControl": ["ownership-of-shares-75-to-100-percent"],70 "notifiedOn": "2019-03-15"71 }72 ],73 "charges": [],74 "insolvency": null,75 "filingHistoryUrl": "https://find-and-update.company-information.service.gov.uk/company/12345678/filing-history"76}77```7879## Usage patterns8081### Pattern 1 — Pre-acquisition KYC8283Client is acquiring a UK target. Run Companies House search to:841. Confirm company status and registered address852. Extract full officer list and cross-check with sanctions databases863. Map PSC chain to identify UBOs874. Review charges register for undisclosed security interests8889### Pattern 2 — MENA deal — UK holding company9091A UAE family office holds UK real estate through a UK SPV. Run CH to:921. Identify the SPV and confirm it is active (not dormant or dissolved)932. Confirm directors match the counterparty's representations943. Extract PSC register to verify ownership chain consistency with deal documents9596### Pattern 3 — Officer background check9798Run officer name search to surface all historical directorships — including resigned positions and involvement in dissolved or liquidated companies — as part of a background check.99100### Pattern 4 — Insolvency screening101102Before extending credit or entering a significant contract, run insolvency check to confirm no winding-up petition, administration, or CVA in progress.103104## Permissions & safety105106- Return only publicly available Companies House data; do not attempt to access non-public records.107- PSC DOB and officer full DOB are available to the full digit for anti-fraud purposes under the Economic Crime (Transparency and Enforcement) Act 2022; handle personal data in accordance with UK GDPR.108- Do not represent a clean Companies House result as a clean AML check — Companies House is one layer; also check OFAC, HMT, and EU sanctions for all principals.109110## Failure modes111112| Failure | Response |113|---|---|114| Company not found | Return 0 results; suggest searching by registered number (more reliable than name) |115| Company dissolved/struck off | Return status prominently; warn that the entity may not be valid for contracting |116| PSC register shows "exemption applied" | Flag that UBO transparency is claimed to be exempt (e.g., listed company); note the listed exchange |117| Charges register shows unreleased charge | Flag prominently; advise review of the charge document and confirmation of release before title transfer |118119## Related skills120121- [[tool-adgm-courts-search]]122- [[tool-difc-courts-search]]123- [[research-kyc-ubo]]124- [[review-due-diligence]]