# Collect reply conversations from a Threads profile

**Use case:** 

Discover public Threads posts from a profile and export visible reply conversations with per-post provenance.

## Input

```json
{
  "postUrls": [],
  "profileUrls": [
    "https://www.threads.com/@nasa"
  ],
  "maxRepliesPerThread": 10,
  "maxDepth": 2,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "SHADER"
    ]
  }
}
```

## Output

```json
{
  "sourceType": {
    "label": "sourceType",
    "format": "string"
  },
  "sourceUrl": {
    "label": "sourceUrl",
    "format": "string"
  },
  "rootPostUrl": {
    "label": "rootPostUrl",
    "format": "string"
  },
  "replyUrl": {
    "label": "replyUrl",
    "format": "string"
  },
  "parentReplyId": {
    "label": "parentReplyId",
    "format": "string"
  },
  "depth": {
    "label": "depth",
    "format": "integer"
  },
  "authorUsername": {
    "label": "authorUsername",
    "format": "string"
  },
  "text": {
    "label": "text",
    "format": "string"
  },
  "createdAt": {
    "label": "createdAt",
    "format": "string"
  },
  "likeCount": {
    "label": "likeCount",
    "format": "integer"
  },
  "replyCount": {
    "label": "replyCount",
    "format": "integer"
  },
  "mediaType": {
    "label": "mediaType",
    "format": "string"
  },
  "scrapedAt": {
    "label": "scrapedAt",
    "format": "string"
  },
  "warning": {
    "label": "warning",
    "format": "string"
  }
}
```

## About this Actor

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