# Scrape Threads Media Posts - Threads

**Use case:** 

Collect image and video posts from Threads creators with Author, Text, Likes, Media and Posted date. Export to JSON, CSV or Excel.

## Input

```json
{
  "mode": "userPosts",
  "usernames": [
    "natgeo",
    "nasa"
  ],
  "includePosts": true,
  "postTabs": [
    "media"
  ],
  "maxPostsPerProfile": 40,
  "enrichLeads": false,
  "leadsOnly": false,
  "includeReplies": true,
  "maxRepliesPerPost": 50,
  "maxResults": 0,
  "monitorMode": false,
  "monitorStoreName": "threads-monitor",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "username": {
    "label": "Author",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "repostCount": {
    "label": "Reposts",
    "format": "number"
  },
  "quoteCount": {
    "label": "Quotes",
    "format": "number"
  },
  "mediaType": {
    "label": "Media",
    "format": "text"
  },
  "takenAt": {
    "label": "Posted",
    "format": "text"
  },
  "url": {
    "label": "Threads",
    "format": "link"
  }
}
```

## About this Actor

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