# Scrape Threads Posts for Social Listening

**Use case:** 

Pull public posts from any Meta Threads profile: post text, like counts, timestamps, author details, media URLs, and thread links. Track brand mentions, monitor

## Input

```json
{
  "username": "nike",
  "usernames": [],
  "maxResults": 10
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "like_count": {
    "label": "Likes",
    "format": "number"
  },
  "reply_count": {
    "label": "Replies",
    "format": "number"
  },
  "repost_count": {
    "label": "Reposts",
    "format": "number"
  },
  "quote_count": {
    "label": "Quotes",
    "format": "number"
  },
  "taken_at": {
    "label": "Posted At",
    "format": "text"
  },
  "thread_url": {
    "label": "Thread URL",
    "format": "link"
  }
}
```

## About this Actor

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