# Scrape Trending Max TV Shows - JustWatch

**Use case:** 

Track trending TV shows on Max from JustWatch with Title, Type, Year, Streaming on, Cheapest rent and IMDb. Export to JSON, CSV or Excel.

## Input

```json
{
  "mode": "discover",
  "searchQueries": [
    "Oppenheimer",
    "Breaking Bad"
  ],
  "countries": [
    "US"
  ],
  "language": "en",
  "contentTypes": [
    "SHOW"
  ],
  "providers": [
    "Max"
  ],
  "monetizationTypes": [],
  "sortBy": "TRENDING",
  "includeCredits": false,
  "includeSeasons": true,
  "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"
  },
  "country": {
    "label": "Country"
  },
  "streamingOn": {
    "label": "Streaming on"
  },
  "isFree": {
    "label": "Free?"
  },
  "canRent": {
    "label": "Rent?"
  },
  "canBuy": {
    "label": "Buy?"
  },
  "cheapestRentPrice": {
    "label": "Cheapest rent"
  },
  "imdbScore": {
    "label": "IMDb"
  },
  "justWatchUrl": {
    "label": "JustWatch URL"
  }
}
```

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