# Find Missing Customer Phone Numbers & Addresses

**Use case:** 

Re-engage lost customers or complete incomplete CRM records by finding their current contact information. Improve customer retention and enhance personalized ou

## Input

```json
{
  "searches": [
    {
      "type": "name",
      "name": "John Doe",
      "state": "CA"
    },
    {
      "type": "name",
      "name": "Jane Smith",
      "state": "NY"
    },
    {
      "type": "name",
      "name": "Robert Johnson",
      "state": "TX"
    }
  ],
  "maxResultsPerSearch": 3,
  "delayBetweenSearchesMs": 2500
}
```

## Output

```json
{
  "inputQuery": {
    "label": "Input Query",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "age": {
    "label": "Age",
    "format": "number"
  },
  "currentAddress": {
    "label": "Current Address",
    "format": "object"
  },
  "phones": {
    "label": "Phones",
    "format": "array"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "relatives": {
    "label": "Relatives",
    "format": "array"
  },
  "associates": {
    "label": "Associates",
    "format": "array"
  },
  "sources": {
    "label": "Data Sources",
    "format": "array"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [AnyWho People Search Scraper](https://apify.com/crawlerbros/anywho-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/anywho-scraper) to learn more, explore other use cases, and run it yourself.