# Clean 5 Scraped Leads for Sales Outreach

**Use case:** 

Receive a deduped and scored lead list from scraped leads, ensuring valid emails and domains. Ideal for prioritizing outreach efforts.

## Input

```json
{
  "items": [
    {
      "title": "Shopify",
      "categoryName": "Software company",
      "website": "https://www.shopify.com",
      "phone": "+1 888-746-7439",
      "url": "https://www.google.com/maps/place/Shopify"
    },
    {
      "name": "HubSpot",
      "email": "press@hubspot.com",
      "phoneNumber": "+1 888-482-7768",
      "link": "https://www.hubspot.com"
    },
    {
      "companyName": "Zoom Video Communications",
      "description": "Video conferencing platform. Contact us at info@zoom.us for enterprise sales.",
      "domain": "zoom.us"
    },
    {
      "title": "Shopify Inc",
      "website": "https://shopify.com",
      "phone": "+1 888-746-7439"
    },
    {
      "title": "Stripe",
      "categoryName": "Payment processor",
      "website": "https://stripe.com",
      "phone": "+1 888-926-2289",
      "emails": [
        "support@stripe.com"
      ]
    }
  ],
  "checks": [
    "dedupe",
    "email",
    "domain",
    "score"
  ],
  "minScore": 0,
  "maxRows": 1000
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "emailStatus": {
    "label": "Email status",
    "format": "text"
  },
  "emailFlags": {
    "label": "Email flags",
    "format": "array"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "domainStatus": {
    "label": "Domain status",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "hotnessScore": {
    "label": "Hotness score",
    "format": "number"
  },
  "scoreReasons": {
    "label": "Score reasons",
    "format": "array"
  },
  "techStack": {
    "label": "Tech stack",
    "format": "array"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "text"
  },
  "found": {
    "label": "Clean (billed)",
    "format": "boolean"
  },
  "rejected": {
    "label": "Rejected",
    "format": "boolean"
  },
  "rejectReasons": {
    "label": "Reject reasons",
    "format": "array"
  },
  "raw": {
    "label": "Raw source row",
    "format": "object"
  },
  "checkedAt": {
    "label": "Checked at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Lead List Cleaner](https://apify.com/zinin/lead-list-cleaner) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zinin/lead-list-cleaner) to learn more, explore other use cases, and run it yourself.