# UK Company KYB Check — Verify a Supplier Before Onboarding

**Use case:** 

Run a KYB check on any UK company: verdict, risk score, beneficial ownership, and a proceed/review/EDD recommendation from official Companies House data.

## Input

```json
{
  "mode": "kyb",
  "query": "09446231",
  "advancedSearch": {
    "companyNameIncludes": "construction",
    "companyStatus": "active",
    "incorporatedFrom": "2025-01-01"
  },
  "apiKey": "***",
  "companyStatus": "",
  "maxResults": 25,
  "minimumRiskDelta": 0
}
```

## Output

```json
{
  "companyName": {
    "label": "Company Name",
    "format": "string"
  },
  "verdict": {
    "label": "Verdict",
    "format": "string"
  },
  "riskLevel": {
    "label": "Risk Level",
    "format": "string"
  },
  "riskScore": {
    "label": "Risk Score",
    "format": "number"
  },
  "recommendedAction": {
    "label": "Recommended Action",
    "format": "string"
  },
  "companyStatus": {
    "label": "Status",
    "format": "string"
  },
  "complianceFlags": {
    "label": "Compliance Flags",
    "format": "array"
  },
  "companyNumber": {
    "label": "Company Number",
    "format": "string"
  },
  "companiesHouseUrl": {
    "label": "Companies House URL",
    "format": "string"
  }
}
```

## About this Actor

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