# Bulk phone number validator

**Use case:** 

Validate phone numbers in bulk and return validity, country, line type, E.164 format, national format, carrier, and errors.

## Input

```json
{
  "phoneNumbers": [
    "+1 202-555-0173",
    "+44 20 7946 0958",
    "+33 6 12 34 56 78",
    "not-a-phone-number"
  ],
  "defaultCountry": "US"
}
```

## Output

```json
{
  "input": {
    "label": "Input"
  },
  "isValid": {
    "label": "Valid",
    "format": "boolean"
  },
  "type": {
    "label": "Type"
  },
  "country": {
    "label": "Country"
  },
  "countryCode": {
    "label": "Country Code"
  },
  "internationalFormat": {
    "label": "E.164 Format"
  },
  "nationalFormat": {
    "label": "National Format"
  },
  "carrier": {
    "label": "Carrier"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

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