# Threads Sentiment Analysis — Keyword & Brand Tracker

**Use case:** 

Scrape Threads by keyword to track brand mentions and sentiment, with likes, replies, views and timestamps. Sort by recent; export CSV. No login, no API token.

## Input

```json
{
  "mode": "search",
  "usernames": [
    "zuck"
  ],
  "keywords": [
    "your brand"
  ],
  "searchSort": "recent",
  "maxPosts": 50
}
```

## Output

```json
{
  "author": {
    "label": "Author",
    "format": "text"
  },
  "content": {
    "label": "Content",
    "format": "text"
  },
  "publishedAt": {
    "label": "Published",
    "format": "text"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "repostCount": {
    "label": "Reposts",
    "format": "number"
  },
  "shareCount": {
    "label": "Shares",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "quoteCount": {
    "label": "Quotes",
    "format": "number"
  },
  "mediaType": {
    "label": "Media Type",
    "format": "text"
  },
  "publishedAtISO": {
    "label": "Published (ISO)",
    "format": "date"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "link"
  },
  "sourceType": {
    "label": "Source",
    "format": "text"
  },
  "sourceQuery": {
    "label": "Query",
    "format": "text"
  }
}
```

## About this Actor

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