# CRM Phone Number Validator

**Use case:** 

Validate and normalize CRM phone numbers to E.164, flag invalid rows, and remove duplicates before sales outreach.

## Input

```json
{
  "numbers": [
    "+1 415 555 2671",
    "+1 (212) 555-0199",
    "555-0100"
  ],
  "text": "Sales contacts: US +1 212 555 0199, UK +44 20 7946 0018, duplicate +1 (212) 555-0199.",
  "defaultCountry": "US",
  "includeInvalid": true,
  "deduplicate": true,
  "maxItems": 100
}
```

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