# Recurring Facebook public profile enrichment workflow

**Use case:** 

Create fresh typed snapshots for multiple public Facebook profiles in one run, ready for a scheduled enrichment pipeline.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.facebook.com/profile.php?id=81221197163"
    },
    {
      "url": "https://www.facebook.com/profile.php?id=6815841748"
    },
    {
      "url": "https://www.facebook.com/profile.php?id=20528438720"
    },
    {
      "url": "https://www.facebook.com/profile.php?id=81221197163"
    }
  ],
  "maxItems": 2
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "string"
  },
  "url": {
    "label": "Profile URL",
    "format": "string"
  },
  "username": {
    "label": "Username",
    "format": "string"
  },
  "profileId": {
    "label": "Profile ID",
    "format": "string"
  },
  "bio": {
    "label": "Bio",
    "format": "string"
  },
  "work": {
    "label": "Work",
    "format": "array"
  },
  "education": {
    "label": "Education",
    "format": "array"
  },
  "currentCity": {
    "label": "Current city",
    "format": "string"
  },
  "hometown": {
    "label": "Hometown",
    "format": "string"
  },
  "followers": {
    "label": "Followers",
    "format": "integer"
  },
  "following": {
    "label": "Following",
    "format": "integer"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "externalLinks": {
    "label": "External links",
    "format": "array"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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