# Facebook Page Contact Extractor

**Use case:** 

Extract public Facebook Page contacts, website, phone, email, address, followers, likes, category, and page URLs.

## Input

```json
{
  "pageUrls": [
    "https://www.facebook.com/cocacola",
    "https://www.facebook.com/nike"
  ],
  "maxPages": 2,
  "includeRecentPosts": false,
  "proxyCountry": "US"
}
```

## Output

```json
{
  "name": {
    "label": "Page Name",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "url": {
    "label": "Facebook URL",
    "format": "link"
  }
}
```

## About this Actor

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