# Scrape Top-Rated Sci-Fi Movies - JustWatch

**Use case:** 

Scrape top-rated sci-fi movies from JustWatch with Title, Year, Genres, IMDb, TMDB and Age rating. Export to JSON, CSV or Excel.

## Input

```json
{
  "mode": "discover",
  "searchQueries": [
    "Oppenheimer",
    "Breaking Bad"
  ],
  "countries": [
    "US"
  ],
  "language": "en",
  "contentTypes": [
    "MOVIE"
  ],
  "genres": [
    "Science Fiction"
  ],
  "monetizationTypes": [],
  "minImdbScore": "7.5",
  "sortBy": "IMDB_SCORE",
  "includeCredits": false,
  "includeSeasons": false,
  "includeRawFields": false,
  "maxResults": 100,
  "deduplicateResults": true,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "contentType": {
    "label": "Type"
  },
  "releaseYear": {
    "label": "Year"
  },
  "genres": {
    "label": "Genres"
  },
  "imdbScore": {
    "label": "IMDb"
  },
  "tmdbScore": {
    "label": "TMDB"
  },
  "runtimeMinutes": {
    "label": "Runtime (min)"
  },
  "ageCertification": {
    "label": "Age rating"
  },
  "leavingSoonProviders": {
    "label": "Leaving soon"
  },
  "country": {
    "label": "Country"
  }
}
```

## About this Actor

This example demonstrates how to use [JustWatch Scraper - Streaming Availability, Offers & Prices](https://apify.com/scrapesage/justwatch-streaming-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/justwatch-streaming-scraper) to learn more, explore other use cases, and run it yourself.