# Movie search TMDB Movies, TV Shows and People

**Use case:** 

Extract TMDB Movies, TV Shows and People data filtered by Movie search. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "maxItems": 10,
  "mode": "movie",
  "query": "inception",
  "year": 0,
  "language": "en-US",
  "tmdbApiKey": "***"
}
```

## Output

```json
{
  "posterUrl": {
    "label": "Poster",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "mediaType": {
    "label": "Type",
    "format": "text"
  },
  "releaseDate": {
    "label": "Released",
    "format": "text"
  },
  "voteAverage": {
    "label": "Score",
    "format": "number"
  },
  "voteCount": {
    "label": "Votes",
    "format": "number"
  },
  "popularity": {
    "label": "Popularity",
    "format": "number"
  },
  "genresText": {
    "label": "Genres",
    "format": "text"
  },
  "runtime": {
    "label": "Runtime",
    "format": "number"
  },
  "originalLanguage": {
    "label": "Lang",
    "format": "text"
  },
  "tmdbUrl": {
    "label": "TMDB",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [TMDB Movies, TV Shows and People Scraper](https://apify.com/parseforge/tmdb-movies-tv-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/tmdb-movies-tv-scraper) to learn more, explore other use cases, and run it yourself.