# IMDb Celebrity & Actor Profile Scraper

**Use case:** 

Look up actors, directors and crew on IMDb and export biography, birth date and place, known-for titles, full filmography and profile image URLs.

## Input

```json
{
  "searchQueries": [
    "Zendaya"
  ],
  "searchType": "name",
  "discover": false,
  "sortBy": "popularity",
  "sortOrder": "DESC",
  "includeTitleDetails": true,
  "castLimit": 20,
  "includeFullCast": false,
  "includeEpisodes": false,
  "maxEpisodesPerSeries": 2000,
  "includeReviews": false,
  "maxReviewsPerTitle": 25,
  "maxItems": 50,
  "deduplicate": true,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 6,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "professions": {
    "label": "Professions",
    "format": "array"
  },
  "birthDate": {
    "label": "Born",
    "format": "text"
  },
  "birthLocation": {
    "label": "Birthplace",
    "format": "text"
  },
  "popularityRank": {
    "label": "Popularity rank",
    "format": "number"
  },
  "awardNominationsTotal": {
    "label": "Award noms",
    "format": "number"
  },
  "creditCount": {
    "label": "Credits",
    "format": "number"
  },
  "url": {
    "label": "IMDb URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [IMDb Scraper - Movies, TV Shows, Ratings, Cast & Box Office](https://apify.com/scrapesage/imdb-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/imdb-scraper) to learn more, explore other use cases, and run it yourself.