Details
curl --request GET \
--url 'https://api.themoviedb.org/3/tv/episode_group/{tv_episode_group_id}?%7B%7Bkey%7D%7D='import requests
url = "https://api.themoviedb.org/3/tv/episode_group/{tv_episode_group_id}?%7B%7Bkey%7D%7D="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/tv/episode_group/{tv_episode_group_id}?%7B%7Bkey%7D%7D=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.themoviedb.org/3/tv/episode_group/{tv_episode_group_id}?%7B%7Bkey%7D%7D=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.themoviedb.org/3/tv/episode_group/{tv_episode_group_id}?%7B%7Bkey%7D%7D="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.themoviedb.org/3/tv/episode_group/{tv_episode_group_id}?%7B%7Bkey%7D%7D=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/tv/episode_group/{tv_episode_group_id}?%7B%7Bkey%7D%7D=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"description": "This episode group reflects the order of the DVD releases.",
"episode_count": 85,
"group_count": 3,
"groups": [
{
"episodes": [
{
"air_date": "1992-09-06",
"episode_number": 2,
"episode_type": "standard",
"id": 146355,
"name": "On Leather Wings",
"order": 0,
"overview": "When a vicious bat creature known as Man-Bat, starts terrorizing Gotham City, everyone mistakenly thinks that Batman is the culprit. Batman must find out who the mysterious Man-Bat is and clear his own name.",
"production_code": "001",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/kTLD5SHb8O4oFTw9CffqPpIGnon.jpg",
"vote_average": 7.371,
"vote_count": 35
},
{
"air_date": "1992-11-13",
"episode_number": 38,
"episode_type": "standard",
"id": 987941,
"name": "Christmas with the Joker",
"order": 1,
"overview": "The Joker kidnaps three prominent citizens during Christmas and challenges Batman to find him before midnight.",
"production_code": "502",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/kaLJGHwzWFFXRAjmjQWtwNXwqyD.jpg",
"vote_average": 6.8,
"vote_count": 25
},
{
"air_date": "1992-09-15",
"episode_number": 10,
"episode_type": "standard",
"id": 146359,
"name": "Nothing to Fear",
"order": 2,
"overview": "A horrifying villain named Scarecrow spreads fear gas and wreaks havoc at Gotham State University.",
"production_code": "503",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/gnP1W7zwqMJaQFQavr4Xa5VaYtd.jpg",
"vote_average": 7.704,
"vote_count": 27
},
{
"air_date": "1992-09-22",
"episode_number": 15,
"episode_type": "standard",
"id": 146390,
"name": "The Last Laugh",
"order": 3,
"overview": "The Joker employs a lethal mind-altering laughing gas to transform the citizens of Gotham into total fools.",
"production_code": "504",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/2KmOTW9jGmgcUxS9wtQN0Ga1JMU.jpg",
"vote_average": 7.444,
"vote_count": 27
},
{
"air_date": "1992-09-14",
"episode_number": 9,
"episode_type": "standard",
"id": 146446,
"name": "Pretty Poison",
"order": 4,
"overview": "When District Attorney Harvey Dent is poisoned after a dinner date, Batman makes the horrifying discovery that his date was Poison Ivy, a plant-obsessed villainess.",
"production_code": "505",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/9dPYAOyvyVmSxnC5hAGOl5vXwpW.jpg",
"vote_average": 7.462,
"vote_count": 26
},
{
"air_date": "1992-10-21",
"episode_number": 27,
"episode_type": "standard",
"id": 986191,
"name": "The Underdwellers",
"order": 5,
"overview": "Batman discovers a gang of forgotten runaways living deep within the Gotham sewer system.",
"production_code": "506",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/tRn0HVWp9twkBktbuoV1XoqTPzF.jpg",
"vote_average": 7.1,
"vote_count": 17
},
{
"air_date": "1992-09-18",
"episode_number": 13,
"episode_type": "standard",
"id": 146391,
"name": "P.O.V.",
"order": 6,
"overview": "Bullock's account of a botched sting operation is so at odds with the other officers' testimony that the police investigator suspends everyone involved.",
"production_code": "507",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/yznDzUOs9fhwnmgxemCYeC6cOv9.jpg",
"vote_average": 7.4,
"vote_count": 22
},
{
"air_date": "1992-10-08",
"episode_number": 23,
"episode_type": "standard",
"id": 987942,
"name": "The Forgotten",
"order": 7,
"overview": "When men begin disappearing at a bowery, Bruce Wayne decides to go undercover as a worker. He loses his memory after he is attacked, kidnapped and forced to work in a mining camp.",
"production_code": "508",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/oZ6gdMHfBTAXYbaKYMeuvomEue8.jpg",
"vote_average": 7.2,
"vote_count": 20
},
{
"air_date": "1992-09-16",
"episode_number": 11,
"episode_type": "standard",
"id": 146374,
"name": "Be a Clown",
"order": 8,
"overview": "The Joker infiltrates the birthday party of Mayor Hill's son in order to plant a bomb.",
"production_code": "509",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/kojigDu7kOWkgMoJUaIdT1SUZX6.jpg",
"vote_average": 7.1,
"vote_count": 23
},
{
"air_date": "1992-09-25",
"episode_number": 17,
"episode_type": "standard",
"id": 146375,
"name": "Two-Face (1)",
"order": 9,
"overview": "District Attorney Harvey Dent hides a deep dark secret--he has a second personality, Big Bad Harv, a tough gangster.",
"production_code": "510",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/to1wCUQzENjS7UashGyXi30B7JV.jpg",
"vote_average": 8.3,
"vote_count": 27
},
{
"air_date": "1992-09-28",
"episode_number": 18,
"episode_type": "standard",
"id": 986192,
"name": "Two-Face (2)",
"order": 10,
"overview": "Two-Face, the former Harvey Dent, begins an aggressive campaign against his hated rival, Rupert Thorne.",
"production_code": "517",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/mnTUBXCE37mwBHGv0guHVMj8wAf.jpg",
"vote_average": 8.3,
"vote_count": 26
},
{
"air_date": "1992-09-10",
"episode_number": 6,
"episode_type": "standard",
"id": 146377,
"name": "It's Never Too Late",
"order": 11,
"overview": "An aging Mob boss learns his drug dealings have contributed to his son's drug addiction.",
"production_code": "511",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/aWdYhXYHf6AN1JeIFSlO3Z2Pnhj.jpg",
"vote_average": 7.7,
"vote_count": 23
},
{
"air_date": "1992-09-30",
"episode_number": 20,
"episode_type": "standard",
"id": 146378,
"name": "I've Got Batman in My Basement",
"order": 12,
"overview": "After the Penguin sprays Batman with nerve gas, a 12-year-old boy rescues the unconscious hero and hides him in his basement.",
"production_code": "512",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/i3Wkp8PCLQxdFG4bk1QQ7At7jwo.jpg",
"vote_average": 6.8,
"vote_count": 19
},
{
"air_date": "1992-09-07",
"episode_number": 3,
"episode_type": "standard",
"id": 146379,
"name": "Heart of Ice",
"order": 13,
"overview": "Brilliant cryogenics expert Dr. Victor Fries is transformed into Mr. Freeze, a vengeful creature who can only survive in subzero temperatures.",
"production_code": "514",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/56gAPNLX5MTUcOy4QAfNwGUCBCF.jpg",
"vote_average": 8.333,
"vote_count": 27
},
{
"air_date": "1992-09-05",
"episode_number": 1,
"episode_type": "standard",
"id": 146380,
"name": "The Cat and the Claw (1)",
"order": 14,
"overview": "Catwoman steals a necklace to finance the purchase of land for a mountain lion reserve, but is stopped by a group of terrorists.",
"production_code": "513",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/iDkkb25Qb4wUAef42oxLaVFysp2.jpg",
"vote_average": 7.52,
"vote_count": 25
},
{
"air_date": "1992-09-12",
"episode_number": 8,
"episode_type": "standard",
"id": 146398,
"name": "The Cat and the Claw (2)",
"order": 15,
"overview": "When Catwoman infiltrates the underground headquarters of the terrorists, both she and Batman are captured and left to die as victims of a viral plague.",
"production_code": "516",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/8t9rNPZ9JM8aUkleCd8ygKM0pUP.jpg",
"vote_average": 7.1,
"vote_count": 19
},
{
"air_date": "1993-02-24",
"episode_number": 56,
"episode_type": "standard",
"id": 987943,
"name": "See No Evil",
"order": 16,
"overview": "After a fortune disappears from a gem exposition, Batman investigates. He discovers that the crime may have been committed by an invisible man, an ex-con named Lloyd Ventris.",
"production_code": "515",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/a5PKPr8LnEt4h76AB8ezPVUEobk.jpg",
"vote_average": 7.8,
"vote_count": 12
},
{
"air_date": "1992-11-04",
"episode_number": 32,
"episode_type": "standard",
"id": 987944,
"name": "Beware the Gray Ghost",
"order": 17,
"overview": "Batman connects recent bombings in Gotham to an episode of an old television series featuring his favorite boyhood hero, the 'Gray Ghost.'",
"production_code": "518",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/nSlGbTrDDP0bJORpC8KHXbbkTZG.jpg",
"vote_average": 8.2,
"vote_count": 15
},
{
"air_date": "1992-10-06",
"episode_number": 22,
"episode_type": "standard",
"id": 986193,
"name": "Prophecy of Doom",
"order": 18,
"overview": "Bruce begins to worry when all of his wealthy friends join the same Brotherhood group run by Nostromos, a so-called psychic.",
"production_code": "519",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/jiZjlFVxw5aK6G1hzw8m1XStkcs.jpg",
"vote_average": 6.8,
"vote_count": 16
},
{
"air_date": "1992-09-08",
"episode_number": 4,
"episode_type": "standard",
"id": 987946,
"name": "Feat of Clay (1)",
"order": 19,
"overview": "A popular actor renowned for his ability to play any part has a terrible secret--he's addicted to a strange chemical formula that enables him to alter his facial features without makeup.",
"production_code": "520",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/qH5FgSSPT6SL43Vuhfsh1FxIKR.jpg",
"vote_average": 7.8,
"vote_count": 20
},
{
"air_date": "1992-09-09",
"episode_number": 5,
"episode_type": "standard",
"id": 146392,
"name": "Feat of Clay (2)",
"order": 20,
"overview": "Clayface learns that the man responsible for his disfigurement is to appear on TV, promoting a skin conditioner containing the same chemical that deformed him.",
"production_code": "521",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/w4HpRMyiQhXuGrIuAokdDtpb9yd.jpg",
"vote_average": 8.05,
"vote_count": 20
},
{
"air_date": "1992-09-11",
"episode_number": 7,
"episode_type": "standard",
"id": 987948,
"name": "Joker's Favor",
"order": 21,
"overview": "When a timid accountant accidentally runs afoul of the Joker, he promises the Joker anything if the villain will only let him go.",
"production_code": "522",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/nPZoEfwnR9FwLwiZ7mau9nC3nzx.jpg",
"vote_average": 7.6,
"vote_count": 19
},
{
"air_date": "1992-10-05",
"episode_number": 21,
"episode_type": "standard",
"id": 987949,
"name": "Vendetta",
"order": 22,
"overview": "Batman suspects that an imprisoned Detective Bullock may be innocent after he is arrested for murder. The real murderer turns out to be Killer Croc, who framed Bullock to get revenge.",
"production_code": "523",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/dmNy79DXWl8eDyQg3cJ6snrIy1M.jpg",
"vote_average": 7.5,
"vote_count": 15
},
{
"air_date": "1992-09-29",
"episode_number": 19,
"episode_type": "standard",
"id": 146396,
"name": "Fear of Victory",
"order": 23,
"overview": "The Scarecrow uses a fear chemical triggered by adrenaline on Gotham's greatest athletes, then bets against them to reap the winnings.",
"production_code": "524",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/ry0XVegXzFX0oVILRXdqfeDe1M8.jpg",
"vote_average": 7.5,
"vote_count": 16
},
{
"air_date": "1992-09-21",
"episode_number": 14,
"episode_type": "standard",
"id": 146403,
"name": "The Clock King",
"order": 24,
"overview": "When a maniacally punctilious man faces financial ruin because of attorney Hamilton Hill, he transforms into the devious Clock King and swears revenge on Hill, now the mayor of Gotham.",
"production_code": "525",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/8XhauqaXku5CY5czFcyM1MoXbkl.jpg",
"vote_average": 7.2,
"vote_count": 15
},
{
"air_date": "1992-09-17",
"episode_number": 12,
"episode_type": "standard",
"id": 146399,
"name": "Appointment in Crime Alley",
"order": 25,
"overview": "Batman's friend, Dr. Leslie Thompkins, is taken prisoner by a ruthless land developer after she uncovers his devious plans.",
"production_code": "526",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/a6GXhBw73sOcOjaX0xFCGr26lez.jpg",
"vote_average": 7.4,
"vote_count": 18
},
{
"air_date": "1992-10-12",
"episode_number": 24,
"episode_type": "standard",
"id": 987950,
"name": "Mad as a Hatter",
"order": 26,
"overview": "The Mad Hatter puts the city of Gotham under his control in an attempt to impress a woman, Alice, with whom he is in love.",
"production_code": "027",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/mlih4cXUmpWvpfLkPsX6hI4o1UG.jpg",
"vote_average": 7.6,
"vote_count": 16
},
{
"air_date": "1992-11-03",
"episode_number": 31,
"episode_type": "standard",
"id": 986195,
"name": "Dreams in Darkness",
"order": 27,
"overview": "Batman must thwart the Scarecrow's plan to poison Gotham's water supply with a chemical that induces hallucinations.",
"production_code": "28",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/vtMTbHOkw3k2nMOoN1WVEmjz07A.jpg",
"vote_average": 7.7,
"vote_count": 11
}
],
"id": "5acfef66c3a36842ca0039d1",
"locked": true,
"name": "Season 1",
"order": 1
},
{
"episodes": [
{
"air_date": "1992-09-23",
"episode_number": 16,
"episode_type": "standard",
"id": 1029183,
"name": "Eternal Youth",
"order": 0,
"overview": "Alfred and his friend, Maggie Paige, visit a health spa that is actually run by the nefarious Poison Ivy.",
"production_code": "529",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/b6U7tca4gi2RCBKGRJzKlj9ui9L.jpg",
"vote_average": 7.2,
"vote_count": 18
},
{
"air_date": "1992-10-19",
"episode_number": 26,
"episode_type": "standard",
"id": 1029190,
"name": "Perchance to Dream",
"order": 1,
"overview": "Bruce Wayne wakes up to find that his parents are not dead, he is not Batman, and he's engaged to Selina Kyle!",
"production_code": "530",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/8s4BK31LckEIbiVkAumsorQ5yKF.jpg",
"vote_average": 8.4,
"vote_count": 17
},
{
"air_date": "1992-10-14",
"episode_number": 25,
"episode_type": "standard",
"id": 1029188,
"name": "The Cape and Cowl Conspiracy",
"order": 2,
"overview": "Batman investigates a theft of bearer bonds intended for the starving people of a poor country.",
"production_code": "531",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/g8O47CqVP4HjqvUjET3PeVA4mXo.jpg",
"vote_average": 7.6,
"vote_count": 16
},
{
"air_date": "1993-02-07",
"episode_number": 51,
"episode_type": "standard",
"id": 1029154,
"name": "Robin's Reckoning (1)",
"order": 3,
"overview": "After learning the name of an extortion ringleader, Batman mysteriously refuses to let Robin continue the investigation with him.",
"production_code": "132",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/jJuakkPkZWZRkJXbEpLYECEqYjM.jpg",
"vote_average": 8.2,
"vote_count": 12
},
{
"air_date": "1993-02-14",
"episode_number": 53,
"episode_type": "standard",
"id": 1029151,
"name": "Robin's Reckoning (2)",
"order": 4,
"overview": "Despite Batman's orders not to, Robin pursues Tony Zucco, the criminal who was responsible for the death of Robin's parents.",
"production_code": "133",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/3WooXtlmxJva6ejVyZZRUAwq1J2.jpg",
"vote_average": 8.2,
"vote_count": 12
},
{
"air_date": "1993-01-10",
"episode_number": 46,
"episode_type": "standard",
"id": 1029159,
"name": "The Laughing Fish",
"order": 5,
"overview": "The Joker becomes enraged when the Gotham copyright office rejects his demand for a copyright for his grinning Joker fish.",
"production_code": "33",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/4BIg29a5clj1CbEsezb6ExHmcnw.jpg",
"vote_average": 7.6,
"vote_count": 15
},
{
"air_date": "1992-10-26",
"episode_number": 28,
"episode_type": "standard",
"id": 1029174,
"name": "Night of the Ninja",
"order": 6,
"overview": "When Wayne Enterprises is robbed by a mysterious figure known as the Ninja, Batman and Robin discover that the Ninja is an old nemesis of Bruce Wayne.",
"production_code": "034",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/eKWni6z9aiWyHAurSBOUB8iZxSM.jpg",
"vote_average": 7.2,
"vote_count": 14
},
{
"air_date": "1992-11-05",
"episode_number": 33,
"episode_type": "standard",
"id": 1029171,
"name": "Cat Scratch Fever",
"order": 7,
"overview": "Selina Kyle uncovers a plot to infect stray animals with a deadly disease that will be transmitted to the human population.",
"production_code": "035",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/3EhvhkJA5Byy24DGp8kWE4QrPUp.jpg",
"vote_average": 7.1,
"vote_count": 12
},
{
"air_date": "1992-10-29",
"episode_number": 29,
"episode_type": "standard",
"id": 1029173,
"name": "The Strange Secret of Bruce Wayne",
"order": 8,
"overview": "Dr. Hugo Strange's invention, a machine that reads people's thoughts, leads him to discover that Bruce is Batman.",
"production_code": "036",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/415F8q7mATKI9HdMz1Dim9cpx7F.jpg",
"vote_average": 7.6,
"vote_count": 14
},
{
"air_date": "1992-11-16",
"episode_number": 39,
"episode_type": "standard",
"id": 1029166,
"name": "Heart of Steel (1)",
"order": 9,
"overview": "Karl Rossum, owner of Cyberton Labs has been replacing important authority figures with robot look-alikes. Batman invites a young woman to dinner, not knowing that she is a robot as well.",
"production_code": "138",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/aPwGD6FDiMDlgIKY6hMhZMymjlC.jpg",
"vote_average": 7.3,
"vote_count": 12
},
{
"air_date": "1992-11-17",
"episode_number": 40,
"episode_type": "standard",
"id": 1029165,
"name": "Heart of Steel (2)",
"order": 10,
"overview": "Batman escapes from being attacked by his own Batcomputer, which was sabatoged by HARDAC. He now seeks to get back Gordon, Hill and Bullock, who have all been replaced with robots.",
"production_code": "139",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/1p1tG4ppJni1N2db5cA2G8ac8Wd.jpg",
"vote_average": 7.5,
"vote_count": 12
},
{
"air_date": "1992-11-18",
"episode_number": 41,
"episode_type": "standard",
"id": 1029164,
"name": "If You're So Smart, Why Aren't You Rich?",
"order": 11,
"overview": "When Edward Nygma's greedy boss unjustly fires genius him, Nygma seeks revenge in a new guise--as the Riddler!",
"production_code": "140",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/rxu01SwiheXTd3aw7WoRDR8ql8Q.jpg",
"vote_average": 7.6,
"vote_count": 11
},
{
"air_date": "1992-11-19",
"episode_number": 42,
"episode_type": "standard",
"id": 1029163,
"name": "Joker's Wild",
"order": 12,
"overview": "When a billionaire builds a casino called the Joker's Wild, the Joker breaks out of Arkham Asylum to destroy it.",
"production_code": "141",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/4cQhRSRR3MjR51nrvOI7g1yTnAp.jpg",
"vote_average": 7.2,
"vote_count": 12
},
{
"air_date": "1992-10-30",
"episode_number": 30,
"episode_type": "standard",
"id": 1029172,
"name": "Tyger, Tyger",
"order": 13,
"overview": "When a genetic engineer produces a man-cat hybrid, he kidnaps Selina Kyle to provide his creation with a mate.",
"production_code": "041",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/qp6SQzOK8I0LsGRbX7aDMDxwE7o.jpg",
"vote_average": 6.5,
"vote_count": 13
},
{
"air_date": "1992-11-11",
"episode_number": 36,
"episode_type": "standard",
"id": 1029168,
"name": "Moon of the Wolf",
"order": 14,
"overview": "Professor Milo tries to use an old friend of Bruce Wayne's, Anthony Romulus, to destroy him after Milo injects Romulus with a serum that changes him into a wolf.",
"production_code": "042",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/mKmzw4EqjBXmGGuofpmB8b4qeDL.jpg",
"vote_average": 6.3,
"vote_count": 12
},
{
"air_date": "1993-02-23",
"episode_number": 55,
"episode_type": "standard",
"id": 1029148,
"name": "Day of the Samurai",
"order": 15,
"overview": "Bruce Wayne and Alfred travel to Japan to help Bruce's old martial arts teacher, Sensei Yoru.",
"production_code": "043",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/hGgOwuzYphNft7JfpUcL6OGuQ5.jpg",
"vote_average": 7.7,
"vote_count": 12
},
{
"air_date": "1992-11-12",
"episode_number": 37,
"episode_type": "standard",
"id": 1029167,
"name": "Terror in the Sky",
"order": 16,
"overview": "When a man-sized bat ransacks Gotham harbor, Batman suspects that Dr. Kirk Langstrom is drinking his Man-Bat formula again.",
"production_code": "045",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/rdi5q5ADBwTNhFrY4eZ8qrCYl9i.jpg",
"vote_average": 7.1,
"vote_count": 12
},
{
"air_date": "1992-11-10",
"episode_number": 35,
"episode_type": "standard",
"id": 1029169,
"name": "Almost Got 'Im",
"order": 17,
"overview": "While hiding from the police, Batman's deadliest enemies exchange stories about their mutual nemesis--Batman.",
"production_code": "146",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/zDZYHu7yq94YXQdBHR81LysGBB.jpg",
"vote_average": 7.9,
"vote_count": 13
},
{
"air_date": "1993-02-08",
"episode_number": 52,
"episode_type": "standard",
"id": 1029152,
"name": "Birds of a Feather",
"order": 18,
"overview": "Veronica Vreeland, a socialite desperate to create a novel party, makes the mistake of inviting the Penguin as her guest of honor.",
"production_code": "047",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/pPkgIDmnPfCEqckBOx4e73wuw2P.jpg",
"vote_average": 7.6,
"vote_count": 13
},
{
"air_date": "1992-11-24",
"episode_number": 45,
"episode_type": "standard",
"id": 1029160,
"name": "What Is Reality?",
"order": 19,
"overview": "To prove that he has a superior mind, the Riddler lures Batman into a contest inside a virtual reality computer game.",
"production_code": "148",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/jH45yO25P0g6IJeg3QSqXonwPfj.jpg",
"vote_average": 7.2,
"vote_count": 12
},
{
"air_date": "1992-11-09",
"episode_number": 34,
"episode_type": "standard",
"id": 1029170,
"name": "I Am the Night",
"order": 20,
"overview": "On the anniversary of the death of Bruce's parents, Batman expresses doubts about whether or not he should continue his one-man war against crime.",
"production_code": "049",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/6ftZA2aFr401uAdTTAsWRHhqZ3b.jpg",
"vote_average": 8,
"vote_count": 12
},
{
"air_date": "1992-11-23",
"episode_number": 44,
"episode_type": "standard",
"id": 1029161,
"name": "Off Balance",
"order": 21,
"overview": "Batman investigates a notorious global crime cartel, The Society of Shadows, which has begun to operate in Gotham City.",
"production_code": "050",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/3q2CL2rNPGxKlFUnJ28ZiqH48gc.jpg",
"vote_average": 7.3,
"vote_count": 12
},
{
"air_date": "1993-02-01",
"episode_number": 49,
"episode_type": "standard",
"id": 1029156,
"name": "The Man Who Killed Batman",
"order": 22,
"overview": "Sidney Debris, a small-time mobster, earns the hatred of all of Batman's enemies when he claims to have accidentally killed Batman during a brawl.",
"production_code": "151",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/uTwFqAFsN77fgdAwOmtukvTnH1X.jpg",
"vote_average": 7.8,
"vote_count": 12
},
{
"air_date": "1993-09-15",
"episode_number": 3,
"episode_type": "standard",
"id": 986222,
"name": "Mudslide",
"order": 23,
"overview": "When Clayface's clay-like body begins to disintegrate, he is forced to steal to pay for the expensive ingredients of a possible remedy.",
"production_code": "052",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/kCRvomd7ZCIf8zBbcBAvPwvGwEM.jpg",
"vote_average": 7.7,
"vote_count": 13
},
{
"air_date": "1993-09-17",
"episode_number": 5,
"episode_type": "standard",
"id": 986223,
"name": "Paging the Crime Doctor",
"order": 24,
"overview": "Crime boss Rupert Thorne forces his older brother, a doctor, to perform delicate surgery on Rupert--and kidnaps Dr. Leslie Thompkins to assist.",
"production_code": "053",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/ovbpLylXI5ZwFqIi3CNC40IVI8T.jpg",
"vote_average": 7.4,
"vote_count": 13
},
{
"air_date": "1993-02-02",
"episode_number": 50,
"episode_type": "standard",
"id": 1029155,
"name": "Zatanna",
"order": 25,
"overview": "When glamorous female magician Zatanna is framed for a robbery during her act, Batman comes to her defense.",
"production_code": "054",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/znG5EtvUyLMpysTlObwd66dWQGW.jpg",
"vote_average": 7.1,
"vote_count": 14
},
{
"air_date": "1993-01-24",
"episode_number": 48,
"episode_type": "standard",
"id": 1029157,
"name": "The Mechanic",
"order": 26,
"overview": "While engaged in a high-speed chase, the Penguin's gang escapes and the Batmobile is virtually demolished.",
"production_code": "055",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/2YSbz6UfDosVZxP5rplPWLACK3H.jpg",
"vote_average": 7.3,
"vote_count": 12
},
{
"air_date": "1993-01-18",
"episode_number": 47,
"episode_type": "standard",
"id": 1029158,
"name": "Harley and Ivy",
"order": 27,
"overview": "Harley Quinn has broken off with the Joker and teams up with Poison Ivy. Together they wreck havoc on Gotham and now Joker wants a piece of the action.",
"production_code": "156",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/uSB2zgmcCYDgrKnNsGBBtS1zSTu.jpg",
"vote_average": 7.4,
"vote_count": 14
}
],
"id": "5acff4649251417b6c003b5d",
"locked": true,
"name": "Season 2",
"order": 2
},
{
"episodes": [
{
"air_date": "1993-09-13",
"episode_number": 1,
"episode_type": "standard",
"id": 1029137,
"name": "Shadow of the Bat (1)",
"order": 0,
"overview": "Commissioner Gordon is rumored to be taking bribes from Rupert Thorne. His daughter Barbara sets out to prove that he's innocent.",
"production_code": "157",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/9JF2ULFBbFYtgvxKR9lKRvIp2rL.jpg",
"vote_average": 7.5,
"vote_count": 13
},
{
"air_date": "1993-09-14",
"episode_number": 2,
"episode_type": "standard",
"id": 1029135,
"name": "Shadow of the Bat (2)",
"order": 1,
"overview": "Robin, who discovers that Gil Mason is in league with a powerful crime boss, encounters Batgirl as she tries to clear her father's name.",
"production_code": "158",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/lCaipZkndnSNNOeaOh88GNqHfOJ.jpg",
"vote_average": 7.4,
"vote_count": 13
},
{
"air_date": "1993-02-22",
"episode_number": 54,
"episode_type": "standard",
"id": 1029149,
"name": "Blind as a Bat",
"order": 2,
"overview": "Bruce Wayne is temporarily blinded when the Penguin steals a new police helicopter with weaponry developed by WayneTech.",
"production_code": "1",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/mgrt32lWKtcaniy6uCwECczzmC.jpg",
"vote_average": 7.3,
"vote_count": 12
},
{
"air_date": "1993-05-03",
"episode_number": 57,
"episode_type": "standard",
"id": 1029147,
"name": "The Demon's Quest (1)",
"order": 3,
"overview": "When Robin is mysteriously abducted, Batman's search leads him to meet Ra's Al Ghul, leader of The Society of Shadows, whose daughter, Talia, has also been kidnapped.",
"production_code": "160",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/9L8HRcwNfJOKTcgg1wG9eBHksoz.jpg",
"vote_average": 7.4,
"vote_count": 12
},
{
"air_date": "1993-05-04",
"episode_number": 58,
"episode_type": "standard",
"id": 1029146,
"name": "The Demon's Quest (2)",
"order": 4,
"overview": "Batman discovers Ra's Al Ghul's plan to flood Earth with chemicals and return it to a lush, green planet--which will destroy all life that now exists!",
"production_code": "161",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/ynzbbJfOJJ1smSXanh4sItkGUHp.jpg",
"vote_average": 7.4,
"vote_count": 12
},
{
"air_date": "1992-11-20",
"episode_number": 43,
"episode_type": "standard",
"id": 1029162,
"name": "His Silicon Soul",
"order": 5,
"overview": "A confused robot that believes he is Batman causes problems for the real Dark Knight.",
"production_code": "060",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/vukHsg4TMc7MrjAB1W5fzaJu1Ft.jpg",
"vote_average": 7.7,
"vote_count": 12
},
{
"air_date": "1993-05-24",
"episode_number": 60,
"episode_type": "finale",
"id": 1029144,
"name": "Fire from Olympus",
"order": 6,
"overview": "Believing he's the reincarnation of Zeus, a mad shipping magnate mounts a stolen electron cannon atop his penthouse to shoot 'lightning bolts' at the 'wicked mortals' below.",
"production_code": "163",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/bhXu5jBtANRcJCDyQo1mo4LEeun.jpg",
"vote_average": 6.6,
"vote_count": 13
},
{
"air_date": "1993-05-10",
"episode_number": 59,
"episode_type": "standard",
"id": 1029145,
"name": "Read My Lips",
"order": 7,
"overview": "Batman investigates a series of baffling crimes and discovers that the crime czar is a wooden dummy, manipulated by a mild-mannered man called the Ventriloquist.",
"production_code": "164",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/rCZiQpMiWFJFigxyIylQnOo19Aw.jpg",
"vote_average": 7.6,
"vote_count": 12
},
{
"air_date": "1993-09-16",
"episode_number": 4,
"episode_type": "standard",
"id": 1029134,
"name": "The Worry Men",
"order": 8,
"overview": "Wealthy socialite Veronica Vreeland returns from Central America bringing tiny handmade dolls for all her friends--but the dolls are controlled by the Mad Hatter!",
"production_code": "065",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/tw0YY4ncuFQe8mgpVlh2ySbX07t.jpg",
"vote_average": 7.3,
"vote_count": 14
},
{
"air_date": "1994-05-03",
"episode_number": 7,
"episode_type": "standard",
"id": 1029139,
"name": "Sideshow",
"order": 9,
"overview": "Killer Croc escapes when being transported to prison and hides out with a group of circus people.",
"production_code": "166",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/vCQn7W2elQoeR03urxIHnRBpNJj.jpg",
"vote_average": 7.6,
"vote_count": 12
},
{
"air_date": "1995-09-14",
"episode_number": 4,
"episode_type": "standard",
"id": 1044566,
"name": "A Bullet for Bullock",
"order": 10,
"overview": "Batman helps Detective Harvey Bullock who appears to be the target of someone's revenge.",
"production_code": "067",
"runtime": 22,
"season_number": 4,
"show_id": 2098,
"still_path": "/edVTckE6h0Yvzuazm006xpiAoJP.jpg",
"vote_average": 7.5,
"vote_count": 11
},
{
"air_date": "1994-05-16",
"episode_number": 9,
"episode_type": "standard",
"id": 1029141,
"name": "Trial",
"order": 11,
"overview": "All of Batman's enemies team together to put Batman on trial and send him to Arkham Asylum.",
"production_code": "168",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/vCzZVPCymYa339h0ZqYHMRCMrUi.jpg",
"vote_average": 8.1,
"vote_count": 12
},
{
"air_date": "1994-05-09",
"episode_number": 8,
"episode_type": "standard",
"id": 1029140,
"name": "Avatar",
"order": 12,
"overview": "Ra's Al Ghul steals a sacred Egyptian scroll that Bruce Wayne donated to the Gotham museum.",
"production_code": "069",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/bn9O5a1G5kobOzOBW7SCY0A9uvs.jpg",
"vote_average": 7.1,
"vote_count": 12
},
{
"air_date": "1994-05-02",
"episode_number": 6,
"episode_type": "standard",
"id": 1029138,
"name": "House & Garden",
"order": 13,
"overview": "Poison Ivy appears to have stopped her crime spree when she marries a doctor with two sons to raise. However, crimes continue occurring in the Poison Ivy style, leaving Batman to question her innocence.",
"production_code": "170",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/yxSxPDdKaVmAGhb80s3W6LZPV43.jpg",
"vote_average": 7.8,
"vote_count": 13
},
{
"air_date": "1995-09-11",
"episode_number": 1,
"episode_type": "standard",
"id": 1044563,
"name": "The Terrible Trio",
"order": 14,
"overview": "Batman tracks three wealthy playboys who commit crimes out of boredom.",
"production_code": "071",
"runtime": 22,
"season_number": 4,
"show_id": 2098,
"still_path": "/pkTnMrFwzj2tBCcA7a63X2Iucj.jpg",
"vote_average": 6.7,
"vote_count": 12
},
{
"air_date": "1994-05-23",
"episode_number": 10,
"episode_type": "finale",
"id": 1029142,
"name": "Harlequinade",
"order": 15,
"overview": "Harley Quinn agrees to help Batman and Robin find the location of a stolen atomic bomb placed somewhere in Gotham by the Joker.",
"production_code": "172",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/21qXpiEoDXkkiPgCPx8Yjw7CU15.jpg",
"vote_average": 8.1,
"vote_count": 13
},
{
"air_date": "1994-10-08",
"episode_number": 5,
"episode_type": "standard",
"id": 1044557,
"name": "Time Out of Joint",
"order": 16,
"overview": "The Clock King plots against Mayor Hill after he steals an invention that allows him to travel at super speed.",
"production_code": "",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/uHk6Ks3RX4t0EbCRsFTTYPx4E87.jpg",
"vote_average": 7,
"vote_count": 11
},
{
"air_date": "1995-09-13",
"episode_number": 3,
"episode_type": "standard",
"id": 1044565,
"name": "Catwalk",
"order": 17,
"overview": "Catwoman's attempt to go straight runs into problems when she is enticed into one last job by the Ventriloquist.",
"production_code": "074",
"runtime": 22,
"season_number": 4,
"show_id": 2098,
"still_path": "/1ZCsUlzUD33h6cAEHE811QxxtyS.jpg",
"vote_average": 7.4,
"vote_count": 11
},
{
"air_date": "1994-09-10",
"episode_number": 1,
"episode_type": "standard",
"id": 1044553,
"name": "Bane",
"order": 18,
"overview": "Rupert Thorne hires the chemically-augmented assassin Bane to kill Batman.",
"production_code": "075",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/fFRwRNLj839I8ednBUtMgZFu4mI.jpg",
"vote_average": 7.5,
"vote_count": 12
},
{
"air_date": "1994-10-01",
"episode_number": 4,
"episode_type": "standard",
"id": 1044556,
"name": "Baby-Doll",
"order": 19,
"overview": "Baby-Doll, a former child star, pours out her frustrations on her TV family by kidnapping them and holding them hostage.",
"production_code": "176",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/34rU2BIRbj5qbmvdNkdnV0nKMsS.jpg",
"vote_average": 7.4,
"vote_count": 13
},
{
"air_date": "1995-09-15",
"episode_number": 5,
"episode_type": "finale",
"id": 1044567,
"name": "The Lion and the Unicorn",
"order": 20,
"overview": "Alfred, a former British spy, is called into duty and becomes of the target of the Red Claw.",
"production_code": "077",
"runtime": 22,
"season_number": 4,
"show_id": 2098,
"still_path": "/dar6GdynqqhqvzX8d0cj61RVl4X.jpg",
"vote_average": 6.8,
"vote_count": 11
},
{
"air_date": "1995-09-12",
"episode_number": 2,
"episode_type": "standard",
"id": 1044564,
"name": "Showdown",
"order": 21,
"overview": "Batman and Robin learn about the exploits of Jonah Hex an Old West crimefighter who once dealt with the immortal Ra's Al Ghul.",
"production_code": "078",
"runtime": 22,
"season_number": 4,
"show_id": 2098,
"still_path": "/sj13brwQfKpCDfI3KM6TZVTqoGN.jpg",
"vote_average": 6.8,
"vote_count": 11
},
{
"air_date": "1994-09-24",
"episode_number": 3,
"episode_type": "standard",
"id": 1044555,
"name": "Riddler's Reform",
"order": 22,
"overview": "The Riddler appears to have gone straight when he develops a new and successful puzzle based toy.",
"production_code": "079",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/t20C9Eq4SXaLJdrWXpOa4lYAY1n.jpg",
"vote_average": 7.2,
"vote_count": 12
},
{
"air_date": "1994-09-17",
"episode_number": 2,
"episode_type": "standard",
"id": 1044554,
"name": "Second Chance",
"order": 23,
"overview": "Batman and Robin are puzzled by the sudden kidnapping of Twoface, who was on his way to have his face fixed.",
"production_code": "080",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/dMB3jCWYT6pZXkgaWeStQiA8dkp.jpg",
"vote_average": 7.7,
"vote_count": 12
},
{
"air_date": "1994-10-15",
"episode_number": 6,
"episode_type": "standard",
"id": 1044558,
"name": "Harley's Holiday",
"order": 24,
"overview": "Harley gets herself into a whole mess of trouble after she steals Bruce Wayne's car and kidnaps his girlfriend.",
"production_code": "081",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/xGYNpA9DXkwuQy4jDtIBzNOA4Qj.jpg",
"vote_average": 7.9,
"vote_count": 13
},
{
"air_date": "1994-11-19",
"episode_number": 9,
"episode_type": "standard",
"id": 1044561,
"name": "Lock-Up",
"order": 25,
"overview": "Lyle Bolton Arkam's former chief of security becomes the vigilante Lock-up and kidnaps Commissioner Gordon and Mayor Hill seeing them as the cause of rampant crime in Gotham City.",
"production_code": "082",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/xHnTgRF69yRgV7y50qcg1dIy3I7.jpg",
"vote_average": 7.4,
"vote_count": 12
},
{
"air_date": "1994-11-05",
"episode_number": 7,
"episode_type": "standard",
"id": 1044559,
"name": "Make 'Em Laugh",
"order": 26,
"overview": "Batman and Robin investigate a string of crimes committed by a group of famous comedians brainwashed by the Joker.",
"production_code": "083",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/oDnRibTjEWPSMUR92wF1rnttv8h.jpg",
"vote_average": 7.3,
"vote_count": 12
},
{
"air_date": "1994-11-26",
"episode_number": 10,
"episode_type": "finale",
"id": 1044562,
"name": "Deep Freeze",
"order": 27,
"overview": "Aging billionaire Grant Walker breaks Mr. Freeze out of prison so he can use the scientist's knowledge to can gain immortality and cover the world in a new ice age.",
"production_code": "084",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/pSAHYvC4pye2ijiQoAW8KPOY4Kq.jpg",
"vote_average": 7.5,
"vote_count": 13
},
{
"air_date": "1994-11-12",
"episode_number": 8,
"episode_type": "standard",
"id": 1044560,
"name": "Batgirl Returns",
"order": 28,
"overview": "Batgirl and Catwoman team up to investigate the theft of a rare cat statue.",
"production_code": "085",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/7kXJKll2ALqiksPxRIoB5wU90dv.jpg",
"vote_average": 6.9,
"vote_count": 12
}
],
"id": "5ad0000b0e0a267498004def",
"locked": true,
"name": "Season 3",
"order": 3
}
],
"id": "5acfef37c3a36842e400333f",
"name": "DVD Order",
"network": null,
"type": 3
}TV Episode Groups
Details
This endpoint is used to get the details of a TV episode group.
GET
/
3
/
tv
/
episode_group
/
{tv_episode_group_id}
Details
curl --request GET \
--url 'https://api.themoviedb.org/3/tv/episode_group/{tv_episode_group_id}?%7B%7Bkey%7D%7D='import requests
url = "https://api.themoviedb.org/3/tv/episode_group/{tv_episode_group_id}?%7B%7Bkey%7D%7D="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/tv/episode_group/{tv_episode_group_id}?%7B%7Bkey%7D%7D=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.themoviedb.org/3/tv/episode_group/{tv_episode_group_id}?%7B%7Bkey%7D%7D=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.themoviedb.org/3/tv/episode_group/{tv_episode_group_id}?%7B%7Bkey%7D%7D="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.themoviedb.org/3/tv/episode_group/{tv_episode_group_id}?%7B%7Bkey%7D%7D=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/tv/episode_group/{tv_episode_group_id}?%7B%7Bkey%7D%7D=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"description": "This episode group reflects the order of the DVD releases.",
"episode_count": 85,
"group_count": 3,
"groups": [
{
"episodes": [
{
"air_date": "1992-09-06",
"episode_number": 2,
"episode_type": "standard",
"id": 146355,
"name": "On Leather Wings",
"order": 0,
"overview": "When a vicious bat creature known as Man-Bat, starts terrorizing Gotham City, everyone mistakenly thinks that Batman is the culprit. Batman must find out who the mysterious Man-Bat is and clear his own name.",
"production_code": "001",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/kTLD5SHb8O4oFTw9CffqPpIGnon.jpg",
"vote_average": 7.371,
"vote_count": 35
},
{
"air_date": "1992-11-13",
"episode_number": 38,
"episode_type": "standard",
"id": 987941,
"name": "Christmas with the Joker",
"order": 1,
"overview": "The Joker kidnaps three prominent citizens during Christmas and challenges Batman to find him before midnight.",
"production_code": "502",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/kaLJGHwzWFFXRAjmjQWtwNXwqyD.jpg",
"vote_average": 6.8,
"vote_count": 25
},
{
"air_date": "1992-09-15",
"episode_number": 10,
"episode_type": "standard",
"id": 146359,
"name": "Nothing to Fear",
"order": 2,
"overview": "A horrifying villain named Scarecrow spreads fear gas and wreaks havoc at Gotham State University.",
"production_code": "503",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/gnP1W7zwqMJaQFQavr4Xa5VaYtd.jpg",
"vote_average": 7.704,
"vote_count": 27
},
{
"air_date": "1992-09-22",
"episode_number": 15,
"episode_type": "standard",
"id": 146390,
"name": "The Last Laugh",
"order": 3,
"overview": "The Joker employs a lethal mind-altering laughing gas to transform the citizens of Gotham into total fools.",
"production_code": "504",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/2KmOTW9jGmgcUxS9wtQN0Ga1JMU.jpg",
"vote_average": 7.444,
"vote_count": 27
},
{
"air_date": "1992-09-14",
"episode_number": 9,
"episode_type": "standard",
"id": 146446,
"name": "Pretty Poison",
"order": 4,
"overview": "When District Attorney Harvey Dent is poisoned after a dinner date, Batman makes the horrifying discovery that his date was Poison Ivy, a plant-obsessed villainess.",
"production_code": "505",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/9dPYAOyvyVmSxnC5hAGOl5vXwpW.jpg",
"vote_average": 7.462,
"vote_count": 26
},
{
"air_date": "1992-10-21",
"episode_number": 27,
"episode_type": "standard",
"id": 986191,
"name": "The Underdwellers",
"order": 5,
"overview": "Batman discovers a gang of forgotten runaways living deep within the Gotham sewer system.",
"production_code": "506",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/tRn0HVWp9twkBktbuoV1XoqTPzF.jpg",
"vote_average": 7.1,
"vote_count": 17
},
{
"air_date": "1992-09-18",
"episode_number": 13,
"episode_type": "standard",
"id": 146391,
"name": "P.O.V.",
"order": 6,
"overview": "Bullock's account of a botched sting operation is so at odds with the other officers' testimony that the police investigator suspends everyone involved.",
"production_code": "507",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/yznDzUOs9fhwnmgxemCYeC6cOv9.jpg",
"vote_average": 7.4,
"vote_count": 22
},
{
"air_date": "1992-10-08",
"episode_number": 23,
"episode_type": "standard",
"id": 987942,
"name": "The Forgotten",
"order": 7,
"overview": "When men begin disappearing at a bowery, Bruce Wayne decides to go undercover as a worker. He loses his memory after he is attacked, kidnapped and forced to work in a mining camp.",
"production_code": "508",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/oZ6gdMHfBTAXYbaKYMeuvomEue8.jpg",
"vote_average": 7.2,
"vote_count": 20
},
{
"air_date": "1992-09-16",
"episode_number": 11,
"episode_type": "standard",
"id": 146374,
"name": "Be a Clown",
"order": 8,
"overview": "The Joker infiltrates the birthday party of Mayor Hill's son in order to plant a bomb.",
"production_code": "509",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/kojigDu7kOWkgMoJUaIdT1SUZX6.jpg",
"vote_average": 7.1,
"vote_count": 23
},
{
"air_date": "1992-09-25",
"episode_number": 17,
"episode_type": "standard",
"id": 146375,
"name": "Two-Face (1)",
"order": 9,
"overview": "District Attorney Harvey Dent hides a deep dark secret--he has a second personality, Big Bad Harv, a tough gangster.",
"production_code": "510",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/to1wCUQzENjS7UashGyXi30B7JV.jpg",
"vote_average": 8.3,
"vote_count": 27
},
{
"air_date": "1992-09-28",
"episode_number": 18,
"episode_type": "standard",
"id": 986192,
"name": "Two-Face (2)",
"order": 10,
"overview": "Two-Face, the former Harvey Dent, begins an aggressive campaign against his hated rival, Rupert Thorne.",
"production_code": "517",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/mnTUBXCE37mwBHGv0guHVMj8wAf.jpg",
"vote_average": 8.3,
"vote_count": 26
},
{
"air_date": "1992-09-10",
"episode_number": 6,
"episode_type": "standard",
"id": 146377,
"name": "It's Never Too Late",
"order": 11,
"overview": "An aging Mob boss learns his drug dealings have contributed to his son's drug addiction.",
"production_code": "511",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/aWdYhXYHf6AN1JeIFSlO3Z2Pnhj.jpg",
"vote_average": 7.7,
"vote_count": 23
},
{
"air_date": "1992-09-30",
"episode_number": 20,
"episode_type": "standard",
"id": 146378,
"name": "I've Got Batman in My Basement",
"order": 12,
"overview": "After the Penguin sprays Batman with nerve gas, a 12-year-old boy rescues the unconscious hero and hides him in his basement.",
"production_code": "512",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/i3Wkp8PCLQxdFG4bk1QQ7At7jwo.jpg",
"vote_average": 6.8,
"vote_count": 19
},
{
"air_date": "1992-09-07",
"episode_number": 3,
"episode_type": "standard",
"id": 146379,
"name": "Heart of Ice",
"order": 13,
"overview": "Brilliant cryogenics expert Dr. Victor Fries is transformed into Mr. Freeze, a vengeful creature who can only survive in subzero temperatures.",
"production_code": "514",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/56gAPNLX5MTUcOy4QAfNwGUCBCF.jpg",
"vote_average": 8.333,
"vote_count": 27
},
{
"air_date": "1992-09-05",
"episode_number": 1,
"episode_type": "standard",
"id": 146380,
"name": "The Cat and the Claw (1)",
"order": 14,
"overview": "Catwoman steals a necklace to finance the purchase of land for a mountain lion reserve, but is stopped by a group of terrorists.",
"production_code": "513",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/iDkkb25Qb4wUAef42oxLaVFysp2.jpg",
"vote_average": 7.52,
"vote_count": 25
},
{
"air_date": "1992-09-12",
"episode_number": 8,
"episode_type": "standard",
"id": 146398,
"name": "The Cat and the Claw (2)",
"order": 15,
"overview": "When Catwoman infiltrates the underground headquarters of the terrorists, both she and Batman are captured and left to die as victims of a viral plague.",
"production_code": "516",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/8t9rNPZ9JM8aUkleCd8ygKM0pUP.jpg",
"vote_average": 7.1,
"vote_count": 19
},
{
"air_date": "1993-02-24",
"episode_number": 56,
"episode_type": "standard",
"id": 987943,
"name": "See No Evil",
"order": 16,
"overview": "After a fortune disappears from a gem exposition, Batman investigates. He discovers that the crime may have been committed by an invisible man, an ex-con named Lloyd Ventris.",
"production_code": "515",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/a5PKPr8LnEt4h76AB8ezPVUEobk.jpg",
"vote_average": 7.8,
"vote_count": 12
},
{
"air_date": "1992-11-04",
"episode_number": 32,
"episode_type": "standard",
"id": 987944,
"name": "Beware the Gray Ghost",
"order": 17,
"overview": "Batman connects recent bombings in Gotham to an episode of an old television series featuring his favorite boyhood hero, the 'Gray Ghost.'",
"production_code": "518",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/nSlGbTrDDP0bJORpC8KHXbbkTZG.jpg",
"vote_average": 8.2,
"vote_count": 15
},
{
"air_date": "1992-10-06",
"episode_number": 22,
"episode_type": "standard",
"id": 986193,
"name": "Prophecy of Doom",
"order": 18,
"overview": "Bruce begins to worry when all of his wealthy friends join the same Brotherhood group run by Nostromos, a so-called psychic.",
"production_code": "519",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/jiZjlFVxw5aK6G1hzw8m1XStkcs.jpg",
"vote_average": 6.8,
"vote_count": 16
},
{
"air_date": "1992-09-08",
"episode_number": 4,
"episode_type": "standard",
"id": 987946,
"name": "Feat of Clay (1)",
"order": 19,
"overview": "A popular actor renowned for his ability to play any part has a terrible secret--he's addicted to a strange chemical formula that enables him to alter his facial features without makeup.",
"production_code": "520",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/qH5FgSSPT6SL43Vuhfsh1FxIKR.jpg",
"vote_average": 7.8,
"vote_count": 20
},
{
"air_date": "1992-09-09",
"episode_number": 5,
"episode_type": "standard",
"id": 146392,
"name": "Feat of Clay (2)",
"order": 20,
"overview": "Clayface learns that the man responsible for his disfigurement is to appear on TV, promoting a skin conditioner containing the same chemical that deformed him.",
"production_code": "521",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/w4HpRMyiQhXuGrIuAokdDtpb9yd.jpg",
"vote_average": 8.05,
"vote_count": 20
},
{
"air_date": "1992-09-11",
"episode_number": 7,
"episode_type": "standard",
"id": 987948,
"name": "Joker's Favor",
"order": 21,
"overview": "When a timid accountant accidentally runs afoul of the Joker, he promises the Joker anything if the villain will only let him go.",
"production_code": "522",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/nPZoEfwnR9FwLwiZ7mau9nC3nzx.jpg",
"vote_average": 7.6,
"vote_count": 19
},
{
"air_date": "1992-10-05",
"episode_number": 21,
"episode_type": "standard",
"id": 987949,
"name": "Vendetta",
"order": 22,
"overview": "Batman suspects that an imprisoned Detective Bullock may be innocent after he is arrested for murder. The real murderer turns out to be Killer Croc, who framed Bullock to get revenge.",
"production_code": "523",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/dmNy79DXWl8eDyQg3cJ6snrIy1M.jpg",
"vote_average": 7.5,
"vote_count": 15
},
{
"air_date": "1992-09-29",
"episode_number": 19,
"episode_type": "standard",
"id": 146396,
"name": "Fear of Victory",
"order": 23,
"overview": "The Scarecrow uses a fear chemical triggered by adrenaline on Gotham's greatest athletes, then bets against them to reap the winnings.",
"production_code": "524",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/ry0XVegXzFX0oVILRXdqfeDe1M8.jpg",
"vote_average": 7.5,
"vote_count": 16
},
{
"air_date": "1992-09-21",
"episode_number": 14,
"episode_type": "standard",
"id": 146403,
"name": "The Clock King",
"order": 24,
"overview": "When a maniacally punctilious man faces financial ruin because of attorney Hamilton Hill, he transforms into the devious Clock King and swears revenge on Hill, now the mayor of Gotham.",
"production_code": "525",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/8XhauqaXku5CY5czFcyM1MoXbkl.jpg",
"vote_average": 7.2,
"vote_count": 15
},
{
"air_date": "1992-09-17",
"episode_number": 12,
"episode_type": "standard",
"id": 146399,
"name": "Appointment in Crime Alley",
"order": 25,
"overview": "Batman's friend, Dr. Leslie Thompkins, is taken prisoner by a ruthless land developer after she uncovers his devious plans.",
"production_code": "526",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/a6GXhBw73sOcOjaX0xFCGr26lez.jpg",
"vote_average": 7.4,
"vote_count": 18
},
{
"air_date": "1992-10-12",
"episode_number": 24,
"episode_type": "standard",
"id": 987950,
"name": "Mad as a Hatter",
"order": 26,
"overview": "The Mad Hatter puts the city of Gotham under his control in an attempt to impress a woman, Alice, with whom he is in love.",
"production_code": "027",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/mlih4cXUmpWvpfLkPsX6hI4o1UG.jpg",
"vote_average": 7.6,
"vote_count": 16
},
{
"air_date": "1992-11-03",
"episode_number": 31,
"episode_type": "standard",
"id": 986195,
"name": "Dreams in Darkness",
"order": 27,
"overview": "Batman must thwart the Scarecrow's plan to poison Gotham's water supply with a chemical that induces hallucinations.",
"production_code": "28",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/vtMTbHOkw3k2nMOoN1WVEmjz07A.jpg",
"vote_average": 7.7,
"vote_count": 11
}
],
"id": "5acfef66c3a36842ca0039d1",
"locked": true,
"name": "Season 1",
"order": 1
},
{
"episodes": [
{
"air_date": "1992-09-23",
"episode_number": 16,
"episode_type": "standard",
"id": 1029183,
"name": "Eternal Youth",
"order": 0,
"overview": "Alfred and his friend, Maggie Paige, visit a health spa that is actually run by the nefarious Poison Ivy.",
"production_code": "529",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/b6U7tca4gi2RCBKGRJzKlj9ui9L.jpg",
"vote_average": 7.2,
"vote_count": 18
},
{
"air_date": "1992-10-19",
"episode_number": 26,
"episode_type": "standard",
"id": 1029190,
"name": "Perchance to Dream",
"order": 1,
"overview": "Bruce Wayne wakes up to find that his parents are not dead, he is not Batman, and he's engaged to Selina Kyle!",
"production_code": "530",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/8s4BK31LckEIbiVkAumsorQ5yKF.jpg",
"vote_average": 8.4,
"vote_count": 17
},
{
"air_date": "1992-10-14",
"episode_number": 25,
"episode_type": "standard",
"id": 1029188,
"name": "The Cape and Cowl Conspiracy",
"order": 2,
"overview": "Batman investigates a theft of bearer bonds intended for the starving people of a poor country.",
"production_code": "531",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/g8O47CqVP4HjqvUjET3PeVA4mXo.jpg",
"vote_average": 7.6,
"vote_count": 16
},
{
"air_date": "1993-02-07",
"episode_number": 51,
"episode_type": "standard",
"id": 1029154,
"name": "Robin's Reckoning (1)",
"order": 3,
"overview": "After learning the name of an extortion ringleader, Batman mysteriously refuses to let Robin continue the investigation with him.",
"production_code": "132",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/jJuakkPkZWZRkJXbEpLYECEqYjM.jpg",
"vote_average": 8.2,
"vote_count": 12
},
{
"air_date": "1993-02-14",
"episode_number": 53,
"episode_type": "standard",
"id": 1029151,
"name": "Robin's Reckoning (2)",
"order": 4,
"overview": "Despite Batman's orders not to, Robin pursues Tony Zucco, the criminal who was responsible for the death of Robin's parents.",
"production_code": "133",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/3WooXtlmxJva6ejVyZZRUAwq1J2.jpg",
"vote_average": 8.2,
"vote_count": 12
},
{
"air_date": "1993-01-10",
"episode_number": 46,
"episode_type": "standard",
"id": 1029159,
"name": "The Laughing Fish",
"order": 5,
"overview": "The Joker becomes enraged when the Gotham copyright office rejects his demand for a copyright for his grinning Joker fish.",
"production_code": "33",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/4BIg29a5clj1CbEsezb6ExHmcnw.jpg",
"vote_average": 7.6,
"vote_count": 15
},
{
"air_date": "1992-10-26",
"episode_number": 28,
"episode_type": "standard",
"id": 1029174,
"name": "Night of the Ninja",
"order": 6,
"overview": "When Wayne Enterprises is robbed by a mysterious figure known as the Ninja, Batman and Robin discover that the Ninja is an old nemesis of Bruce Wayne.",
"production_code": "034",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/eKWni6z9aiWyHAurSBOUB8iZxSM.jpg",
"vote_average": 7.2,
"vote_count": 14
},
{
"air_date": "1992-11-05",
"episode_number": 33,
"episode_type": "standard",
"id": 1029171,
"name": "Cat Scratch Fever",
"order": 7,
"overview": "Selina Kyle uncovers a plot to infect stray animals with a deadly disease that will be transmitted to the human population.",
"production_code": "035",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/3EhvhkJA5Byy24DGp8kWE4QrPUp.jpg",
"vote_average": 7.1,
"vote_count": 12
},
{
"air_date": "1992-10-29",
"episode_number": 29,
"episode_type": "standard",
"id": 1029173,
"name": "The Strange Secret of Bruce Wayne",
"order": 8,
"overview": "Dr. Hugo Strange's invention, a machine that reads people's thoughts, leads him to discover that Bruce is Batman.",
"production_code": "036",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/415F8q7mATKI9HdMz1Dim9cpx7F.jpg",
"vote_average": 7.6,
"vote_count": 14
},
{
"air_date": "1992-11-16",
"episode_number": 39,
"episode_type": "standard",
"id": 1029166,
"name": "Heart of Steel (1)",
"order": 9,
"overview": "Karl Rossum, owner of Cyberton Labs has been replacing important authority figures with robot look-alikes. Batman invites a young woman to dinner, not knowing that she is a robot as well.",
"production_code": "138",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/aPwGD6FDiMDlgIKY6hMhZMymjlC.jpg",
"vote_average": 7.3,
"vote_count": 12
},
{
"air_date": "1992-11-17",
"episode_number": 40,
"episode_type": "standard",
"id": 1029165,
"name": "Heart of Steel (2)",
"order": 10,
"overview": "Batman escapes from being attacked by his own Batcomputer, which was sabatoged by HARDAC. He now seeks to get back Gordon, Hill and Bullock, who have all been replaced with robots.",
"production_code": "139",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/1p1tG4ppJni1N2db5cA2G8ac8Wd.jpg",
"vote_average": 7.5,
"vote_count": 12
},
{
"air_date": "1992-11-18",
"episode_number": 41,
"episode_type": "standard",
"id": 1029164,
"name": "If You're So Smart, Why Aren't You Rich?",
"order": 11,
"overview": "When Edward Nygma's greedy boss unjustly fires genius him, Nygma seeks revenge in a new guise--as the Riddler!",
"production_code": "140",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/rxu01SwiheXTd3aw7WoRDR8ql8Q.jpg",
"vote_average": 7.6,
"vote_count": 11
},
{
"air_date": "1992-11-19",
"episode_number": 42,
"episode_type": "standard",
"id": 1029163,
"name": "Joker's Wild",
"order": 12,
"overview": "When a billionaire builds a casino called the Joker's Wild, the Joker breaks out of Arkham Asylum to destroy it.",
"production_code": "141",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/4cQhRSRR3MjR51nrvOI7g1yTnAp.jpg",
"vote_average": 7.2,
"vote_count": 12
},
{
"air_date": "1992-10-30",
"episode_number": 30,
"episode_type": "standard",
"id": 1029172,
"name": "Tyger, Tyger",
"order": 13,
"overview": "When a genetic engineer produces a man-cat hybrid, he kidnaps Selina Kyle to provide his creation with a mate.",
"production_code": "041",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/qp6SQzOK8I0LsGRbX7aDMDxwE7o.jpg",
"vote_average": 6.5,
"vote_count": 13
},
{
"air_date": "1992-11-11",
"episode_number": 36,
"episode_type": "standard",
"id": 1029168,
"name": "Moon of the Wolf",
"order": 14,
"overview": "Professor Milo tries to use an old friend of Bruce Wayne's, Anthony Romulus, to destroy him after Milo injects Romulus with a serum that changes him into a wolf.",
"production_code": "042",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/mKmzw4EqjBXmGGuofpmB8b4qeDL.jpg",
"vote_average": 6.3,
"vote_count": 12
},
{
"air_date": "1993-02-23",
"episode_number": 55,
"episode_type": "standard",
"id": 1029148,
"name": "Day of the Samurai",
"order": 15,
"overview": "Bruce Wayne and Alfred travel to Japan to help Bruce's old martial arts teacher, Sensei Yoru.",
"production_code": "043",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/hGgOwuzYphNft7JfpUcL6OGuQ5.jpg",
"vote_average": 7.7,
"vote_count": 12
},
{
"air_date": "1992-11-12",
"episode_number": 37,
"episode_type": "standard",
"id": 1029167,
"name": "Terror in the Sky",
"order": 16,
"overview": "When a man-sized bat ransacks Gotham harbor, Batman suspects that Dr. Kirk Langstrom is drinking his Man-Bat formula again.",
"production_code": "045",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/rdi5q5ADBwTNhFrY4eZ8qrCYl9i.jpg",
"vote_average": 7.1,
"vote_count": 12
},
{
"air_date": "1992-11-10",
"episode_number": 35,
"episode_type": "standard",
"id": 1029169,
"name": "Almost Got 'Im",
"order": 17,
"overview": "While hiding from the police, Batman's deadliest enemies exchange stories about their mutual nemesis--Batman.",
"production_code": "146",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/zDZYHu7yq94YXQdBHR81LysGBB.jpg",
"vote_average": 7.9,
"vote_count": 13
},
{
"air_date": "1993-02-08",
"episode_number": 52,
"episode_type": "standard",
"id": 1029152,
"name": "Birds of a Feather",
"order": 18,
"overview": "Veronica Vreeland, a socialite desperate to create a novel party, makes the mistake of inviting the Penguin as her guest of honor.",
"production_code": "047",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/pPkgIDmnPfCEqckBOx4e73wuw2P.jpg",
"vote_average": 7.6,
"vote_count": 13
},
{
"air_date": "1992-11-24",
"episode_number": 45,
"episode_type": "standard",
"id": 1029160,
"name": "What Is Reality?",
"order": 19,
"overview": "To prove that he has a superior mind, the Riddler lures Batman into a contest inside a virtual reality computer game.",
"production_code": "148",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/jH45yO25P0g6IJeg3QSqXonwPfj.jpg",
"vote_average": 7.2,
"vote_count": 12
},
{
"air_date": "1992-11-09",
"episode_number": 34,
"episode_type": "standard",
"id": 1029170,
"name": "I Am the Night",
"order": 20,
"overview": "On the anniversary of the death of Bruce's parents, Batman expresses doubts about whether or not he should continue his one-man war against crime.",
"production_code": "049",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/6ftZA2aFr401uAdTTAsWRHhqZ3b.jpg",
"vote_average": 8,
"vote_count": 12
},
{
"air_date": "1992-11-23",
"episode_number": 44,
"episode_type": "standard",
"id": 1029161,
"name": "Off Balance",
"order": 21,
"overview": "Batman investigates a notorious global crime cartel, The Society of Shadows, which has begun to operate in Gotham City.",
"production_code": "050",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/3q2CL2rNPGxKlFUnJ28ZiqH48gc.jpg",
"vote_average": 7.3,
"vote_count": 12
},
{
"air_date": "1993-02-01",
"episode_number": 49,
"episode_type": "standard",
"id": 1029156,
"name": "The Man Who Killed Batman",
"order": 22,
"overview": "Sidney Debris, a small-time mobster, earns the hatred of all of Batman's enemies when he claims to have accidentally killed Batman during a brawl.",
"production_code": "151",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/uTwFqAFsN77fgdAwOmtukvTnH1X.jpg",
"vote_average": 7.8,
"vote_count": 12
},
{
"air_date": "1993-09-15",
"episode_number": 3,
"episode_type": "standard",
"id": 986222,
"name": "Mudslide",
"order": 23,
"overview": "When Clayface's clay-like body begins to disintegrate, he is forced to steal to pay for the expensive ingredients of a possible remedy.",
"production_code": "052",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/kCRvomd7ZCIf8zBbcBAvPwvGwEM.jpg",
"vote_average": 7.7,
"vote_count": 13
},
{
"air_date": "1993-09-17",
"episode_number": 5,
"episode_type": "standard",
"id": 986223,
"name": "Paging the Crime Doctor",
"order": 24,
"overview": "Crime boss Rupert Thorne forces his older brother, a doctor, to perform delicate surgery on Rupert--and kidnaps Dr. Leslie Thompkins to assist.",
"production_code": "053",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/ovbpLylXI5ZwFqIi3CNC40IVI8T.jpg",
"vote_average": 7.4,
"vote_count": 13
},
{
"air_date": "1993-02-02",
"episode_number": 50,
"episode_type": "standard",
"id": 1029155,
"name": "Zatanna",
"order": 25,
"overview": "When glamorous female magician Zatanna is framed for a robbery during her act, Batman comes to her defense.",
"production_code": "054",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/znG5EtvUyLMpysTlObwd66dWQGW.jpg",
"vote_average": 7.1,
"vote_count": 14
},
{
"air_date": "1993-01-24",
"episode_number": 48,
"episode_type": "standard",
"id": 1029157,
"name": "The Mechanic",
"order": 26,
"overview": "While engaged in a high-speed chase, the Penguin's gang escapes and the Batmobile is virtually demolished.",
"production_code": "055",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/2YSbz6UfDosVZxP5rplPWLACK3H.jpg",
"vote_average": 7.3,
"vote_count": 12
},
{
"air_date": "1993-01-18",
"episode_number": 47,
"episode_type": "standard",
"id": 1029158,
"name": "Harley and Ivy",
"order": 27,
"overview": "Harley Quinn has broken off with the Joker and teams up with Poison Ivy. Together they wreck havoc on Gotham and now Joker wants a piece of the action.",
"production_code": "156",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/uSB2zgmcCYDgrKnNsGBBtS1zSTu.jpg",
"vote_average": 7.4,
"vote_count": 14
}
],
"id": "5acff4649251417b6c003b5d",
"locked": true,
"name": "Season 2",
"order": 2
},
{
"episodes": [
{
"air_date": "1993-09-13",
"episode_number": 1,
"episode_type": "standard",
"id": 1029137,
"name": "Shadow of the Bat (1)",
"order": 0,
"overview": "Commissioner Gordon is rumored to be taking bribes from Rupert Thorne. His daughter Barbara sets out to prove that he's innocent.",
"production_code": "157",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/9JF2ULFBbFYtgvxKR9lKRvIp2rL.jpg",
"vote_average": 7.5,
"vote_count": 13
},
{
"air_date": "1993-09-14",
"episode_number": 2,
"episode_type": "standard",
"id": 1029135,
"name": "Shadow of the Bat (2)",
"order": 1,
"overview": "Robin, who discovers that Gil Mason is in league with a powerful crime boss, encounters Batgirl as she tries to clear her father's name.",
"production_code": "158",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/lCaipZkndnSNNOeaOh88GNqHfOJ.jpg",
"vote_average": 7.4,
"vote_count": 13
},
{
"air_date": "1993-02-22",
"episode_number": 54,
"episode_type": "standard",
"id": 1029149,
"name": "Blind as a Bat",
"order": 2,
"overview": "Bruce Wayne is temporarily blinded when the Penguin steals a new police helicopter with weaponry developed by WayneTech.",
"production_code": "1",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/mgrt32lWKtcaniy6uCwECczzmC.jpg",
"vote_average": 7.3,
"vote_count": 12
},
{
"air_date": "1993-05-03",
"episode_number": 57,
"episode_type": "standard",
"id": 1029147,
"name": "The Demon's Quest (1)",
"order": 3,
"overview": "When Robin is mysteriously abducted, Batman's search leads him to meet Ra's Al Ghul, leader of The Society of Shadows, whose daughter, Talia, has also been kidnapped.",
"production_code": "160",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/9L8HRcwNfJOKTcgg1wG9eBHksoz.jpg",
"vote_average": 7.4,
"vote_count": 12
},
{
"air_date": "1993-05-04",
"episode_number": 58,
"episode_type": "standard",
"id": 1029146,
"name": "The Demon's Quest (2)",
"order": 4,
"overview": "Batman discovers Ra's Al Ghul's plan to flood Earth with chemicals and return it to a lush, green planet--which will destroy all life that now exists!",
"production_code": "161",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/ynzbbJfOJJ1smSXanh4sItkGUHp.jpg",
"vote_average": 7.4,
"vote_count": 12
},
{
"air_date": "1992-11-20",
"episode_number": 43,
"episode_type": "standard",
"id": 1029162,
"name": "His Silicon Soul",
"order": 5,
"overview": "A confused robot that believes he is Batman causes problems for the real Dark Knight.",
"production_code": "060",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/vukHsg4TMc7MrjAB1W5fzaJu1Ft.jpg",
"vote_average": 7.7,
"vote_count": 12
},
{
"air_date": "1993-05-24",
"episode_number": 60,
"episode_type": "finale",
"id": 1029144,
"name": "Fire from Olympus",
"order": 6,
"overview": "Believing he's the reincarnation of Zeus, a mad shipping magnate mounts a stolen electron cannon atop his penthouse to shoot 'lightning bolts' at the 'wicked mortals' below.",
"production_code": "163",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/bhXu5jBtANRcJCDyQo1mo4LEeun.jpg",
"vote_average": 6.6,
"vote_count": 13
},
{
"air_date": "1993-05-10",
"episode_number": 59,
"episode_type": "standard",
"id": 1029145,
"name": "Read My Lips",
"order": 7,
"overview": "Batman investigates a series of baffling crimes and discovers that the crime czar is a wooden dummy, manipulated by a mild-mannered man called the Ventriloquist.",
"production_code": "164",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/rCZiQpMiWFJFigxyIylQnOo19Aw.jpg",
"vote_average": 7.6,
"vote_count": 12
},
{
"air_date": "1993-09-16",
"episode_number": 4,
"episode_type": "standard",
"id": 1029134,
"name": "The Worry Men",
"order": 8,
"overview": "Wealthy socialite Veronica Vreeland returns from Central America bringing tiny handmade dolls for all her friends--but the dolls are controlled by the Mad Hatter!",
"production_code": "065",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/tw0YY4ncuFQe8mgpVlh2ySbX07t.jpg",
"vote_average": 7.3,
"vote_count": 14
},
{
"air_date": "1994-05-03",
"episode_number": 7,
"episode_type": "standard",
"id": 1029139,
"name": "Sideshow",
"order": 9,
"overview": "Killer Croc escapes when being transported to prison and hides out with a group of circus people.",
"production_code": "166",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/vCQn7W2elQoeR03urxIHnRBpNJj.jpg",
"vote_average": 7.6,
"vote_count": 12
},
{
"air_date": "1995-09-14",
"episode_number": 4,
"episode_type": "standard",
"id": 1044566,
"name": "A Bullet for Bullock",
"order": 10,
"overview": "Batman helps Detective Harvey Bullock who appears to be the target of someone's revenge.",
"production_code": "067",
"runtime": 22,
"season_number": 4,
"show_id": 2098,
"still_path": "/edVTckE6h0Yvzuazm006xpiAoJP.jpg",
"vote_average": 7.5,
"vote_count": 11
},
{
"air_date": "1994-05-16",
"episode_number": 9,
"episode_type": "standard",
"id": 1029141,
"name": "Trial",
"order": 11,
"overview": "All of Batman's enemies team together to put Batman on trial and send him to Arkham Asylum.",
"production_code": "168",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/vCzZVPCymYa339h0ZqYHMRCMrUi.jpg",
"vote_average": 8.1,
"vote_count": 12
},
{
"air_date": "1994-05-09",
"episode_number": 8,
"episode_type": "standard",
"id": 1029140,
"name": "Avatar",
"order": 12,
"overview": "Ra's Al Ghul steals a sacred Egyptian scroll that Bruce Wayne donated to the Gotham museum.",
"production_code": "069",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/bn9O5a1G5kobOzOBW7SCY0A9uvs.jpg",
"vote_average": 7.1,
"vote_count": 12
},
{
"air_date": "1994-05-02",
"episode_number": 6,
"episode_type": "standard",
"id": 1029138,
"name": "House & Garden",
"order": 13,
"overview": "Poison Ivy appears to have stopped her crime spree when she marries a doctor with two sons to raise. However, crimes continue occurring in the Poison Ivy style, leaving Batman to question her innocence.",
"production_code": "170",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/yxSxPDdKaVmAGhb80s3W6LZPV43.jpg",
"vote_average": 7.8,
"vote_count": 13
},
{
"air_date": "1995-09-11",
"episode_number": 1,
"episode_type": "standard",
"id": 1044563,
"name": "The Terrible Trio",
"order": 14,
"overview": "Batman tracks three wealthy playboys who commit crimes out of boredom.",
"production_code": "071",
"runtime": 22,
"season_number": 4,
"show_id": 2098,
"still_path": "/pkTnMrFwzj2tBCcA7a63X2Iucj.jpg",
"vote_average": 6.7,
"vote_count": 12
},
{
"air_date": "1994-05-23",
"episode_number": 10,
"episode_type": "finale",
"id": 1029142,
"name": "Harlequinade",
"order": 15,
"overview": "Harley Quinn agrees to help Batman and Robin find the location of a stolen atomic bomb placed somewhere in Gotham by the Joker.",
"production_code": "172",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/21qXpiEoDXkkiPgCPx8Yjw7CU15.jpg",
"vote_average": 8.1,
"vote_count": 13
},
{
"air_date": "1994-10-08",
"episode_number": 5,
"episode_type": "standard",
"id": 1044557,
"name": "Time Out of Joint",
"order": 16,
"overview": "The Clock King plots against Mayor Hill after he steals an invention that allows him to travel at super speed.",
"production_code": "",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/uHk6Ks3RX4t0EbCRsFTTYPx4E87.jpg",
"vote_average": 7,
"vote_count": 11
},
{
"air_date": "1995-09-13",
"episode_number": 3,
"episode_type": "standard",
"id": 1044565,
"name": "Catwalk",
"order": 17,
"overview": "Catwoman's attempt to go straight runs into problems when she is enticed into one last job by the Ventriloquist.",
"production_code": "074",
"runtime": 22,
"season_number": 4,
"show_id": 2098,
"still_path": "/1ZCsUlzUD33h6cAEHE811QxxtyS.jpg",
"vote_average": 7.4,
"vote_count": 11
},
{
"air_date": "1994-09-10",
"episode_number": 1,
"episode_type": "standard",
"id": 1044553,
"name": "Bane",
"order": 18,
"overview": "Rupert Thorne hires the chemically-augmented assassin Bane to kill Batman.",
"production_code": "075",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/fFRwRNLj839I8ednBUtMgZFu4mI.jpg",
"vote_average": 7.5,
"vote_count": 12
},
{
"air_date": "1994-10-01",
"episode_number": 4,
"episode_type": "standard",
"id": 1044556,
"name": "Baby-Doll",
"order": 19,
"overview": "Baby-Doll, a former child star, pours out her frustrations on her TV family by kidnapping them and holding them hostage.",
"production_code": "176",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/34rU2BIRbj5qbmvdNkdnV0nKMsS.jpg",
"vote_average": 7.4,
"vote_count": 13
},
{
"air_date": "1995-09-15",
"episode_number": 5,
"episode_type": "finale",
"id": 1044567,
"name": "The Lion and the Unicorn",
"order": 20,
"overview": "Alfred, a former British spy, is called into duty and becomes of the target of the Red Claw.",
"production_code": "077",
"runtime": 22,
"season_number": 4,
"show_id": 2098,
"still_path": "/dar6GdynqqhqvzX8d0cj61RVl4X.jpg",
"vote_average": 6.8,
"vote_count": 11
},
{
"air_date": "1995-09-12",
"episode_number": 2,
"episode_type": "standard",
"id": 1044564,
"name": "Showdown",
"order": 21,
"overview": "Batman and Robin learn about the exploits of Jonah Hex an Old West crimefighter who once dealt with the immortal Ra's Al Ghul.",
"production_code": "078",
"runtime": 22,
"season_number": 4,
"show_id": 2098,
"still_path": "/sj13brwQfKpCDfI3KM6TZVTqoGN.jpg",
"vote_average": 6.8,
"vote_count": 11
},
{
"air_date": "1994-09-24",
"episode_number": 3,
"episode_type": "standard",
"id": 1044555,
"name": "Riddler's Reform",
"order": 22,
"overview": "The Riddler appears to have gone straight when he develops a new and successful puzzle based toy.",
"production_code": "079",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/t20C9Eq4SXaLJdrWXpOa4lYAY1n.jpg",
"vote_average": 7.2,
"vote_count": 12
},
{
"air_date": "1994-09-17",
"episode_number": 2,
"episode_type": "standard",
"id": 1044554,
"name": "Second Chance",
"order": 23,
"overview": "Batman and Robin are puzzled by the sudden kidnapping of Twoface, who was on his way to have his face fixed.",
"production_code": "080",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/dMB3jCWYT6pZXkgaWeStQiA8dkp.jpg",
"vote_average": 7.7,
"vote_count": 12
},
{
"air_date": "1994-10-15",
"episode_number": 6,
"episode_type": "standard",
"id": 1044558,
"name": "Harley's Holiday",
"order": 24,
"overview": "Harley gets herself into a whole mess of trouble after she steals Bruce Wayne's car and kidnaps his girlfriend.",
"production_code": "081",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/xGYNpA9DXkwuQy4jDtIBzNOA4Qj.jpg",
"vote_average": 7.9,
"vote_count": 13
},
{
"air_date": "1994-11-19",
"episode_number": 9,
"episode_type": "standard",
"id": 1044561,
"name": "Lock-Up",
"order": 25,
"overview": "Lyle Bolton Arkam's former chief of security becomes the vigilante Lock-up and kidnaps Commissioner Gordon and Mayor Hill seeing them as the cause of rampant crime in Gotham City.",
"production_code": "082",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/xHnTgRF69yRgV7y50qcg1dIy3I7.jpg",
"vote_average": 7.4,
"vote_count": 12
},
{
"air_date": "1994-11-05",
"episode_number": 7,
"episode_type": "standard",
"id": 1044559,
"name": "Make 'Em Laugh",
"order": 26,
"overview": "Batman and Robin investigate a string of crimes committed by a group of famous comedians brainwashed by the Joker.",
"production_code": "083",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/oDnRibTjEWPSMUR92wF1rnttv8h.jpg",
"vote_average": 7.3,
"vote_count": 12
},
{
"air_date": "1994-11-26",
"episode_number": 10,
"episode_type": "finale",
"id": 1044562,
"name": "Deep Freeze",
"order": 27,
"overview": "Aging billionaire Grant Walker breaks Mr. Freeze out of prison so he can use the scientist's knowledge to can gain immortality and cover the world in a new ice age.",
"production_code": "084",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/pSAHYvC4pye2ijiQoAW8KPOY4Kq.jpg",
"vote_average": 7.5,
"vote_count": 13
},
{
"air_date": "1994-11-12",
"episode_number": 8,
"episode_type": "standard",
"id": 1044560,
"name": "Batgirl Returns",
"order": 28,
"overview": "Batgirl and Catwoman team up to investigate the theft of a rare cat statue.",
"production_code": "085",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/7kXJKll2ALqiksPxRIoB5wU90dv.jpg",
"vote_average": 6.9,
"vote_count": 12
}
],
"id": "5ad0000b0e0a267498004def",
"locked": true,
"name": "Season 3",
"order": 3
}
],
"id": "5acfef37c3a36842e400333f",
"name": "DVD Order",
"network": null,
"type": 3
}Authorizations
Path Parameters
integer
Example:
"5acfef37c3a36842e400333f"
Response
200 - application/json
OK
Example:
"This episode group reflects the order of the DVD releases."
Example:
85
Example:
3
Show child attributes
Show child attributes
Example:
[
{
"episodes": [
{
"air_date": "1992-09-06",
"episode_number": 2,
"episode_type": "standard",
"id": 146355,
"name": "On Leather Wings",
"order": 0,
"overview": "When a vicious bat creature known as Man-Bat, starts terrorizing Gotham City, everyone mistakenly thinks that Batman is the culprit. Batman must find out who the mysterious Man-Bat is and clear his own name.",
"production_code": "001",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/kTLD5SHb8O4oFTw9CffqPpIGnon.jpg",
"vote_average": 7.371,
"vote_count": 35
},
{
"air_date": "1992-11-13",
"episode_number": 38,
"episode_type": "standard",
"id": 987941,
"name": "Christmas with the Joker",
"order": 1,
"overview": "The Joker kidnaps three prominent citizens during Christmas and challenges Batman to find him before midnight.",
"production_code": "502",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/kaLJGHwzWFFXRAjmjQWtwNXwqyD.jpg",
"vote_average": 6.8,
"vote_count": 25
},
{
"air_date": "1992-09-15",
"episode_number": 10,
"episode_type": "standard",
"id": 146359,
"name": "Nothing to Fear",
"order": 2,
"overview": "A horrifying villain named Scarecrow spreads fear gas and wreaks havoc at Gotham State University.",
"production_code": "503",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/gnP1W7zwqMJaQFQavr4Xa5VaYtd.jpg",
"vote_average": 7.704,
"vote_count": 27
},
{
"air_date": "1992-09-22",
"episode_number": 15,
"episode_type": "standard",
"id": 146390,
"name": "The Last Laugh",
"order": 3,
"overview": "The Joker employs a lethal mind-altering laughing gas to transform the citizens of Gotham into total fools.",
"production_code": "504",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/2KmOTW9jGmgcUxS9wtQN0Ga1JMU.jpg",
"vote_average": 7.444,
"vote_count": 27
},
{
"air_date": "1992-09-14",
"episode_number": 9,
"episode_type": "standard",
"id": 146446,
"name": "Pretty Poison",
"order": 4,
"overview": "When District Attorney Harvey Dent is poisoned after a dinner date, Batman makes the horrifying discovery that his date was Poison Ivy, a plant-obsessed villainess.",
"production_code": "505",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/9dPYAOyvyVmSxnC5hAGOl5vXwpW.jpg",
"vote_average": 7.462,
"vote_count": 26
},
{
"air_date": "1992-10-21",
"episode_number": 27,
"episode_type": "standard",
"id": 986191,
"name": "The Underdwellers",
"order": 5,
"overview": "Batman discovers a gang of forgotten runaways living deep within the Gotham sewer system.",
"production_code": "506",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/tRn0HVWp9twkBktbuoV1XoqTPzF.jpg",
"vote_average": 7.1,
"vote_count": 17
},
{
"air_date": "1992-09-18",
"episode_number": 13,
"episode_type": "standard",
"id": 146391,
"name": "P.O.V.",
"order": 6,
"overview": "Bullock's account of a botched sting operation is so at odds with the other officers' testimony that the police investigator suspends everyone involved.",
"production_code": "507",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/yznDzUOs9fhwnmgxemCYeC6cOv9.jpg",
"vote_average": 7.4,
"vote_count": 22
},
{
"air_date": "1992-10-08",
"episode_number": 23,
"episode_type": "standard",
"id": 987942,
"name": "The Forgotten",
"order": 7,
"overview": "When men begin disappearing at a bowery, Bruce Wayne decides to go undercover as a worker. He loses his memory after he is attacked, kidnapped and forced to work in a mining camp.",
"production_code": "508",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/oZ6gdMHfBTAXYbaKYMeuvomEue8.jpg",
"vote_average": 7.2,
"vote_count": 20
},
{
"air_date": "1992-09-16",
"episode_number": 11,
"episode_type": "standard",
"id": 146374,
"name": "Be a Clown",
"order": 8,
"overview": "The Joker infiltrates the birthday party of Mayor Hill's son in order to plant a bomb.",
"production_code": "509",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/kojigDu7kOWkgMoJUaIdT1SUZX6.jpg",
"vote_average": 7.1,
"vote_count": 23
},
{
"air_date": "1992-09-25",
"episode_number": 17,
"episode_type": "standard",
"id": 146375,
"name": "Two-Face (1)",
"order": 9,
"overview": "District Attorney Harvey Dent hides a deep dark secret--he has a second personality, Big Bad Harv, a tough gangster.",
"production_code": "510",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/to1wCUQzENjS7UashGyXi30B7JV.jpg",
"vote_average": 8.3,
"vote_count": 27
},
{
"air_date": "1992-09-28",
"episode_number": 18,
"episode_type": "standard",
"id": 986192,
"name": "Two-Face (2)",
"order": 10,
"overview": "Two-Face, the former Harvey Dent, begins an aggressive campaign against his hated rival, Rupert Thorne.",
"production_code": "517",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/mnTUBXCE37mwBHGv0guHVMj8wAf.jpg",
"vote_average": 8.3,
"vote_count": 26
},
{
"air_date": "1992-09-10",
"episode_number": 6,
"episode_type": "standard",
"id": 146377,
"name": "It's Never Too Late",
"order": 11,
"overview": "An aging Mob boss learns his drug dealings have contributed to his son's drug addiction.",
"production_code": "511",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/aWdYhXYHf6AN1JeIFSlO3Z2Pnhj.jpg",
"vote_average": 7.7,
"vote_count": 23
},
{
"air_date": "1992-09-30",
"episode_number": 20,
"episode_type": "standard",
"id": 146378,
"name": "I've Got Batman in My Basement",
"order": 12,
"overview": "After the Penguin sprays Batman with nerve gas, a 12-year-old boy rescues the unconscious hero and hides him in his basement.",
"production_code": "512",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/i3Wkp8PCLQxdFG4bk1QQ7At7jwo.jpg",
"vote_average": 6.8,
"vote_count": 19
},
{
"air_date": "1992-09-07",
"episode_number": 3,
"episode_type": "standard",
"id": 146379,
"name": "Heart of Ice",
"order": 13,
"overview": "Brilliant cryogenics expert Dr. Victor Fries is transformed into Mr. Freeze, a vengeful creature who can only survive in subzero temperatures.",
"production_code": "514",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/56gAPNLX5MTUcOy4QAfNwGUCBCF.jpg",
"vote_average": 8.333,
"vote_count": 27
},
{
"air_date": "1992-09-05",
"episode_number": 1,
"episode_type": "standard",
"id": 146380,
"name": "The Cat and the Claw (1)",
"order": 14,
"overview": "Catwoman steals a necklace to finance the purchase of land for a mountain lion reserve, but is stopped by a group of terrorists.",
"production_code": "513",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/iDkkb25Qb4wUAef42oxLaVFysp2.jpg",
"vote_average": 7.52,
"vote_count": 25
},
{
"air_date": "1992-09-12",
"episode_number": 8,
"episode_type": "standard",
"id": 146398,
"name": "The Cat and the Claw (2)",
"order": 15,
"overview": "When Catwoman infiltrates the underground headquarters of the terrorists, both she and Batman are captured and left to die as victims of a viral plague.",
"production_code": "516",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/8t9rNPZ9JM8aUkleCd8ygKM0pUP.jpg",
"vote_average": 7.1,
"vote_count": 19
},
{
"air_date": "1993-02-24",
"episode_number": 56,
"episode_type": "standard",
"id": 987943,
"name": "See No Evil",
"order": 16,
"overview": "After a fortune disappears from a gem exposition, Batman investigates. He discovers that the crime may have been committed by an invisible man, an ex-con named Lloyd Ventris.",
"production_code": "515",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/a5PKPr8LnEt4h76AB8ezPVUEobk.jpg",
"vote_average": 7.8,
"vote_count": 12
},
{
"air_date": "1992-11-04",
"episode_number": 32,
"episode_type": "standard",
"id": 987944,
"name": "Beware the Gray Ghost",
"order": 17,
"overview": "Batman connects recent bombings in Gotham to an episode of an old television series featuring his favorite boyhood hero, the 'Gray Ghost.'",
"production_code": "518",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/nSlGbTrDDP0bJORpC8KHXbbkTZG.jpg",
"vote_average": 8.2,
"vote_count": 15
},
{
"air_date": "1992-10-06",
"episode_number": 22,
"episode_type": "standard",
"id": 986193,
"name": "Prophecy of Doom",
"order": 18,
"overview": "Bruce begins to worry when all of his wealthy friends join the same Brotherhood group run by Nostromos, a so-called psychic.",
"production_code": "519",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/jiZjlFVxw5aK6G1hzw8m1XStkcs.jpg",
"vote_average": 6.8,
"vote_count": 16
},
{
"air_date": "1992-09-08",
"episode_number": 4,
"episode_type": "standard",
"id": 987946,
"name": "Feat of Clay (1)",
"order": 19,
"overview": "A popular actor renowned for his ability to play any part has a terrible secret--he's addicted to a strange chemical formula that enables him to alter his facial features without makeup.",
"production_code": "520",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/qH5FgSSPT6SL43Vuhfsh1FxIKR.jpg",
"vote_average": 7.8,
"vote_count": 20
},
{
"air_date": "1992-09-09",
"episode_number": 5,
"episode_type": "standard",
"id": 146392,
"name": "Feat of Clay (2)",
"order": 20,
"overview": "Clayface learns that the man responsible for his disfigurement is to appear on TV, promoting a skin conditioner containing the same chemical that deformed him.",
"production_code": "521",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/w4HpRMyiQhXuGrIuAokdDtpb9yd.jpg",
"vote_average": 8.05,
"vote_count": 20
},
{
"air_date": "1992-09-11",
"episode_number": 7,
"episode_type": "standard",
"id": 987948,
"name": "Joker's Favor",
"order": 21,
"overview": "When a timid accountant accidentally runs afoul of the Joker, he promises the Joker anything if the villain will only let him go.",
"production_code": "522",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/nPZoEfwnR9FwLwiZ7mau9nC3nzx.jpg",
"vote_average": 7.6,
"vote_count": 19
},
{
"air_date": "1992-10-05",
"episode_number": 21,
"episode_type": "standard",
"id": 987949,
"name": "Vendetta",
"order": 22,
"overview": "Batman suspects that an imprisoned Detective Bullock may be innocent after he is arrested for murder. The real murderer turns out to be Killer Croc, who framed Bullock to get revenge.",
"production_code": "523",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/dmNy79DXWl8eDyQg3cJ6snrIy1M.jpg",
"vote_average": 7.5,
"vote_count": 15
},
{
"air_date": "1992-09-29",
"episode_number": 19,
"episode_type": "standard",
"id": 146396,
"name": "Fear of Victory",
"order": 23,
"overview": "The Scarecrow uses a fear chemical triggered by adrenaline on Gotham's greatest athletes, then bets against them to reap the winnings.",
"production_code": "524",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/ry0XVegXzFX0oVILRXdqfeDe1M8.jpg",
"vote_average": 7.5,
"vote_count": 16
},
{
"air_date": "1992-09-21",
"episode_number": 14,
"episode_type": "standard",
"id": 146403,
"name": "The Clock King",
"order": 24,
"overview": "When a maniacally punctilious man faces financial ruin because of attorney Hamilton Hill, he transforms into the devious Clock King and swears revenge on Hill, now the mayor of Gotham.",
"production_code": "525",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/8XhauqaXku5CY5czFcyM1MoXbkl.jpg",
"vote_average": 7.2,
"vote_count": 15
},
{
"air_date": "1992-09-17",
"episode_number": 12,
"episode_type": "standard",
"id": 146399,
"name": "Appointment in Crime Alley",
"order": 25,
"overview": "Batman's friend, Dr. Leslie Thompkins, is taken prisoner by a ruthless land developer after she uncovers his devious plans.",
"production_code": "526",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/a6GXhBw73sOcOjaX0xFCGr26lez.jpg",
"vote_average": 7.4,
"vote_count": 18
},
{
"air_date": "1992-10-12",
"episode_number": 24,
"episode_type": "standard",
"id": 987950,
"name": "Mad as a Hatter",
"order": 26,
"overview": "The Mad Hatter puts the city of Gotham under his control in an attempt to impress a woman, Alice, with whom he is in love.",
"production_code": "027",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/mlih4cXUmpWvpfLkPsX6hI4o1UG.jpg",
"vote_average": 7.6,
"vote_count": 16
},
{
"air_date": "1992-11-03",
"episode_number": 31,
"episode_type": "standard",
"id": 986195,
"name": "Dreams in Darkness",
"order": 27,
"overview": "Batman must thwart the Scarecrow's plan to poison Gotham's water supply with a chemical that induces hallucinations.",
"production_code": "28",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/vtMTbHOkw3k2nMOoN1WVEmjz07A.jpg",
"vote_average": 7.7,
"vote_count": 11
}
],
"id": "5acfef66c3a36842ca0039d1",
"locked": true,
"name": "Season 1",
"order": 1
},
{
"episodes": [
{
"air_date": "1992-09-23",
"episode_number": 16,
"episode_type": "standard",
"id": 1029183,
"name": "Eternal Youth",
"order": 0,
"overview": "Alfred and his friend, Maggie Paige, visit a health spa that is actually run by the nefarious Poison Ivy.",
"production_code": "529",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/b6U7tca4gi2RCBKGRJzKlj9ui9L.jpg",
"vote_average": 7.2,
"vote_count": 18
},
{
"air_date": "1992-10-19",
"episode_number": 26,
"episode_type": "standard",
"id": 1029190,
"name": "Perchance to Dream",
"order": 1,
"overview": "Bruce Wayne wakes up to find that his parents are not dead, he is not Batman, and he's engaged to Selina Kyle!",
"production_code": "530",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/8s4BK31LckEIbiVkAumsorQ5yKF.jpg",
"vote_average": 8.4,
"vote_count": 17
},
{
"air_date": "1992-10-14",
"episode_number": 25,
"episode_type": "standard",
"id": 1029188,
"name": "The Cape and Cowl Conspiracy",
"order": 2,
"overview": "Batman investigates a theft of bearer bonds intended for the starving people of a poor country.",
"production_code": "531",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/g8O47CqVP4HjqvUjET3PeVA4mXo.jpg",
"vote_average": 7.6,
"vote_count": 16
},
{
"air_date": "1993-02-07",
"episode_number": 51,
"episode_type": "standard",
"id": 1029154,
"name": "Robin's Reckoning (1)",
"order": 3,
"overview": "After learning the name of an extortion ringleader, Batman mysteriously refuses to let Robin continue the investigation with him.",
"production_code": "132",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/jJuakkPkZWZRkJXbEpLYECEqYjM.jpg",
"vote_average": 8.2,
"vote_count": 12
},
{
"air_date": "1993-02-14",
"episode_number": 53,
"episode_type": "standard",
"id": 1029151,
"name": "Robin's Reckoning (2)",
"order": 4,
"overview": "Despite Batman's orders not to, Robin pursues Tony Zucco, the criminal who was responsible for the death of Robin's parents.",
"production_code": "133",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/3WooXtlmxJva6ejVyZZRUAwq1J2.jpg",
"vote_average": 8.2,
"vote_count": 12
},
{
"air_date": "1993-01-10",
"episode_number": 46,
"episode_type": "standard",
"id": 1029159,
"name": "The Laughing Fish",
"order": 5,
"overview": "The Joker becomes enraged when the Gotham copyright office rejects his demand for a copyright for his grinning Joker fish.",
"production_code": "33",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/4BIg29a5clj1CbEsezb6ExHmcnw.jpg",
"vote_average": 7.6,
"vote_count": 15
},
{
"air_date": "1992-10-26",
"episode_number": 28,
"episode_type": "standard",
"id": 1029174,
"name": "Night of the Ninja",
"order": 6,
"overview": "When Wayne Enterprises is robbed by a mysterious figure known as the Ninja, Batman and Robin discover that the Ninja is an old nemesis of Bruce Wayne.",
"production_code": "034",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/eKWni6z9aiWyHAurSBOUB8iZxSM.jpg",
"vote_average": 7.2,
"vote_count": 14
},
{
"air_date": "1992-11-05",
"episode_number": 33,
"episode_type": "standard",
"id": 1029171,
"name": "Cat Scratch Fever",
"order": 7,
"overview": "Selina Kyle uncovers a plot to infect stray animals with a deadly disease that will be transmitted to the human population.",
"production_code": "035",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/3EhvhkJA5Byy24DGp8kWE4QrPUp.jpg",
"vote_average": 7.1,
"vote_count": 12
},
{
"air_date": "1992-10-29",
"episode_number": 29,
"episode_type": "standard",
"id": 1029173,
"name": "The Strange Secret of Bruce Wayne",
"order": 8,
"overview": "Dr. Hugo Strange's invention, a machine that reads people's thoughts, leads him to discover that Bruce is Batman.",
"production_code": "036",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/415F8q7mATKI9HdMz1Dim9cpx7F.jpg",
"vote_average": 7.6,
"vote_count": 14
},
{
"air_date": "1992-11-16",
"episode_number": 39,
"episode_type": "standard",
"id": 1029166,
"name": "Heart of Steel (1)",
"order": 9,
"overview": "Karl Rossum, owner of Cyberton Labs has been replacing important authority figures with robot look-alikes. Batman invites a young woman to dinner, not knowing that she is a robot as well.",
"production_code": "138",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/aPwGD6FDiMDlgIKY6hMhZMymjlC.jpg",
"vote_average": 7.3,
"vote_count": 12
},
{
"air_date": "1992-11-17",
"episode_number": 40,
"episode_type": "standard",
"id": 1029165,
"name": "Heart of Steel (2)",
"order": 10,
"overview": "Batman escapes from being attacked by his own Batcomputer, which was sabatoged by HARDAC. He now seeks to get back Gordon, Hill and Bullock, who have all been replaced with robots.",
"production_code": "139",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/1p1tG4ppJni1N2db5cA2G8ac8Wd.jpg",
"vote_average": 7.5,
"vote_count": 12
},
{
"air_date": "1992-11-18",
"episode_number": 41,
"episode_type": "standard",
"id": 1029164,
"name": "If You're So Smart, Why Aren't You Rich?",
"order": 11,
"overview": "When Edward Nygma's greedy boss unjustly fires genius him, Nygma seeks revenge in a new guise--as the Riddler!",
"production_code": "140",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/rxu01SwiheXTd3aw7WoRDR8ql8Q.jpg",
"vote_average": 7.6,
"vote_count": 11
},
{
"air_date": "1992-11-19",
"episode_number": 42,
"episode_type": "standard",
"id": 1029163,
"name": "Joker's Wild",
"order": 12,
"overview": "When a billionaire builds a casino called the Joker's Wild, the Joker breaks out of Arkham Asylum to destroy it.",
"production_code": "141",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/4cQhRSRR3MjR51nrvOI7g1yTnAp.jpg",
"vote_average": 7.2,
"vote_count": 12
},
{
"air_date": "1992-10-30",
"episode_number": 30,
"episode_type": "standard",
"id": 1029172,
"name": "Tyger, Tyger",
"order": 13,
"overview": "When a genetic engineer produces a man-cat hybrid, he kidnaps Selina Kyle to provide his creation with a mate.",
"production_code": "041",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/qp6SQzOK8I0LsGRbX7aDMDxwE7o.jpg",
"vote_average": 6.5,
"vote_count": 13
},
{
"air_date": "1992-11-11",
"episode_number": 36,
"episode_type": "standard",
"id": 1029168,
"name": "Moon of the Wolf",
"order": 14,
"overview": "Professor Milo tries to use an old friend of Bruce Wayne's, Anthony Romulus, to destroy him after Milo injects Romulus with a serum that changes him into a wolf.",
"production_code": "042",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/mKmzw4EqjBXmGGuofpmB8b4qeDL.jpg",
"vote_average": 6.3,
"vote_count": 12
},
{
"air_date": "1993-02-23",
"episode_number": 55,
"episode_type": "standard",
"id": 1029148,
"name": "Day of the Samurai",
"order": 15,
"overview": "Bruce Wayne and Alfred travel to Japan to help Bruce's old martial arts teacher, Sensei Yoru.",
"production_code": "043",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/hGgOwuzYphNft7JfpUcL6OGuQ5.jpg",
"vote_average": 7.7,
"vote_count": 12
},
{
"air_date": "1992-11-12",
"episode_number": 37,
"episode_type": "standard",
"id": 1029167,
"name": "Terror in the Sky",
"order": 16,
"overview": "When a man-sized bat ransacks Gotham harbor, Batman suspects that Dr. Kirk Langstrom is drinking his Man-Bat formula again.",
"production_code": "045",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/rdi5q5ADBwTNhFrY4eZ8qrCYl9i.jpg",
"vote_average": 7.1,
"vote_count": 12
},
{
"air_date": "1992-11-10",
"episode_number": 35,
"episode_type": "standard",
"id": 1029169,
"name": "Almost Got 'Im",
"order": 17,
"overview": "While hiding from the police, Batman's deadliest enemies exchange stories about their mutual nemesis--Batman.",
"production_code": "146",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/zDZYHu7yq94YXQdBHR81LysGBB.jpg",
"vote_average": 7.9,
"vote_count": 13
},
{
"air_date": "1993-02-08",
"episode_number": 52,
"episode_type": "standard",
"id": 1029152,
"name": "Birds of a Feather",
"order": 18,
"overview": "Veronica Vreeland, a socialite desperate to create a novel party, makes the mistake of inviting the Penguin as her guest of honor.",
"production_code": "047",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/pPkgIDmnPfCEqckBOx4e73wuw2P.jpg",
"vote_average": 7.6,
"vote_count": 13
},
{
"air_date": "1992-11-24",
"episode_number": 45,
"episode_type": "standard",
"id": 1029160,
"name": "What Is Reality?",
"order": 19,
"overview": "To prove that he has a superior mind, the Riddler lures Batman into a contest inside a virtual reality computer game.",
"production_code": "148",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/jH45yO25P0g6IJeg3QSqXonwPfj.jpg",
"vote_average": 7.2,
"vote_count": 12
},
{
"air_date": "1992-11-09",
"episode_number": 34,
"episode_type": "standard",
"id": 1029170,
"name": "I Am the Night",
"order": 20,
"overview": "On the anniversary of the death of Bruce's parents, Batman expresses doubts about whether or not he should continue his one-man war against crime.",
"production_code": "049",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/6ftZA2aFr401uAdTTAsWRHhqZ3b.jpg",
"vote_average": 8,
"vote_count": 12
},
{
"air_date": "1992-11-23",
"episode_number": 44,
"episode_type": "standard",
"id": 1029161,
"name": "Off Balance",
"order": 21,
"overview": "Batman investigates a notorious global crime cartel, The Society of Shadows, which has begun to operate in Gotham City.",
"production_code": "050",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/3q2CL2rNPGxKlFUnJ28ZiqH48gc.jpg",
"vote_average": 7.3,
"vote_count": 12
},
{
"air_date": "1993-02-01",
"episode_number": 49,
"episode_type": "standard",
"id": 1029156,
"name": "The Man Who Killed Batman",
"order": 22,
"overview": "Sidney Debris, a small-time mobster, earns the hatred of all of Batman's enemies when he claims to have accidentally killed Batman during a brawl.",
"production_code": "151",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/uTwFqAFsN77fgdAwOmtukvTnH1X.jpg",
"vote_average": 7.8,
"vote_count": 12
},
{
"air_date": "1993-09-15",
"episode_number": 3,
"episode_type": "standard",
"id": 986222,
"name": "Mudslide",
"order": 23,
"overview": "When Clayface's clay-like body begins to disintegrate, he is forced to steal to pay for the expensive ingredients of a possible remedy.",
"production_code": "052",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/kCRvomd7ZCIf8zBbcBAvPwvGwEM.jpg",
"vote_average": 7.7,
"vote_count": 13
},
{
"air_date": "1993-09-17",
"episode_number": 5,
"episode_type": "standard",
"id": 986223,
"name": "Paging the Crime Doctor",
"order": 24,
"overview": "Crime boss Rupert Thorne forces his older brother, a doctor, to perform delicate surgery on Rupert--and kidnaps Dr. Leslie Thompkins to assist.",
"production_code": "053",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/ovbpLylXI5ZwFqIi3CNC40IVI8T.jpg",
"vote_average": 7.4,
"vote_count": 13
},
{
"air_date": "1993-02-02",
"episode_number": 50,
"episode_type": "standard",
"id": 1029155,
"name": "Zatanna",
"order": 25,
"overview": "When glamorous female magician Zatanna is framed for a robbery during her act, Batman comes to her defense.",
"production_code": "054",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/znG5EtvUyLMpysTlObwd66dWQGW.jpg",
"vote_average": 7.1,
"vote_count": 14
},
{
"air_date": "1993-01-24",
"episode_number": 48,
"episode_type": "standard",
"id": 1029157,
"name": "The Mechanic",
"order": 26,
"overview": "While engaged in a high-speed chase, the Penguin's gang escapes and the Batmobile is virtually demolished.",
"production_code": "055",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/2YSbz6UfDosVZxP5rplPWLACK3H.jpg",
"vote_average": 7.3,
"vote_count": 12
},
{
"air_date": "1993-01-18",
"episode_number": 47,
"episode_type": "standard",
"id": 1029158,
"name": "Harley and Ivy",
"order": 27,
"overview": "Harley Quinn has broken off with the Joker and teams up with Poison Ivy. Together they wreck havoc on Gotham and now Joker wants a piece of the action.",
"production_code": "156",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/uSB2zgmcCYDgrKnNsGBBtS1zSTu.jpg",
"vote_average": 7.4,
"vote_count": 14
}
],
"id": "5acff4649251417b6c003b5d",
"locked": true,
"name": "Season 2",
"order": 2
},
{
"episodes": [
{
"air_date": "1993-09-13",
"episode_number": 1,
"episode_type": "standard",
"id": 1029137,
"name": "Shadow of the Bat (1)",
"order": 0,
"overview": "Commissioner Gordon is rumored to be taking bribes from Rupert Thorne. His daughter Barbara sets out to prove that he's innocent.",
"production_code": "157",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/9JF2ULFBbFYtgvxKR9lKRvIp2rL.jpg",
"vote_average": 7.5,
"vote_count": 13
},
{
"air_date": "1993-09-14",
"episode_number": 2,
"episode_type": "standard",
"id": 1029135,
"name": "Shadow of the Bat (2)",
"order": 1,
"overview": "Robin, who discovers that Gil Mason is in league with a powerful crime boss, encounters Batgirl as she tries to clear her father's name.",
"production_code": "158",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/lCaipZkndnSNNOeaOh88GNqHfOJ.jpg",
"vote_average": 7.4,
"vote_count": 13
},
{
"air_date": "1993-02-22",
"episode_number": 54,
"episode_type": "standard",
"id": 1029149,
"name": "Blind as a Bat",
"order": 2,
"overview": "Bruce Wayne is temporarily blinded when the Penguin steals a new police helicopter with weaponry developed by WayneTech.",
"production_code": "1",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/mgrt32lWKtcaniy6uCwECczzmC.jpg",
"vote_average": 7.3,
"vote_count": 12
},
{
"air_date": "1993-05-03",
"episode_number": 57,
"episode_type": "standard",
"id": 1029147,
"name": "The Demon's Quest (1)",
"order": 3,
"overview": "When Robin is mysteriously abducted, Batman's search leads him to meet Ra's Al Ghul, leader of The Society of Shadows, whose daughter, Talia, has also been kidnapped.",
"production_code": "160",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/9L8HRcwNfJOKTcgg1wG9eBHksoz.jpg",
"vote_average": 7.4,
"vote_count": 12
},
{
"air_date": "1993-05-04",
"episode_number": 58,
"episode_type": "standard",
"id": 1029146,
"name": "The Demon's Quest (2)",
"order": 4,
"overview": "Batman discovers Ra's Al Ghul's plan to flood Earth with chemicals and return it to a lush, green planet--which will destroy all life that now exists!",
"production_code": "161",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/ynzbbJfOJJ1smSXanh4sItkGUHp.jpg",
"vote_average": 7.4,
"vote_count": 12
},
{
"air_date": "1992-11-20",
"episode_number": 43,
"episode_type": "standard",
"id": 1029162,
"name": "His Silicon Soul",
"order": 5,
"overview": "A confused robot that believes he is Batman causes problems for the real Dark Knight.",
"production_code": "060",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/vukHsg4TMc7MrjAB1W5fzaJu1Ft.jpg",
"vote_average": 7.7,
"vote_count": 12
},
{
"air_date": "1993-05-24",
"episode_number": 60,
"episode_type": "finale",
"id": 1029144,
"name": "Fire from Olympus",
"order": 6,
"overview": "Believing he's the reincarnation of Zeus, a mad shipping magnate mounts a stolen electron cannon atop his penthouse to shoot 'lightning bolts' at the 'wicked mortals' below.",
"production_code": "163",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/bhXu5jBtANRcJCDyQo1mo4LEeun.jpg",
"vote_average": 6.6,
"vote_count": 13
},
{
"air_date": "1993-05-10",
"episode_number": 59,
"episode_type": "standard",
"id": 1029145,
"name": "Read My Lips",
"order": 7,
"overview": "Batman investigates a series of baffling crimes and discovers that the crime czar is a wooden dummy, manipulated by a mild-mannered man called the Ventriloquist.",
"production_code": "164",
"runtime": 22,
"season_number": 1,
"show_id": 2098,
"still_path": "/rCZiQpMiWFJFigxyIylQnOo19Aw.jpg",
"vote_average": 7.6,
"vote_count": 12
},
{
"air_date": "1993-09-16",
"episode_number": 4,
"episode_type": "standard",
"id": 1029134,
"name": "The Worry Men",
"order": 8,
"overview": "Wealthy socialite Veronica Vreeland returns from Central America bringing tiny handmade dolls for all her friends--but the dolls are controlled by the Mad Hatter!",
"production_code": "065",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/tw0YY4ncuFQe8mgpVlh2ySbX07t.jpg",
"vote_average": 7.3,
"vote_count": 14
},
{
"air_date": "1994-05-03",
"episode_number": 7,
"episode_type": "standard",
"id": 1029139,
"name": "Sideshow",
"order": 9,
"overview": "Killer Croc escapes when being transported to prison and hides out with a group of circus people.",
"production_code": "166",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/vCQn7W2elQoeR03urxIHnRBpNJj.jpg",
"vote_average": 7.6,
"vote_count": 12
},
{
"air_date": "1995-09-14",
"episode_number": 4,
"episode_type": "standard",
"id": 1044566,
"name": "A Bullet for Bullock",
"order": 10,
"overview": "Batman helps Detective Harvey Bullock who appears to be the target of someone's revenge.",
"production_code": "067",
"runtime": 22,
"season_number": 4,
"show_id": 2098,
"still_path": "/edVTckE6h0Yvzuazm006xpiAoJP.jpg",
"vote_average": 7.5,
"vote_count": 11
},
{
"air_date": "1994-05-16",
"episode_number": 9,
"episode_type": "standard",
"id": 1029141,
"name": "Trial",
"order": 11,
"overview": "All of Batman's enemies team together to put Batman on trial and send him to Arkham Asylum.",
"production_code": "168",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/vCzZVPCymYa339h0ZqYHMRCMrUi.jpg",
"vote_average": 8.1,
"vote_count": 12
},
{
"air_date": "1994-05-09",
"episode_number": 8,
"episode_type": "standard",
"id": 1029140,
"name": "Avatar",
"order": 12,
"overview": "Ra's Al Ghul steals a sacred Egyptian scroll that Bruce Wayne donated to the Gotham museum.",
"production_code": "069",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/bn9O5a1G5kobOzOBW7SCY0A9uvs.jpg",
"vote_average": 7.1,
"vote_count": 12
},
{
"air_date": "1994-05-02",
"episode_number": 6,
"episode_type": "standard",
"id": 1029138,
"name": "House & Garden",
"order": 13,
"overview": "Poison Ivy appears to have stopped her crime spree when she marries a doctor with two sons to raise. However, crimes continue occurring in the Poison Ivy style, leaving Batman to question her innocence.",
"production_code": "170",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/yxSxPDdKaVmAGhb80s3W6LZPV43.jpg",
"vote_average": 7.8,
"vote_count": 13
},
{
"air_date": "1995-09-11",
"episode_number": 1,
"episode_type": "standard",
"id": 1044563,
"name": "The Terrible Trio",
"order": 14,
"overview": "Batman tracks three wealthy playboys who commit crimes out of boredom.",
"production_code": "071",
"runtime": 22,
"season_number": 4,
"show_id": 2098,
"still_path": "/pkTnMrFwzj2tBCcA7a63X2Iucj.jpg",
"vote_average": 6.7,
"vote_count": 12
},
{
"air_date": "1994-05-23",
"episode_number": 10,
"episode_type": "finale",
"id": 1029142,
"name": "Harlequinade",
"order": 15,
"overview": "Harley Quinn agrees to help Batman and Robin find the location of a stolen atomic bomb placed somewhere in Gotham by the Joker.",
"production_code": "172",
"runtime": 22,
"season_number": 2,
"show_id": 2098,
"still_path": "/21qXpiEoDXkkiPgCPx8Yjw7CU15.jpg",
"vote_average": 8.1,
"vote_count": 13
},
{
"air_date": "1994-10-08",
"episode_number": 5,
"episode_type": "standard",
"id": 1044557,
"name": "Time Out of Joint",
"order": 16,
"overview": "The Clock King plots against Mayor Hill after he steals an invention that allows him to travel at super speed.",
"production_code": "",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/uHk6Ks3RX4t0EbCRsFTTYPx4E87.jpg",
"vote_average": 7,
"vote_count": 11
},
{
"air_date": "1995-09-13",
"episode_number": 3,
"episode_type": "standard",
"id": 1044565,
"name": "Catwalk",
"order": 17,
"overview": "Catwoman's attempt to go straight runs into problems when she is enticed into one last job by the Ventriloquist.",
"production_code": "074",
"runtime": 22,
"season_number": 4,
"show_id": 2098,
"still_path": "/1ZCsUlzUD33h6cAEHE811QxxtyS.jpg",
"vote_average": 7.4,
"vote_count": 11
},
{
"air_date": "1994-09-10",
"episode_number": 1,
"episode_type": "standard",
"id": 1044553,
"name": "Bane",
"order": 18,
"overview": "Rupert Thorne hires the chemically-augmented assassin Bane to kill Batman.",
"production_code": "075",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/fFRwRNLj839I8ednBUtMgZFu4mI.jpg",
"vote_average": 7.5,
"vote_count": 12
},
{
"air_date": "1994-10-01",
"episode_number": 4,
"episode_type": "standard",
"id": 1044556,
"name": "Baby-Doll",
"order": 19,
"overview": "Baby-Doll, a former child star, pours out her frustrations on her TV family by kidnapping them and holding them hostage.",
"production_code": "176",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/34rU2BIRbj5qbmvdNkdnV0nKMsS.jpg",
"vote_average": 7.4,
"vote_count": 13
},
{
"air_date": "1995-09-15",
"episode_number": 5,
"episode_type": "finale",
"id": 1044567,
"name": "The Lion and the Unicorn",
"order": 20,
"overview": "Alfred, a former British spy, is called into duty and becomes of the target of the Red Claw.",
"production_code": "077",
"runtime": 22,
"season_number": 4,
"show_id": 2098,
"still_path": "/dar6GdynqqhqvzX8d0cj61RVl4X.jpg",
"vote_average": 6.8,
"vote_count": 11
},
{
"air_date": "1995-09-12",
"episode_number": 2,
"episode_type": "standard",
"id": 1044564,
"name": "Showdown",
"order": 21,
"overview": "Batman and Robin learn about the exploits of Jonah Hex an Old West crimefighter who once dealt with the immortal Ra's Al Ghul.",
"production_code": "078",
"runtime": 22,
"season_number": 4,
"show_id": 2098,
"still_path": "/sj13brwQfKpCDfI3KM6TZVTqoGN.jpg",
"vote_average": 6.8,
"vote_count": 11
},
{
"air_date": "1994-09-24",
"episode_number": 3,
"episode_type": "standard",
"id": 1044555,
"name": "Riddler's Reform",
"order": 22,
"overview": "The Riddler appears to have gone straight when he develops a new and successful puzzle based toy.",
"production_code": "079",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/t20C9Eq4SXaLJdrWXpOa4lYAY1n.jpg",
"vote_average": 7.2,
"vote_count": 12
},
{
"air_date": "1994-09-17",
"episode_number": 2,
"episode_type": "standard",
"id": 1044554,
"name": "Second Chance",
"order": 23,
"overview": "Batman and Robin are puzzled by the sudden kidnapping of Twoface, who was on his way to have his face fixed.",
"production_code": "080",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/dMB3jCWYT6pZXkgaWeStQiA8dkp.jpg",
"vote_average": 7.7,
"vote_count": 12
},
{
"air_date": "1994-10-15",
"episode_number": 6,
"episode_type": "standard",
"id": 1044558,
"name": "Harley's Holiday",
"order": 24,
"overview": "Harley gets herself into a whole mess of trouble after she steals Bruce Wayne's car and kidnaps his girlfriend.",
"production_code": "081",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/xGYNpA9DXkwuQy4jDtIBzNOA4Qj.jpg",
"vote_average": 7.9,
"vote_count": 13
},
{
"air_date": "1994-11-19",
"episode_number": 9,
"episode_type": "standard",
"id": 1044561,
"name": "Lock-Up",
"order": 25,
"overview": "Lyle Bolton Arkam's former chief of security becomes the vigilante Lock-up and kidnaps Commissioner Gordon and Mayor Hill seeing them as the cause of rampant crime in Gotham City.",
"production_code": "082",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/xHnTgRF69yRgV7y50qcg1dIy3I7.jpg",
"vote_average": 7.4,
"vote_count": 12
},
{
"air_date": "1994-11-05",
"episode_number": 7,
"episode_type": "standard",
"id": 1044559,
"name": "Make 'Em Laugh",
"order": 26,
"overview": "Batman and Robin investigate a string of crimes committed by a group of famous comedians brainwashed by the Joker.",
"production_code": "083",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/oDnRibTjEWPSMUR92wF1rnttv8h.jpg",
"vote_average": 7.3,
"vote_count": 12
},
{
"air_date": "1994-11-26",
"episode_number": 10,
"episode_type": "finale",
"id": 1044562,
"name": "Deep Freeze",
"order": 27,
"overview": "Aging billionaire Grant Walker breaks Mr. Freeze out of prison so he can use the scientist's knowledge to can gain immortality and cover the world in a new ice age.",
"production_code": "084",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/pSAHYvC4pye2ijiQoAW8KPOY4Kq.jpg",
"vote_average": 7.5,
"vote_count": 13
},
{
"air_date": "1994-11-12",
"episode_number": 8,
"episode_type": "standard",
"id": 1044560,
"name": "Batgirl Returns",
"order": 28,
"overview": "Batgirl and Catwoman team up to investigate the theft of a rare cat statue.",
"production_code": "085",
"runtime": 22,
"season_number": 3,
"show_id": 2098,
"still_path": "/7kXJKll2ALqiksPxRIoB5wU90dv.jpg",
"vote_average": 6.9,
"vote_count": 12
}
],
"id": "5ad0000b0e0a267498004def",
"locked": true,
"name": "Season 3",
"order": 3
}
]
Example:
"5acfef37c3a36842e400333f"
Example:
"DVD Order"
Example:
3
Was this page helpful?
⌘I