# Facebook Profile Data Extractor

**Use case:** 

Scrape Facebook profiles for follower counts, bios, profile pictures, and more. Get detailed insights about specific profiles by providing multiple URLs.

## Input

```json
{
  "profileUrls": [
    "https://www.facebook.com/PennsylvaniaSPCA/",
    "https://www.facebook.com/hiragananinja/"
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "profilePic": {
    "label": "Avatar",
    "format": "image"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "following": {
    "label": "Following",
    "format": "number"
  },
  "likes": {
    "label": "Page Likes",
    "format": "number"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "isVerified": {
    "label": "Verified",
    "format": "text"
  },
  "bio": {
    "label": "Bio",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Facebook Profile Scraper](https://apify.com/clappi/facebook-profile-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/clappi/facebook-profile-scraper) to learn more, explore other use cases, and run it yourself.