# Top Sci-Fi Movies Since 2020 on IMDb

**Use case:** 

Access a list of highly-rated Sci-Fi movies released since 2020. Discover titles, ratings, and votes for your next film choice.

## Input

```json
{
  "mode": "searchTitles",
  "query": "christopher nolan",
  "titleTypes": [
    "movie"
  ],
  "genres": [
    "Sci-Fi"
  ],
  "releaseDateStart": "2020-01-01",
  "releaseDateEnd": "2024-12-31",
  "minRating": 7,
  "minVotes": 5000,
  "sortBy": "USER_RATING",
  "sortOrder": "DESC",
  "titleId": "tt0944947",
  "titleIds": [],
  "nameId": "nm0000138",
  "nameIds": [],
  "maxResults": 100,
  "country": "US",
  "language": "en-US"
}
```

## Output

```json
{
  "_mode": {
    "label": "Mode",
    "format": "text"
  },
  "id": {
    "label": "IMDb ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "titleType": {
    "label": "Type",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "aggregateRating": {
    "label": "Rating",
    "format": "number"
  },
  "voteCount": {
    "label": "Votes",
    "format": "number"
  },
  "imdbUrl": {
    "label": "IMDb URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  }
}
```

## About this Actor

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