# Extract Emails and Social Media Contacts from Websites

**Use case:** 

Gather up to 5 email addresses and social media links from specified websites. This task efficiently retrieves contact information for your needs.

## Input

```json
{
  "urls": [
    {
      "url": "https://apify.com/contact/"
    },
    {
      "url": "https://mikolabs.xyz"
    }
  ],
  "maxEmailsToScrape": 5,
  "deepSearch": false,
  "maxCrawlDepth": 3,
  "maxPagesPerSeed": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "url": {
    "label": "Website URL",
    "format": "link"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "phone_numbers": {
    "label": "Phone Numbers",
    "format": "array"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Extract Emails and Socials Contacts Any Website](https://apify.com/mikolabs/extract-emails-and-socials-contacts-any-website) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mikolabs/extract-emails-and-socials-contacts-any-website) to learn more, explore other use cases, and run it yourself.