TV Show Scraper - Shows, Episodes & People (TVMaze) avatar

TV Show Scraper - Shows, Episodes & People (TVMaze)

Pricing

$2.00 / 1,000 item returneds

Go to Apify Store
TV Show Scraper - Shows, Episodes & People (TVMaze)

TV Show Scraper - Shows, Episodes & People (TVMaze)

Search TVMaze for TV shows, people and episodes. The show search is fuzzy on purpose. Type "breking bad" and it still finds the show. Each show gives the rating, genres, network, country, status, premiere date, IMDb ID, summary and image. No key. $2.00 per 1,000 rows.

Pricing

$2.00 / 1,000 item returneds

Rating

0.0

(0)

Developer

Dami's Studio

Dami's Studio

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

TV Show Scraper: TVMaze shows, people and episodes, no key

Type a show name and get rows back with the rating, genres, network, country, status, premiere date, IMDb id, plain-text summary and poster. Switch modes and the same run searches TVMaze's people directory by name, or lists every episode of one show, unaired ones included.

Show search is fuzzy, and that cuts both ways. A vague query comes back with loosely related shows, and those rows are charged like any other, so keep maxItems small while you work out the wording.

InputA show name, a person's name, or a TVMaze show id
OutputOne row per show, person or episode
Ceiling2,000 rows per run
Account neededNone, and no API key
Price$2.00 per 1,000 rows, flat on every plan

๐Ÿ” What TV Show Scraper does

One run does one of three jobs, picked with mode.

Shows searches TVMaze by title. Each row carries the rating, genre list, status, runtime, first and last air dates, country, IMDb id and the poster URL. network holds the broadcaster, and for a streaming-only show it holds the streaming service instead, so you never have to read two fields.

People searches the people directory by name and returns id, country, birthday, gender and photo. It is a name lookup, not a cast list. Asking it "who was in Breaking Bad" gets you people called Breaking Bad, which is nobody.

Episodes takes one numeric TVMaze show id and returns the whole run: season, episode number, title, air date, runtime, rating and summary. Episodes with a future air date are included, which is what makes it useful for a release calendar.

Summaries arrive with the HTML tags already stripped out.

๐Ÿ“ฅ What you give it

{
"mode": "shows",
"query": "breaking bad",
"maxItems": 10
}
FieldDefaultWhat it is
modeshowsshows, people or episodes.
querynoneThe show or person name. Ignored in episodes mode. The Console shows breaking bad as an example, but that is a prefill, so an API call has to send its own.
showIdnoneTVMaze's numeric show id, required for episodes mode and ignored otherwise. Run shows first and take it from id.
maxItems501 to 2,000. Rows are deduplicated on id before this cap is applied.
notionConnectornoneOptional. Writes every delivered row into your Notion. Authorise a connector once under Settings, API and Integrations, MCP connectors, then pick it here.
notionParentIdnoneOptional. The Notion data source id to write into. Leave it empty and the pages are created privately in your workspace.
proxyConfigurationoffOptional network setting. Off is right for a normal run.

showId is TVMaze's own id, not IMDb's. Breaking Bad is 169 on TVMaze and tt0903747 on IMDb, and putting one where the other belongs gets you a NOT_FOUND row.

๐Ÿ“ค What you get back

A real row from a recent run, with the summary cut short here for length:

{
"ok": true,
"id": 169,
"name": "Breaking Bad",
"type": "Scripted",
"language": "English",
"genres": ["Drama", "Crime", "Thriller"],
"status": "Ended",
"runtime": 60,
"premiered": "2008-01-20",
"ended": "2019-10-11",
"rating": 9.2,
"network": "AMC",
"country": "United States",
"imdb": "tt0903747",
"officialSite": "http://www.amc.com/shows/breaking-bad",
"summary": "Breaking Bad follows protagonist Walter White, a chemistry teacher who lives in New Mexico with his wife and teenage son...",
"image": "https://static.tvmaze.com/uploads/images/original_untouched/501/1253519.jpg",
"url": "https://www.tvmaze.com/shows/169/breaking-bad"
}
FieldWhat it is
ratingTVMaze's average, or null when too few people have voted. Common on obscure shows and on single episodes.
endednull while a show is still running. That is how you tell.
networkThe broadcaster, or the streaming service for a show that only has one.
imdbYour join key onto anything else you already hold.
summaryPlain text. Empty summaries come back as "", missing ones as null.

