# Collect evidence posts from public Threads accounts

**Use case:** 

Capture public Threads posts with timestamps and engagement details so a report or briefing can cite the original source.

## Input

```json
{
  "usernames": [
    "zuck"
  ],
  "maxPostsPerProfile": 15,
  "includeProfileInfo": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "string"
  },
  "postUrl": {
    "label": "Post url",
    "format": "string"
  },
  "text": {
    "label": "Text",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "string"
  },
  "likeCount": {
    "label": "Like count",
    "format": "integer"
  },
  "replyCount": {
    "label": "Reply count",
    "format": "integer"
  },
  "repostCount": {
    "label": "Repost count",
    "format": "integer"
  },
  "quoteCount": {
    "label": "Quote count",
    "format": "integer"
  },
  "mediaUrls": {
    "label": "Media urls",
    "format": "array"
  }
}
```

## About this Actor

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