# Threads AI Posts Scraper and Trend Monitor

**Use case:** 

Scrape Threads search results for AI product conversations, creator mentions, and engagement signals.

## Input

```json
{
  "mode": "search",
  "usernames": [
    "zuck"
  ],
  "searchQueries": [
    "AI productivity tools",
    "Claude Code"
  ],
  "maxPosts": 25,
  "postedAfter": "2026-06-01",
  "includeProfile": true
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "string"
  },
  "text": {
    "label": "Text",
    "format": "string"
  },
  "likeCount": {
    "label": "Like Count",
    "format": "number"
  },
  "replyCount": {
    "label": "Reply Count",
    "format": "number"
  },
  "repostCount": {
    "label": "Repost Count",
    "format": "number"
  },
  "mediaType": {
    "label": "Media Type",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "url": {
    "label": "Url",
    "format": "string"
  }
}
```

## About this Actor

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