# Extract emails and phones from company websites

**Use case:** 

Bulk extract email addresses, phone numbers, and social media profiles from any list of company websites. Export CRM-ready contact data as CSV or JSON.

## Input

```json
{
  "urls": [
    "https://apify.com",
    "https://zapier.com",
    "https://airtable.com"
  ],
  "max_emails_per_domain": 5
}
```

## Output

```json
{
  "url": {
    "label": "Website URL",
    "format": "link"
  },
  "emails": {
    "label": "Email Addresses",
    "format": "object"
  },
  "phones": {
    "label": "Phone Numbers",
    "format": "object"
  },
  "socials": {
    "label": "Social Profiles",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Website Email, Phone Numbers & Social Media Profiles Finder](https://apify.com/parsebird/website-contact-finder) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parsebird/website-contact-finder) to learn more, explore other use cases, and run it yourself.