# Scrape Mark Zuckerberg's Threads Posts and Replies

**Use case:** 

Access Mark Zuckerberg's public Threads posts and replies. Get up to 50 posts, including engagement data, in CSV, JSON, or Excel format.

## Input

```json
{
  "usernames": [
    "zuck"
  ],
  "postUrls": [
    "https://www.threads.com/@zuck/post/DY11ZLWG_eY"
  ],
  "searchTerms": [
    "ai",
    "#travel"
  ],
  "maxResults": 50,
  "includeReplies": true,
  "expandFromProfiles": true,
  "expandFromSearch": false,
  "maxExpandPerTarget": 12,
  "maxRepliesPerPost": 15,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "fromSource": {
    "label": "Source",
    "format": "text"
  },
  "text": {
    "label": "Post",
    "format": "text"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "repostCount": {
    "label": "Reposts",
    "format": "number"
  },
  "quoteCount": {
    "label": "Quotes",
    "format": "number"
  },
  "createdAt": {
    "label": "Date",
    "format": "text"
  },
  "url": {
    "label": "Link",
    "format": "link"
  }
}
```

## About this Actor

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