# Scrape Threads Fashion Brand Profiles - Threads

**Use case:** 

Find fashion brand profiles on Threads with Username, Name, Followers, Verified, Bio and Website. Export to JSON, CSV or Excel.

## Input

```json
{
  "mode": "profiles",
  "usernames": [
    "nike",
    "zara",
    "gucci",
    "adidas"
  ],
  "includePosts": true,
  "postTabs": [
    "threads"
  ],
  "maxPostsPerProfile": 20,
  "enrichLeads": false,
  "leadsOnly": false,
  "includeReplies": true,
  "maxRepliesPerPost": 50,
  "maxResults": 0,
  "monitorMode": false,
  "monitorStoreName": "threads-monitor",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "text"
  },
  "fullName": {
    "label": "Name",
    "format": "text"
  },
  "followerCount": {
    "label": "Followers",
    "format": "number"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "biography": {
    "label": "Bio",
    "format": "text"
  },
  "externalUrl": {
    "label": "Website",
    "format": "link"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "leadScore": {
    "label": "Lead score",
    "format": "number"
  },
  "profileUrl": {
    "label": "Threads",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Threads Scraper - Profiles, Posts, Replies & Leads](https://apify.com/scrapesage/threads-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/threads-scraper) to learn more, explore other use cases, and run it yourself.