# Enrich public Threads profiles with bio data

**Use case:** 

Pull profile metadata such as name, bio, follower count, and external links from public Threads usernames you already have.

## Input

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

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "string"
  },
  "authorFullName": {
    "label": "Author full name",
    "format": "string"
  },
  "authorFollowerCount": {
    "label": "Author follower count",
    "format": "integer"
  },
  "bio": {
    "label": "Bio",
    "format": "string"
  },
  "externalUrl": {
    "label": "External url",
    "format": "string"
  },
  "profilePicUrl": {
    "label": "Profile pic url",
    "format": "string"
  }
}
```

## 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.