# Threads Profile Scraper for Creator Research

**Use case:** 

Extract Threads profile bios, follower counts, verification status, and account metadata for creator research.

## Input

```json
{
  "mode": "profile",
  "usernames": [
    "zuck",
    "mosseri"
  ],
  "searchQueries": [
    "artificial intelligence"
  ],
  "maxPosts": 5,
  "includeProfile": true
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "string"
  },
  "fullName": {
    "label": "Full Name",
    "format": "string"
  },
  "biography": {
    "label": "Biography",
    "format": "string"
  },
  "followerCount": {
    "label": "Follower Count",
    "format": "number"
  },
  "isVerified": {
    "label": "Is Verified",
    "format": "boolean"
  },
  "profilePicUrl": {
    "label": "Profile Pic URL",
    "format": "string"
  },
  "url": {
    "label": "Url",
    "format": "string"
  }
}
```

## About this Actor

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