# Linktree URL List Extractor

**Use case:** 

Scrape exact public Linktree profile URLs and export profile titles, descriptions, social links, and destination URLs.

## Input

```json
{
  "profileUrls": [
    {
      "url": "https://linktr.ee/apify"
    },
    {
      "url": "https://linktr.ee/linktree"
    }
  ],
  "usernames": [
    "apify"
  ],
  "maxProfiles": 2,
  "includeRawData": false
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "string"
  },
  "url": {
    "label": "Profile URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "bio": {
    "label": "Bio",
    "format": "string"
  },
  "linkCount": {
    "label": "Links",
    "format": "integer"
  },
  "socialLinkCount": {
    "label": "Social links",
    "format": "integer"
  },
  "significantLink": {
    "label": "Significant link",
    "format": "string"
  },
  "dateModified": {
    "label": "Modified",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Linktree Profile Scraper](https://apify.com/automation-lab/linktree-profile-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/linktree-profile-scraper) to learn more, explore other use cases, and run it yourself.