# Celebrity & Brand Posts Scraper on Threads

**Use case:** 

Scrape public posts from celebrity and brand accounts on Threads. Get up to 60 posts, excluding replies, in your chosen format.

## Input

```json
{
  "usernames": [
    "kingjames",
    "nike",
    "adidas",
    "netflix",
    "disney"
  ],
  "postUrls": [
    "https://www.threads.com/@zuck/post/DY11ZLWG_eY"
  ],
  "searchTerms": [
    "ai",
    "#travel"
  ],
  "maxResults": 60,
  "includeReplies": false,
  "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.