# Monitor recent replies to a Threads post

**Use case:** 

Export public Threads replies from a post at or after a fixed timestamp for incremental social listening.

## Input

```json
{
  "postUrls": [
    {
      "url": "https://www.threads.com/@nasa/post/DbTnB4JGWEX"
    }
  ],
  "profileUrls": [],
  "maxRepliesPerThread": 40,
  "maxDepth": 3,
  "changedSince": "2026-01-01T00:00:00.000Z",
  "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.