# Find a UK company's registered office address

**Use case:** 

Look up a UK company's registered office address, incorporation date, and SIC codes straight from Companies House's own records. $4 per 1,000.

## Input

```json
{
  "companyNumbers": [
    "00445790"
  ],
  "apiKey": "<YOUR_SECRET>",
  "testRun": false,
  "onlyFound": false,
  "includeKeywords": [],
  "excludeKeywords": [],
  "columns": [
    "companyNumber",
    "companyName",
    "registeredOfficeAddress",
    "dateOfCreation",
    "sicCodes"
  ],
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "query": {
    "label": "UK company number submitted",
    "format": "string"
  },
  "found": {
    "label": "Found?",
    "format": "boolean"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "message": {
    "label": "Details",
    "format": "string"
  },
  "companyNumber": {
    "label": "Company number",
    "format": "string"
  },
  "companyName": {
    "label": "Company name",
    "format": "string"
  },
  "companyStatus": {
    "label": "Status",
    "format": "string"
  },
  "companyType": {
    "label": "Company type",
    "format": "string"
  },
  "jurisdiction": {
    "label": "Jurisdiction",
    "format": "string"
  },
  "dateOfCreation": {
    "label": "Incorporated on",
    "format": "string"
  },
  "dateOfCessation": {
    "label": "Dissolved on",
    "format": "string"
  },
  "sicCodes": {
    "label": "SIC codes",
    "format": "array"
  },
  "registeredOfficeAddress": {
    "label": "Registered office address",
    "format": "string"
  },
  "accountsNextDueDate": {
    "label": "Accounts next due",
    "format": "string"
  },
  "accountsOverdue": {
    "label": "Accounts overdue",
    "format": "boolean"
  },
  "confirmationStatementNextDueDate": {
    "label": "Confirmation statement next due",
    "format": "string"
  },
  "confirmationStatementOverdue": {
    "label": "Confirmation statement overdue",
    "format": "boolean"
  },
  "previousCompanyNames": {
    "label": "Previous company names",
    "format": "array"
  },
  "hasInsolvencyHistory": {
    "label": "Has insolvency history",
    "format": "boolean"
  },
  "hasCharges": {
    "label": "Has registered charges",
    "format": "boolean"
  },
  "source": {
    "label": "Data source",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Checked at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [UK Companies House API: Company Data & Officers](https://apify.com/accountable_eel/companies-house-uk-lookup.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/accountable_eel/companies-house-uk-lookup.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/accountable_eel/companies-house-uk-lookup.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
