# Monitor Instagram's Threads profile

**Use case:** 

Collect public profile metadata and recent visible posts from Instagram's Threads account for social media monitoring.

## Input

```json
{
  "mode": "posts",
  "usernames": [
    "instagram"
  ],
  "postUrls": [
    "https://www.threads.com/@zuck/post/DakyAavlKLZ"
  ],
  "searchQueries": [
    "artificial intelligence"
  ],
  "maxPosts": 10,
  "includeProfile": true,
  "includeReplies": true,
  "maxRepliesPerPost": 20,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "itemType": {
    "label": "Item type",
    "format": "string"
  },
  "username": {
    "label": "Username",
    "format": "string"
  },
  "displayName": {
    "label": "Display name",
    "format": "string"
  },
  "text": {
    "label": "Post text",
    "format": "string"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "string"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "string"
  },
  "timestamp": {
    "label": "Published at",
    "format": "string"
  },
  "followerCount": {
    "label": "Followers",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "repostCount": {
    "label": "Reposts",
    "format": "number"
  },
  "quoteCount": {
    "label": "Quotes",
    "format": "number"
  },
  "mediaType": {
    "label": "Media type",
    "format": "string"
  },
  "searchQuery": {
    "label": "Search query",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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