# Scrape Threads posts from URLs

**Use case:** 

Paste specific Threads post URLs and get the full post data back.

## Input

```json
{
  "usernames": [
    "acmecompany"
  ],
  "postUrls": [
    "https://www.threads.net/@nasa"
  ],
  "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.