# Related Threads posts scraper and extractor

**Use case:** 

Extract Related threads recommendations, authors, text, links, and engagement from a public Threads post URL.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.threads.com/@zuck/post/CuP48CiS5sx"
    }
  ],
  "maxItems": 10,
  "maxDepth": 0
}
```

## Output

```json
{
  "sourcePostUrl": {
    "label": "Source",
    "format": "string"
  },
  "relatedPostUrl": {
    "label": "Related post",
    "format": "string"
  },
  "authorUsername": {
    "label": "Author",
    "format": "string"
  },
  "text": {
    "label": "Text",
    "format": "string"
  },
  "outboundDomain": {
    "label": "Domain",
    "format": "string"
  },
  "likeCount": {
    "label": "Likes",
    "format": "integer"
  },
  "replyCount": {
    "label": "Replies",
    "format": "integer"
  },
  "repostCount": {
    "label": "Reposts",
    "format": "integer"
  },
  "publishedAt": {
    "label": "Published",
    "format": "string"
  },
  "sourceDepth": {
    "label": "Depth",
    "format": "integer"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "string"
  }
}
```

## About this Actor

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