# UK Phone Number Extractor and Validator

**Use case:** 

Extract UK phone numbers from text, validate them, and export clean international and E.164 formats.

## Input

```json
{
  "numbers": [
    "+1 415 555 2671",
    "(020) 7946 0958",
    "+420 777 123 456 ext. 9",
    "555-0100"
  ],
  "text": "London office +44 20 7946 0018, support 020 7946 0958, bad 12345.",
  "defaultCountry": "GB",
  "includeInvalid": true,
  "deduplicate": false,
  "maxItems": 50
}
```

## Output

```json
{
  "input": {
    "label": "Input"
  },
  "isValid": {
    "label": "Valid"
  },
  "validationStatus": {
    "label": "Status"
  },
  "e164": {
    "label": "E.164"
  },
  "internationalFormat": {
    "label": "International"
  },
  "country": {
    "label": "Country"
  },
  "numberType": {
    "label": "Type"
  },
  "duplicateOf": {
    "label": "Duplicate of"
  },
  "reason": {
    "label": "Reason"
  },
  "processedAt": {
    "label": "Processed at"
  }
}
```

## About this Actor

This example demonstrates how to use [Phone Number Validation API](https://apify.com/automation-lab/phone-number-validation-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/phone-number-validation-api) to learn more, explore other use cases, and run it yourself.