# Extract Contacts Behind Link-In-Bio Pages

**Use case:** 

A linktr.ee or bio.link page has no contacts of its own - it is a list of links. For those hosts the Actor follows the links out and reads the real sites behind them, which is where the creator's business email actually sits.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://linktr.ee/spotify"
    },
    {
      "url": "https://linktr.ee/duolingo"
    },
    {
      "url": "https://linktr.ee/redbull"
    }
  ],
  "maxItems": 50,
  "maxPagesPerSite": 8,
  "crawlStrategy": "contact-pages",
  "useSitemap": true,
  "guessContactPaths": true,
  "sameDomain": false,
  "followLinkInBioPages": true,
  "scrapeIframes": false,
  "checkMx": true,
  "defaultCountry": "US",
  "onlyWithEmail": false,
  "onlyWithPhone": false,
  "onlyWithContacts": false,
  "onlyWithSocialProfile": false,
  "skipUnreachableSites": false,
  "onlyDeliverableEmail": false,
  "onlySameDomainEmail": false,
  "skipFreeMailboxes": false,
  "emailKinds": [],
  "domainContains": [],
  "textContains": [],
  "excludeContains": [],
  "onlyChanged": false,
  "emitUnchanged": false,
  "monitorStoreName": "website-contacts-state",
  "compactOutput": false,
  "concurrency": 6,
  "requestTimeoutSecs": 20,
  "urlField": "website"
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "url": {
    "label": "Url",
    "format": "string"
  },
  "primary_email": {
    "label": "Primary email",
    "format": "string"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "email_count": {
    "label": "Email count",
    "format": "integer"
  },
  "primary_phone": {
    "label": "Primary phone",
    "format": "string"
  },
  "phones": {
    "label": "Phones",
    "format": "array"
  },
  "company_name": {
    "label": "Company name",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "country_code": {
    "label": "Country code",
    "format": "string"
  },
  "linkedin": {
    "label": "Linkedin",
    "format": "array"
  },
  "facebook": {
    "label": "Facebook",
    "format": "array"
  },
  "instagram": {
    "label": "Instagram",
    "format": "array"
  },
  "social_count": {
    "label": "Social count",
    "format": "integer"
  },
  "pages_crawled": {
    "label": "Pages crawled",
    "format": "integer"
  },
  "reachable": {
    "label": "Reachable",
    "format": "boolean"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/snow_leo_data/website-contact-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
