# Threads Post Data Extractor

**Use case:** 

Scrape detailed data from any public Threads post, including captions, media, engagement metrics, and replies for research and analytics.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.threads.com/@openai/post/DW7RXR7EnRC"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "thread.username": {
    "label": "Username",
    "format": "text"
  },
  "thread.text": {
    "label": "Text",
    "format": "text"
  },
  "thread.like_count": {
    "label": "Like Count",
    "format": "number"
  },
  "thread.reply_count": {
    "label": "Reply Count",
    "format": "number"
  },
  "thread.images": {
    "label": "Images",
    "format": "image"
  },
  "thread.videos": {
    "label": "Videos",
    "format": "video"
  },
  "replies": {
    "label": "Replies",
    "format": "text"
  }
}
```

## About this Actor

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