# Website-to-contact enrichment for B2B lead lists

**Use case:** 

Got a list of company domains? This task scrapes emails, phone numbers, and social profiles from each site, turning raw URLs into ready-to-use B2B leads

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.figma.com"
    },
    {
      "url": "https://www.notion.com/"
    }
  ],
  "maxRequestsPerStartUrl": 10,
  "mergeContacts": true,
  "maxDepth": 2,
  "maxRequests": 9999999,
  "sameDomain": true,
  "considerChildFrames": true,
  "maximumLeadsEnrichmentRecords": 3,
  "leadsEnrichmentDepartments": [
    "product",
    "marketing"
  ],
  "verifyLeadsEnrichmentEmails": false,
  "scrapeSocialMediaProfiles": {
    "facebooks": true,
    "instagrams": true,
    "tiktoks": true,
    "twitters": true,
    "youtubes": true
  },
  "useBrowser": false,
  "waitUntil": "domcontentloaded",
  "proxyConfig": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "url": {
    "label": "Url",
    "format": "string"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "phones": {
    "label": "Phones",
    "format": "array"
  },
  "linkedIns": {
    "label": "LinkedIns",
    "format": "array"
  },
  "twitters": {
    "label": "Twitters",
    "format": "array"
  },
  "instagrams": {
    "label": "Instagrams",
    "format": "array"
  },
  "facebooks": {
    "label": "Facebooks",
    "format": "array"
  },
  "youtubes": {
    "label": "Youtubes",
    "format": "array"
  },
  "tiktoks": {
    "label": "TikToks",
    "format": "array"
  },
  "pinterests": {
    "label": "Pinterests",
    "format": "array"
  },
  "discords": {
    "label": "Discords",
    "format": "array"
  },
  "snapchats": {
    "label": "Snapchats",
    "format": "array"
  },
  "threads": {
    "label": "Threads",
    "format": "array"
  },
  "telegrams": {
    "label": "Telegrams",
    "format": "array"
  },
  "reddits": {
    "label": "Reddits",
    "format": "array"
  },
  "whatsapps": {
    "label": "WhatsApps",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Contact Details Scraper](https://apify.com/vdrmota/contact-info-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/vdrmota/contact-info-scraper) to learn more, explore other use cases, and run it yourself.