# Companies House Disqualified Officer Extractor

**Use case:** 

Extract a single UK disqualified officer page into structured fields for KYB, AML, fraud, or investigation workflows.

## Input

```json
{
  "surnamePrefixes": [
    "A"
  ],
  "startUrls": [
    {
      "url": "https://find-and-update.company-information.service.gov.uk/disqualified-officers/natural/Q8J9tnY4wzC8BP9ilhung2VFw8I"
    }
  ],
  "maxItems": 1,
  "includeDetails": true,
  "maxPagesPerPrefix": 10,
  "requestDelayMs": 250
}
```

## Output

```json
{
  "name": {
    "label": "Name"
  },
  "dateOfBirth": {
    "label": "Date of birth"
  },
  "postTown": {
    "label": "Post town"
  },
  "nationality": {
    "label": "Nationality"
  },
  "disqualificationType": {
    "label": "Type"
  },
  "startDate": {
    "label": "Start date"
  },
  "endDate": {
    "label": "End date"
  },
  "caseReference": {
    "label": "Case reference"
  },
  "companies": {
    "label": "Companies"
  },
  "reason": {
    "label": "Reason"
  },
  "sourceUrl": {
    "label": "Source URL"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [UK Disqualified Directors Register Scraper](https://apify.com/automation-lab/uk-disqualified-directors-register-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/uk-disqualified-directors-register-scraper) to learn more, explore other use cases, and run it yourself.