# IMDb TV Series Scraper

**Use case:** 

Collect IMDb TV series filtered by genre, years, ratings, and votes for streaming research and content discovery.

## Input

```json
{
  "titleType": "tvSeries",
  "genres": [
    "comedy"
  ],
  "releaseYearFrom": 2015,
  "releaseYearTo": 2026,
  "ratingMin": 7,
  "minVotes": 10000,
  "sort": "num_votes_desc",
  "maxResults": 30
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Poster",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "releaseYear": {
    "label": "Year",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "voteCount": {
    "label": "Votes",
    "format": "number"
  },
  "metascore": {
    "label": "Metascore",
    "format": "number"
  },
  "genres": {
    "label": "Genres",
    "format": "text"
  },
  "runtimeFormatted": {
    "label": "Runtime",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [IMDb Scraper](https://apify.com/automation-lab/imdb-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/imdb-scraper) to learn more, explore other use cases, and run it yourself.