# Facebook profile ID lookup example

**Use case:** 

Resolve a public Facebook profile.php URL into a typed identity, bio, profile ID, follower, work, education, and location record.

## Input

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

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