VOOZH about

URL: https://apify.com/direwolflabs/imdb-tv-episodes-scraper

โ‡ฑ Imdb Tv Episodes Scraper ยท Apify


Pricing

Pay per usage

Go to Apify Store

Imdb Tv Episodes Scraper

The fastest IMDb TV episodes scraper on Apify. Extract structured episode data by IMDb series ID, including season and episode numbers, ratings, release dates, runtime, and plot.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

๐Ÿ‘ jon

jon

Maintained by Community

Actor stats

0

Bookmarked

5

Total users

0

Monthly active users

3 months ago

Last modified

Share

The fastest IMDb TV episodes scraper on Apify. It collects structured episode data for one or more TV series by IMDb title IDs, including season and episode numbers, ratings, release dates, runtime, plots, and cast.

Overview

This Actor fetches paginated episode data from IMDb and pushes one normalized episode per dataset item. It now supports batch scraping across multiple series IDs in one run.

What You Get

Each episode dataset item includes:

  • request.seriesId
  • request.page
  • request.seasonNumber
  • episode.seriesId
  • episode.episodeId
  • episode.title
  • episode.seasonNumber
  • episode.episodeNumber
  • episode.releaseDate
  • episode.rating
  • episode.voteCount
  • episode.runtimeMinutes

Optional sections (controlled with includeSections):

  • plots: episode.plotSummary, episode.plotSummaries, episode.plotSynopsis
  • episodeCast: episode.actors (actor names + character names)
  • seasonCast: per-season aggregated actors in a seriesSummary item
  • seriesCast: series-level aggregated actors in a seriesSummary item

For each processed series, the Actor also pushes one seriesSummary dataset item with:

  • seriesSummary.series (series-level metadata)
  • seriesSummary.seasonActors
  • seriesSummary.seriesActors.fromEpisodes
  • seriesSummary.seriesActors.fromSeriesTitle

Input

Provide either seriesId or seriesIds.

Example:

{
"seriesIds":["tt0348914","tt0944947"],
"seasonNumber":1,
"maxPages":2,
"pageSize":50,
"includeExtended":true,
"includeSections":["core","plots","episodeCast","seasonCast","seriesCast"],
"includeRawPage":false,
"failOnError":false
}

Output

Example episode item:

{
"request":{
"seriesId":"tt0348914",
"page":1,
"seasonNumber":1,
"includeSections":["core","plots","episodeCast"]
},
"episode":{
"seriesId":"tt0348914",
"episodeId":"tt0556223",
"title":"Deadwood",
"seasonNumber":1,
"episodeNumber":1,
"releaseDate":"2004-03-21",
"rating":8.6,
"plotSummary":"...",
"plotSynopsis":"...",
"actors":[
{
"actorId":"nm0001801",
"actorName":"Timothy Olyphant",
"characters":["Seth Bullock"]
}
]
}
}

Example summary item:

{
"request":{
"seriesId":"tt0348914",
"seasonNumber":1,
"includeSections":["core","seasonCast","seriesCast"]
},
"seriesSummary":{
"seriesId":"tt0348914",
"series":{
"seriesId":"tt0348914",
"title":"Deadwood",
"plotSummary":"..."
},
"seasonActors":{
"1":[
{
"actorId":"nm0001801",
"actorName":"Timothy Olyphant",
"characters":["Seth Bullock"]
}
]
},
"seriesActors":{
"fromEpisodes":[],
"fromSeriesTitle":[]
}
}
}

The Actor also stores an OUTPUT record in the default key-value store with processed series count, page count, pushed episode count, skipped count, and failures.

You might also like

IMDb Scraper - Movies, TV Shows, Ratings & Cast

thirdwatch/imdb-scraper

Scrape IMDb movie and TV show data: title, year, rating, votes, genres, director, cast, plot, runtime, poster, and content rating. Search by name or provide IMDb URLs.

IMDb Search Work Actor

coder_zoro/imdb-search-work-actor

Search IMDb for movies, TV series, persons, episodes, companies, or keywords. Returns structured JSON results for the selected type and search term.

IMDB ๐ŸŽž๏ธ Extractor

jupri/imdb

๐Ÿ’ซ Scrape IMDb.com

IMDb Scraper

solidcode/imdb-scraper

[๐Ÿ’ฐ $5.0 / 1K] Extract movie & TV data from IMDb โ€” ratings, vote counts, cast, directors, genres, runtime, certificates, plot, and release year. Search by title, paste IMDb URLs, or browse the catalog by genre, year, and rating. Optional user reviews per title.

Imdb Deep Crawler

direwolflabs/imdb-deep-crawler

One of the fastest and most powerful IMDb web crawlers on Apify. Search, discover, and extract structured IMDb data for titles, people, reviews, episodes, news, trending content, videos, images, and streaming availability from a single actor.

IMDb Scraper

dtrungtin/imdb-scraper

Free IMDb API to extract and download data on movies, TV shows, video games, and other listings from IMDb. Delivers custom machine-readable IMDb datasets containing all information on your selected listings.

IMDb Scraper

pear_fight/imdb-scraper

Scrape movies, TV shows, and ratings from IMDb including search results, top 250, and individual titles

IMDb Title Search Scraper

powerai/imdb-title-search-scraper

Scrape movie and TV show titles from IMDb.com search results with comprehensive information including ratings, plots, and metadata.

IMDb Search Scraper

dami_studio/imdb-scraper

Search IMDb for movies, TV shows and people using IMDb's own public suggestion API โ€” no key, no login. Get clean rows with id, title/name, type, year, stars/known-for, poster image and the imdb.com URL. Pass multiple queries to fetch more.

2

Related articles

How to scrape IMDb with an unofficial IMDb API ๐ŸŽž๏ธ
Read more