# Scrape Social Profiles From Websites

**Use case:** 

Find social media profiles from any website with domain, company, socials, email, phone and lead score. Export to JSON, CSV or Excel.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://apify.com"
    }
  ],
  "domains": [
    "patagonia.com"
  ],
  "maxPagesPerSite": 5,
  "crawlContactPages": true,
  "sameDomainOnly": true,
  "includePhones": true,
  "includeSocials": true,
  "includeAddress": true,
  "onlyWithEmail": false,
  "maxResults": 0,
  "monitorMode": false,
  "monitorStoreName": "website-contact-monitor",
  "maxConcurrency": 10,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "primaryEmail": {
    "label": "Email",
    "format": "text"
  },
  "emails": {
    "label": "All emails",
    "format": "array"
  },
  "primaryPhone": {
    "label": "Phone",
    "format": "text"
  },
  "socials": {
    "label": "Socials",
    "format": "object"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "leadScore": {
    "label": "Lead score",
    "format": "number"
  },
  "websiteUrl": {
    "label": "Website",
    "format": "link"
  }
}
```

## About this Actor

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