People rows carry id, name, country, birthday, gender, image and url. Episode rows carry showId, episodeId, name, season, number, airdate, runtime, rating, summary and url.

๐Ÿงพ Reading the output

Every real row has ok: true. A row that could not be filled has ok: false plus an errorCode, and those are never charged.

CodeWhat it means
BAD_INPUTThe mode needs something you did not send: a query for shows or people, a positive whole-number showId for episodes.
NOT_FOUNDThat showId is not a TVMaze show. Answered straight away, with no retrying.
NO_RESULTSThe search ran and TVMaze had nothing matching.

Anything else that goes wrong lands as one diagnostic row carrying its own code, and the run still finishes rather than failing.

One thing to know about the Console's Overview table: it shows a narrow set of columns and drops season and episode number, so an episode list reads as titles with no numbers, and diagnostic rows render blank. Everything is present in the JSON, CSV and Excel exports. Switch the table to all fields, or download the dataset.

โ–ถ๏ธ How to run it

  1. Open TV Show Scraper and click Try for free.
  2. Pick a Mode.
  3. Type the show or person into Search query, or put the numeric id into Show id for episodes mode.
  4. Set Max items. Ten is plenty while you check the output shape.
  5. Click Start, then download the dataset as JSON, CSV, Excel or XML.

๐Ÿ’ฐ How much does it cost?

$2.00 per 1,000 rows. Flat on every Apify plan, no volume tiers. Shows, people and episodes all cost the same.

Duplicate rows, rows past your maxItems cap and every diagnostic row are not charged. A search that finds nothing returns one uncharged row.

๐Ÿ’ก What people use it for

  • Backfilling a media library that only has titles. Run each one through shows mode and you come out with genres, network, premiere date, poster and an IMDb id to join on.
  • Building a release calendar. episodes mode returns the whole run, so filtering airdate to future dates gives you what is still to come.
  • Checking whether a show is over. status and a null ended answer it in one row.
  • Tagging a back catalogue by genre and country without paying for a licensed film database.

๐Ÿšง What it does not do

  • No cast lists. People mode searches the directory by name. It cannot answer "who was in this show".
  • One showId per run in episodes mode. Several shows means several runs.
  • Search reads one page of TVMaze matches, so raising maxItems past that page does nothing in shows and people modes. The cap earns its keep in episodes mode.
  • rating is often null where the vote count is too low to publish an average.
  • No box office, no streaming availability, no ticket links. TVMaze is a schedule and metadata source, and this returns what it holds.
  • Rows are a snapshot. Ratings move and a running show gains episodes. Re-run for fresh numbers.

๐Ÿงญ Which catalogue scraper do you need?

If you wantUse
TV shows, people or full episode listsThis one
Film and TV titles with IMDb ids, plus people and companiesIMDb Search Scraper
Books, ISBNs, publishers and coversBooks Scraper
iPhone and iPad apps and their reviewsApp Store Scraper
Company reviews and ratingsTrustpilot Scraper

โ“ Questions people ask

Do I need a TVMaze account or key? No. Nothing to apply for.

How do I find a show id? Run shows mode with the title and read id off the row. That number goes straight into showId.

Why did my episode list come back with no episode numbers? The Console's Overview table hides those columns. The numbers are in the data. Download it or switch the table to all fields.

Can I get upcoming episodes? Yes. Episodes mode includes unaired ones, so filter airdate forward from today.

Why did I get shows I did not ask for? Fuzzy search. A short or vague query pulls in loose matches, and you pay for the rows. Add more of the title.

Is this legal? TVMaze publishes this data through an open API meant to be read. It is show metadata, not personal data, apart from the public credits in people mode. Apify's write-up on scraping and the law is a good starting point, and we are not lawyers.

๐Ÿ†˜ If something breaks

Open the Issues tab on the actor page. Send the input you used and the run id. The errorCode on the diagnostic row usually names the problem by itself.