# Threads Brand Posts Scraper with Profile Context

**Use case:** 

Scrape recent Threads posts, engagement data, and profile context for brand reporting and content audits.

## Input

```json
{
  "mode": "posts",
  "usernames": [
    "netflix",
    "spotify"
  ],
  "searchQueries": [
    "artificial intelligence"
  ],
  "maxPosts": 30,
  "postedAfter": "2026-05-01",
  "postedBefore": "2026-06-01",
  "includeProfile": true
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "string"
  },
  "fullName": {
    "label": "Full Name",
    "format": "string"
  },
  "text": {
    "label": "Text",
    "format": "string"
  },
  "likeCount": {
    "label": "Like Count",
    "format": "number"
  },
  "replyCount": {
    "label": "Reply Count",
    "format": "number"
  },
  "followerCount": {
    "label": "Follower 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.