# International Phone Number Cleanup API

**Use case:** 

Clean international calling lists with country detection, E.164 formatting, validation reasons, and duplicate handling.

## Input

```json
{
  "numbers": [
    "+420 777 123 456",
    "+49 30 901820",
    "+61 2 9374 4000",
    "+1 650 253 0000"
  ],
  "text": "Sales contacts: US +1 212 555 0199, UK +44 20 7946 0018, duplicate +1 (212) 555-0199.",
  "defaultCountry": "US",
  "includeInvalid": false,
  "deduplicate": true,
  "maxItems": 1000
}
```

## 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.