# Website Contact Finder for Company URLs

**Use case:** 

Scan one company website URL and return emails, phone numbers, social profiles, contact pages, and verification metadata as JSON.

## Input

```json
{
  "url": "https://apify.com",
  "maxPagesPerSite": 10,
  "maxConcurrency": 5,
  "requestTimeoutSecs": 15,
  "useProxy": false,
  "verifyEmails": false,
  "verificationLevel": "mx"
}
```

## Output

```json
{
  "websiteUrl": {
    "label": "Website URL",
    "format": "link"
  },
  "emails": {
    "label": "Emails",
    "format": "text"
  },
  "phones": {
    "label": "Phones",
    "format": "text"
  },
  "socialLinks": {
    "label": "Social links",
    "format": "text"
  },
  "contactPageUrl": {
    "label": "Contact page",
    "format": "link"
  },
  "pagesCrawled": {
    "label": "Pages crawled",
    "format": "number"
  },
  "crawledAt": {
    "label": "Crawled at",
    "format": "text"
  },
  "emailVerification": {
    "label": "Email verification",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Website Contact Finder API](https://apify.com/automation-lab/website-contact-finder-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/website-contact-finder-api) to learn more, explore other use cases, and run it yourself.