# Monitor Multiple Threads Accounts for New Posts

**Use case:** 

Track several public Threads accounts at once. Returns each account's recent posts with engagement counts — built for competitor monitoring and brand tracking.

## Input

```json
{
  "usernames": [
    "natgeo",
    "nike",
    "spotify"
  ],
  "maxPostsPerProfile": 50
}
```

## Output

```json
{
  "username": {
    "label": "Username"
  },
  "text": {
    "label": "Text"
  },
  "likes": {
    "label": "Likes"
  },
  "replies": {
    "label": "Replies"
  },
  "reposts": {
    "label": "Reposts"
  },
  "quotes": {
    "label": "Quotes"
  },
  "createdAt": {
    "label": "Created at"
  },
  "url": {
    "label": "Url"
  }
}
```

## About this Actor

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