# Scrape Threads Posts — Comments & Replies Export

**Use case:** 

Paste a Threads post URL to scrape the post plus its top replies with author, text and likes. Export CSV for sentiment and community research. No login, no API.

## Input

```json
{
  "mode": "post",
  "usernames": [
    "zuck"
  ],
  "searchSort": "top",
  "postUrls": [
    "https://www.threads.com/@zuck/post/DZpPDXbCeTt"
  ],
  "maxPosts": 50
}
```

## Output

```json
{
  "author": {
    "label": "Author",
    "format": "text"
  },
  "content": {
    "label": "Content",
    "format": "text"
  },
  "publishedAt": {
    "label": "Published",
    "format": "text"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "repostCount": {
    "label": "Reposts",
    "format": "number"
  },
  "shareCount": {
    "label": "Shares",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "quoteCount": {
    "label": "Quotes",
    "format": "number"
  },
  "mediaType": {
    "label": "Media Type",
    "format": "text"
  },
  "publishedAtISO": {
    "label": "Published (ISO)",
    "format": "date"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "link"
  },
  "sourceType": {
    "label": "Source",
    "format": "text"
  },
  "sourceQuery": {
    "label": "Query",
    "format": "text"
  }
}
```

## About this Actor

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