# Bulk Linktree lookup by username or @handle

**Use case:** 

Resolve a list of usernames or @handles to their Linktree in one run. Get links, bio, socials, email, phone, website and lead score. Export to CSV.

## Input

```json
{
  "profileUrls": [
    "https://linktr.ee/garyvee"
  ],
  "usernames": [
    "garyvee",
    "mrbeast"
  ],
  "discoverRelatedProfiles": false,
  "discoveryDepth": 2,
  "maxProfiles": 100,
  "enrichContactEmails": false,
  "maxEnrichPagesPerProfile": 3,
  "includeLinkPreviews": true,
  "hasEmailOnly": false,
  "verifiedOnly": false,
  "countryFilter": "",
  "minLinks": 0,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 8,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "text"
  },
  "displayName": {
    "label": "Name",
    "format": "text"
  },
  "bio": {
    "label": "Bio",
    "format": "text"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "primaryEmail": {
    "label": "Email",
    "format": "text"
  },
  "primaryPhone": {
    "label": "Phone",
    "format": "text"
  },
  "primaryWebsite": {
    "label": "Website",
    "format": "link"
  },
  "socialPlatforms": {
    "label": "Socials",
    "format": "array"
  },
  "linkCount": {
    "label": "Links",
    "format": "number"
  },
  "leadScore": {
    "label": "Lead score",
    "format": "number"
  },
  "profileUrl": {
    "label": "Linktree",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Linktree Scraper - Creator Bio Links, Emails & Leads](https://apify.com/scrapesage/linktree-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/linktree-scraper) to learn more, explore other use cases, and run it yourself.