# Extract Business Contacts from Apify

**Use case:** 

Extract business contacts from Apify by crawling its website and collecting publicly available company information, contact pages, emails, and phone numbers for

## Input

```json
{
  "startUrls": [
    {
      "url": "https://apify.com"
    }
  ],
  "maxRequestsPerCrawl": 50,
  "maxConcurrency": 3,
  "requestDelaySecs": 1,
  "discoverContactPages": true,
  "crawlSameDomainOnly": true,
  "maxLinksPerPage": 20,
  "includePagesWithoutContacts": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "phoneNumbers": {
    "label": "Phone numbers",
    "format": "array"
  },
  "contactForm": {
    "label": "Contact form",
    "format": "boolean"
  },
  "leadScore": {
    "label": "Lead score",
    "format": "integer"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source page",
    "format": "string"
  },
  "contactPage": {
    "label": "Contact page",
    "format": "boolean"
  },
  "extractedAt": {
    "label": "Extracted",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Sales Call List Generator](https://apify.com/x.com/sales-call-list-generator) with a specific input configuration. Visit the [Actor detail page](https://apify.com/x.com/sales-call-list-generator) to learn more, explore other use cases, and run it yourself.