Public Data Api

What kind of data I will get

Companies House PublicDataApi provides a wide range of data and information related to registered companies and legal entities in the United Kingdom.

Integration Scope

Companies House offers a variety of data types, giving you the freedom to select the information that suits your needs. These categories include

  • Company profile

  • Registered office address

  • Officers (including appointments and disqualifications)

  • Registers

  • Charges

  • Filing history

  • Insolvency

  • Exemptions

  • UK Establishments

  • Persons with significant control

Input

User needs to provide number of company.

{
    "companyNumber": "123998123"
}

Output

{
  "companiesHouse" : {
    "company" : {
      "charges" : {
        ...
      },
      "registeredOfficeAddress": {
        ...
      },
      "companyProfile": {
        ...
      },
      "officers": {
        ...
      },
      "registers": {
        ...
      },
      "filingHistory": {
        ...
      },
      "insolvency": {
        ...
      },
      "exemptions": {
        ...
      },
      "ukEstablishments": {
        ...
      },
      personsWithSignificantControl: {
        ...
      }
    }
}

Last updated