# Threads Engagement Research Workflow

**Use case:** 

Collect Threads replies across campaign posts to analyze audience sentiment, creator engagement, FAQs, leads, and moderation signals.

## Input

```json
{
  "postUrls": [
    {
      "url": "https://www.threads.com/@nasa/post/DZceA72Drjf"
    }
  ],
  "maxRepliesPerPost": 250,
  "includeNestedReplies": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "postUrl": {
    "label": "Source post",
    "format": "link"
  },
  "replyId": {
    "label": "Reply ID",
    "format": "text"
  },
  "replyUrl": {
    "label": "Reply URL",
    "format": "link"
  },
  "parentPostId": {
    "label": "Parent post ID",
    "format": "text"
  },
  "authorUsername": {
    "label": "Username",
    "format": "text"
  },
  "authorDisplayName": {
    "label": "Display name",
    "format": "text"
  },
  "authorProfileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "authorVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "text": {
    "label": "Reply text",
    "format": "text"
  },
  "createdAt": {
    "label": "Created at",
    "format": "date"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "repostCount": {
    "label": "Reposts",
    "format": "number"
  },
  "quoteCount": {
    "label": "Quotes",
    "format": "number"
  },
  "mediaUrls": {
    "label": "Media URLs",
    "format": "array"
  },
  "quotedPost": {
    "label": "Quoted post",
    "format": "object"
  },
  "depth": {
    "label": "Payload depth",
    "format": "number"
  },
  "threadLevel": {
    "label": "Thread level",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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