# Scrape Threads posts by username

**Use case:** 

Pull a Threads account's posts: text, timestamps, likes and replies.

## Input

```json
{
  "usernames": [
    "nasa"
  ],
  "postUrls": [],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "maxConcurrency": 5,
  "includeRawPosts": false
}
```

## Output

```json
{
  "username": {
    "label": "username"
  },
  "authorName": {
    "label": "authorName"
  },
  "text": {
    "label": "text"
  },
  "likeCount": {
    "label": "likeCount"
  },
  "replyCount": {
    "label": "replyCount"
  },
  "repostCount": {
    "label": "repostCount"
  },
  "url": {
    "label": "url"
  },
  "takenAt": {
    "label": "takenAt"
  },
  "scrapedAt": {
    "label": "scrapedAt"
  }
}
```

## About this Actor

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