Company House Officer Search
/api/v2/company_house_officer_search
operationId: company_house_officer_search
Live: https://gdapi.globaldata.net.au/api/v2/company_house_officer_search · Sandbox: https://sandbox-gdapi.globaldata.net.au/api/v2/company_house_officer_search
Searches the UK Companies House register for officers (directors, secretaries, and other officials) matching the provided name and returns a list of results.
Search Behaviour
The search performs a fuzzy match against officer names registered with Companies House. Results include current and former officers across all registered companies.
An optional date_of_birth filter can be provided to narrow results. When supplied, only officers whose date of birth matches the given year and month are returned. The day component is accepted for convenience but is not used for matching, as Companies House only provides month and year of birth for most officers.
Sandbox Environment
The sandbox dataset is deterministic and does not use live data. Use one of the following sample officer names to receive predictable matches:
| Name | Officer ID | Type | DOB (Y-M) | Appointments |
|---|---|---|---|---|
| John David SMITH | ABC123DEF456 | Natural | 1975-06 | 3 |
| Jane Elizabeth DOE | XYZ789GHI012 | Natural | 1980-03 | 1 |
| Robert James JOHNSON | JKL345MNO678 | Natural | 1968-11 | 5 |
| Christopher Mark TAYLOR | DEL789AYE012 | Natural | 1990-05 | 1 (delayed report) |
| CORPORATE SECRETARIES LIMITED | VWX567YZA890 | Corporate | N/A | 25 |
| David DISQUALIFIED | DIS123QUA456 | Natural (Disqualified) | 1970-01 | 0 |
Search using names like John Smith, JOHNSON, or CORPORATE SECRETARIES.
Request body
Content type application/json.
The search criteria for finding officers.
| Field | Description |
|---|---|
namerequired |
string [max 255 characters] The name of the officer to search for. Maximum 255 characters. |
date_of_birth |
string (date) or null Optional date of birth filter in YYYY-MM-DD format. When provided, only officers whose date of birth matches the year and month will be returned. The day component is accepted for convenience but is not used for matching, as Companies House only provides month and year of birth for most officers. |
max_results |
integer [1..100] Maximum number of results to return. Value must be between 1 and 100. |
Responses
Successful response with search results.
application/json
| Field | Description |
|---|---|
message |
string A message indicating the result of the request. This will be |
function |
string The API function that handled the request. |
api_reference |
string (uuid) A unique identifier for this request. This can be used to track the request in the logs. |
records |
array of objects Array of matching officer records. |
records[]. |
string The unique identifier for the officer. Use this ID when requesting an officer report. |
records[]. |
string The full name of the officer as it appears in the register. |
records[]. |
string The officer's date of birth (month and year only for privacy), formatted as YYYY-MM. |
records[]. |
object The correspondence address of the officer. |
records[]. |
string |
records[]. |
string |
records[]. |
string |
records[]. |
string |
records[]. |
string A single-line summary of the officer's address. |
records[]. |
integer Number of current company appointments. |
records[]. |
string A description of the officer's roles. |
records_returned |
integer The number of records returned in this response. |
more_results |
boolean Indicates whether more results are available beyond the current page. |