Recommendations
curl --request GET \
--url 'https://api.themoviedb.org/3/tv/{series_id}/recommendations?%7B%7Bkey%7D%7D='import requests
url = "https://api.themoviedb.org/3/tv/{series_id}/recommendations?%7B%7Bkey%7D%7D="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/tv/{series_id}/recommendations?%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/{series_id}/recommendations?%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/{series_id}/recommendations?%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/{series_id}/recommendations?%7B%7Bkey%7D%7D=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/tv/{series_id}/recommendations?%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{
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/dAepkmD4vdfhS82r2OIqF1nwGR5.jpg",
"first_air_date": "2009-09-22",
"genre_ids": [
10759,
18,
80,
9648
],
"id": 17610,
"media_type": "tv",
"name": "NCIS: Los Angeles",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "NCIS: Los Angeles",
"overview": "The exploits of the Los Angeles–based Office of Special Projects (OSP), an elite division of the Naval Criminal Investigative Service that specializes in undercover assignments.",
"popularity": 196.493,
"poster_path": "/TIIgcznwNfNr3KOZvxn26eKV99.jpg",
"vote_average": 7.548,
"vote_count": 1155
},
{
"adult": false,
"backdrop_path": "/q10iri9a2BruHhVESNWW31yFHCJ.jpg",
"first_air_date": "2014-09-23",
"genre_ids": [
10759,
18,
35
],
"id": 61387,
"media_type": "tv",
"name": "NCIS: New Orleans",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "NCIS: New Orleans",
"overview": "A drama about the local field office that investigates criminal cases affecting military personnel in The Big Easy, a city known for its music, entertainment and decadence.",
"popularity": 89.189,
"poster_path": "/1WJJUUZODmRTcFydLDBUtiztL6x.jpg",
"vote_average": 7.327,
"vote_count": 426
},
{
"adult": false,
"backdrop_path": "/ej5VNvBy4VqCqsuamY4oe4EiwFb.jpg",
"first_air_date": "2010-09-20",
"genre_ids": [
80,
18,
10759
],
"id": 32798,
"media_type": "tv",
"name": "Hawaii Five-0",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Hawaii Five-0",
"overview": "Steve McGarrett returns home to Oahu, in order to find his father's killer. The governor offers him the chance to run his own task force (Five-0). Steve's team is joined by Chin Ho Kelly, Danny \"Danno\" Williams, and Kono Kalakaua.",
"popularity": 253.278,
"poster_path": "/sIdCKlmM2nU4akIvFQaAIiU8YES.jpg",
"vote_average": 7.747,
"vote_count": 1722
},
{
"adult": false,
"backdrop_path": "/rxnschfLZf3ZPRiIa6oBBMtY7hF.jpg",
"first_air_date": "1995-09-23",
"genre_ids": [
18,
10759,
80
],
"id": 4376,
"media_type": "tv",
"name": "JAG",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "JAG",
"overview": "Harmon \"Harm\" Rabb Jr. is a former pilot turned lawyer working for the military's JAG (Judge Advocate General) division, the elite legal wing of officers that prosecutes and defends those accused of military-related crimes. He works closely with Lt. Col. Sarah Mackenzie, and together they do what needs to be done to find the truth.",
"popularity": 170.154,
"poster_path": "/zPyHpkJZ5O08lbgrQQIROXtb3xz.jpg",
"vote_average": 7.31,
"vote_count": 348
},
{
"adult": false,
"backdrop_path": "/vZePKXaSO3537aJTxifE3Rrwobb.jpg",
"first_air_date": "2000-10-06",
"genre_ids": [
80,
18,
9648
],
"id": 1431,
"media_type": "tv",
"name": "CSI: Crime Scene Investigation",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "CSI: Crime Scene Investigation",
"overview": "A Las Vegas team of forensic investigators are trained to solve criminal cases by scouring the crime scene, collecting irrefutable evidence and finding the missing pieces that solve the mystery.",
"popularity": 325.165,
"poster_path": "/i5hmoRjHNWady4AtAGICTUXknKH.jpg",
"vote_average": 7.625,
"vote_count": 1246
},
{
"adult": false,
"backdrop_path": "/65Y6PweSvQ1OOFBzStybjipURRP.jpg",
"first_air_date": "2005-09-22",
"genre_ids": [
80,
18,
9648
],
"id": 4057,
"media_type": "tv",
"name": "Criminal Minds",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Criminal Minds",
"overview": "An elite team of FBI profilers analyze the country's most twisted criminal minds, anticipating their next moves before they strike again. The Behavioral Analysis Unit's most experienced agent is David Rossi, a founding member of the BAU who returns to help the team solve new cases.",
"popularity": 492.029,
"poster_path": "/wLMQebhTApmn4F6Fzg6FovdwVvL.jpg",
"vote_average": 8.31,
"vote_count": 3741
},
{
"adult": false,
"backdrop_path": "/2sjy8Tu8PJGFQI4Foz4682qk8Mw.jpg",
"first_air_date": "2002-09-23",
"genre_ids": [
18,
9648,
80
],
"id": 1620,
"media_type": "tv",
"name": "CSI: Miami",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "CSI: Miami",
"overview": "CSI: Miami follows Crime Scene Investigators working for the Miami-Dade Police Department as they use physical evidence, similar to their Las Vegas counterparts, to solve grisly murders. The series mixes deduction, gritty subject matter, and character-driven drama in the same vein as the original series in the CSI franchise, except that the Miami CSIs are cops first, scientists second.",
"popularity": 249.938,
"poster_path": "/pNW64pjaHvf6purNaFhq4SHYRfl.jpg",
"vote_average": 7.726,
"vote_count": 1595
},
{
"adult": false,
"backdrop_path": "/uj2ZzCO1p5ZxvcRo7wtXtKebLxS.jpg",
"first_air_date": "1999-09-20",
"genre_ids": [
80,
18,
9648
],
"id": 2734,
"media_type": "tv",
"name": "Law & Order: Special Victims Unit",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Law & Order: Special Victims Unit",
"overview": "In the criminal justice system, sexually-based offenses are considered especially heinous. In New York City, the dedicated detectives who investigate these vicious felonies are members of an elite squad known as the Special Victims Unit. These are their stories.",
"popularity": 709.324,
"poster_path": "/abWOCrIo7bbAORxcQyOFNJdnnmR.jpg",
"vote_average": 7.933,
"vote_count": 3836
},
{
"adult": false,
"backdrop_path": "/2eIlCirgcvEwmCSYh2wDfz5Sxvz.jpg",
"first_air_date": "2013-09-23",
"genre_ids": [
18,
80,
9648
],
"id": 46952,
"media_type": "tv",
"name": "The Blacklist",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "The Blacklist",
"overview": "Raymond \"Red\" Reddington, one of the FBI's most wanted fugitives, surrenders in person at FBI Headquarters in Washington, D.C. He claims that he and the FBI have the same interests: bringing down dangerous criminals and terrorists. In the last two decades, he's made a list of criminals and terrorists that matter the most but the FBI cannot find because it does not know they exist. Reddington calls this \"The Blacklist\". Reddington will co-operate, but insists that he will speak only to Elizabeth Keen, a rookie FBI profiler.",
"popularity": 517.539,
"poster_path": "/r935SMphvXppx5bJjbIBNx02fwc.jpg",
"vote_average": 7.6,
"vote_count": 3160
},
{
"adult": false,
"backdrop_path": "/5XNpuBJBzayiqH3coydcJphMZLO.jpg",
"first_air_date": "2018-09-24",
"genre_ids": [
10759,
18,
80
],
"id": 79593,
"media_type": "tv",
"name": "Magnum P.I.",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Magnum P.I.",
"overview": "Thomas Magnum, a decorated former Navy SEAL, returns home from Afghanistan and applies his military skills to become a private investigator in Hawaii taking jobs no one else will—with the help of fellow vets T.C. Calvin and Rick Wright, and former MI:6 agent, Juliet Higgins.",
"popularity": 127.4,
"poster_path": "/srJGLcgZqjo6Ojt62IbGaO8TurC.jpg",
"vote_average": 7.6,
"vote_count": 284
},
{
"adult": false,
"backdrop_path": "/edhROlXRob3TopjWJ5898GSvQpI.jpg",
"first_air_date": "2003-01-23",
"genre_ids": [
99
],
"id": 1428,
"media_type": "tv",
"name": "MythBusters",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "MythBusters",
"overview": "MythBusters is a science entertainment television program created and produced by Australia's Beyond Television Productions for the Discovery Channel. The show's hosts, special effects experts Adam Savage and Jamie Hyneman, use elements of the scientific method to test the validity of rumors, myths, movie scenes, adages, Internet videos, and news stories.",
"popularity": 104.586,
"poster_path": "/9MxhqYvwx8FSb5cRWUWEDfpWSfo.jpg",
"vote_average": 7.8,
"vote_count": 545
},
{
"adult": false,
"backdrop_path": "/goDtZCB5pFIuuSfYDvApe6iXTID.jpg",
"first_air_date": "2010-09-24",
"genre_ids": [
80,
18
],
"id": 32692,
"media_type": "tv",
"name": "Blue Bloods",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Blue Bloods",
"overview": "A drama about a multi-generational family of cops dedicated to New York City law enforcement. Frank Reagan is the New York Police Commissioner and heads both the police force and the Reagan brood. He runs his department as diplomatically as he runs his family, even when dealing with the politics that plagued his unapologetically bold father, Henry, during his stint as Chief.",
"popularity": 290.779,
"poster_path": "/q1WlrxnCvNhBjJ4N7V0JQXjnIBN.jpg",
"vote_average": 7.814,
"vote_count": 883
},
{
"adult": false,
"backdrop_path": "/4BrWdbv2Cqe0zLqvNzkoednZQAb.jpg",
"first_air_date": "2020-01-07",
"genre_ids": [
80,
18
],
"id": 94372,
"media_type": "tv",
"name": "FBI: Most Wanted",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "FBI: Most Wanted",
"overview": "The Fugitive Task Force relentlessly tracks and captures the notorious criminals on the Bureau's Most Wanted list. Seasoned agents oversee the highly skilled team that functions as a mobile undercover unit that is always out in the field, pursuing those who are most desperate to elude justice.",
"popularity": 190.416,
"poster_path": "/uwTNBqFrEur3EtK8ofWbtGXMQOP.jpg",
"vote_average": 7.7,
"vote_count": 382
},
{
"adult": false,
"backdrop_path": "/5j8IF8gWOTw2WgxYYvrAlGf9eJ6.jpg",
"first_air_date": "2021-09-20",
"genre_ids": [
80,
18
],
"id": 124271,
"media_type": "tv",
"name": "NCIS: Hawai'i",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "NCIS: Hawai'i",
"overview": "Jane Tennant, the first female Special Agent in Charge of NCIS Pearl Harbor, and her unwavering team of specialists balance duty to family and country while investigating high-stakes crimes involving military personnel, national security and the mysteries of the sun-drenched island paradise itself.",
"popularity": 68.876,
"poster_path": "/4R8xtDx2ge0GjEOnEwoR8V8X82q.jpg",
"vote_average": 7.862,
"vote_count": 282
},
{
"adult": false,
"backdrop_path": "/r0Q6eeN9L1ORL9QsV0Sg8ZV3vnv.jpg",
"first_air_date": "2004-11-16",
"genre_ids": [
18,
9648,
35
],
"id": 1408,
"media_type": "tv",
"name": "House",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "House",
"overview": "Dr. Gregory House, a drug-addicted, unconventional, misanthropic medical genius, leads a team of diagnosticians at the fictional Princeton–Plainsboro Teaching Hospital in New Jersey.",
"popularity": 569.295,
"poster_path": "/3Cz7ySOQJmqiuTdrc6CY0r65yDI.jpg",
"vote_average": 8.589,
"vote_count": 6585
},
{
"adult": false,
"backdrop_path": "/suzHOUQwRYq76MGk62v5pJIqCyi.jpg",
"first_air_date": "2012-04-05",
"genre_ids": [
18
],
"id": 39269,
"media_type": "tv",
"name": "Scandal",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Scandal",
"overview": "Everyone has secrets and Olivia Pope has dedicated her life to protecting and defending the public images of the elite by keeping those secrets under wraps. Pope and her team are at the top of their game when it comes to getting the job done for their clients, but it becomes apparent that these \"gladiators in suits,\" who specialize in fixing the lives of other people, have trouble fixing those closest at hand -- their own.",
"popularity": 114.956,
"poster_path": "/4XmF8PMSqtHCGNoL15oHbjr5ZuO.jpg",
"vote_average": 7.153,
"vote_count": 537
},
{
"adult": false,
"backdrop_path": "/v2moumGovVAmDASYkjakIl2WrOM.jpg",
"first_air_date": "2016-09-23",
"genre_ids": [
18,
10759
],
"id": 67133,
"media_type": "tv",
"name": "MacGyver",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "MacGyver",
"overview": "20-something Angus MacGyver creates a clandestine organization where he uses his knack for solving problems in unconventional ways to help prevent disasters from happening.",
"popularity": 124.12,
"poster_path": "/2zAogx9dmSAu2HYxbWzHe4ZaNY5.jpg",
"vote_average": 7.287,
"vote_count": 914
},
{
"adult": false,
"backdrop_path": "/e9n87p3Ax67spq3eUgLB6rjIEow.jpg",
"first_air_date": "2005-09-13",
"genre_ids": [
80,
18
],
"id": 1911,
"media_type": "tv",
"name": "Bones",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Bones",
"overview": "Dr. Temperance Brennan and her colleagues at the Jeffersonian's Medico-Legal Lab assist Special Agent Seeley Booth with murder investigations when the remains are so badly decomposed, burned or destroyed that the standard identification methods are useless.",
"popularity": 366.143,
"poster_path": "/eyTu5c8LniVciRZIOSHTvvkkgJa.jpg",
"vote_average": 8.228,
"vote_count": 3184
},
{
"adult": false,
"backdrop_path": "/8693rGsfkROQjiwlJD8O2WQV1Et.jpg",
"first_air_date": "1984-01-22",
"genre_ids": [
10759,
10765
],
"id": 2119,
"media_type": "tv",
"name": "Airwolf",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Airwolf",
"overview": "As part of a deal with an intelligence agency to look for his missing brother, a renegade pilot goes on missions with an advanced battle helicopter.",
"popularity": 82.152,
"poster_path": "/4PAN7zPqmR9b73een97WkxqCTQN.jpg",
"vote_average": 7.5,
"vote_count": 436
},
{
"adult": false,
"backdrop_path": "/4uWvmON2pqDJtpPAsHMggdDFFrn.jpg",
"first_air_date": "1990-09-13",
"genre_ids": [
80,
18
],
"id": 549,
"media_type": "tv",
"name": "Law & Order",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Law & Order",
"overview": "In cases ripped from the headlines, police investigate serious and often deadly crimes, weighing the evidence and questioning the suspects until someone is taken into custody. The district attorney's office then builds a case to convict the perpetrator by proving the person guilty beyond a reasonable doubt. Working together, these expert teams navigate all sides of the complex criminal justice system to make New York a safer place.",
"popularity": 363.642,
"poster_path": "/6vFL8S6Cci8s7SHWXz60xOisGBC.jpg",
"vote_average": 7.4,
"vote_count": 581
}
],
"total_pages": 2,
"total_results": 40
}TV Series
Recommendations
This endpoint is used to get a list of recommendations similar to the series.
GET
/
3
/
tv
/
{series_id}
/
recommendations
Recommendations
curl --request GET \
--url 'https://api.themoviedb.org/3/tv/{series_id}/recommendations?%7B%7Bkey%7D%7D='import requests
url = "https://api.themoviedb.org/3/tv/{series_id}/recommendations?%7B%7Bkey%7D%7D="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/tv/{series_id}/recommendations?%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/{series_id}/recommendations?%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/{series_id}/recommendations?%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/{series_id}/recommendations?%7B%7Bkey%7D%7D=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/tv/{series_id}/recommendations?%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{
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/dAepkmD4vdfhS82r2OIqF1nwGR5.jpg",
"first_air_date": "2009-09-22",
"genre_ids": [
10759,
18,
80,
9648
],
"id": 17610,
"media_type": "tv",
"name": "NCIS: Los Angeles",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "NCIS: Los Angeles",
"overview": "The exploits of the Los Angeles–based Office of Special Projects (OSP), an elite division of the Naval Criminal Investigative Service that specializes in undercover assignments.",
"popularity": 196.493,
"poster_path": "/TIIgcznwNfNr3KOZvxn26eKV99.jpg",
"vote_average": 7.548,
"vote_count": 1155
},
{
"adult": false,
"backdrop_path": "/q10iri9a2BruHhVESNWW31yFHCJ.jpg",
"first_air_date": "2014-09-23",
"genre_ids": [
10759,
18,
35
],
"id": 61387,
"media_type": "tv",
"name": "NCIS: New Orleans",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "NCIS: New Orleans",
"overview": "A drama about the local field office that investigates criminal cases affecting military personnel in The Big Easy, a city known for its music, entertainment and decadence.",
"popularity": 89.189,
"poster_path": "/1WJJUUZODmRTcFydLDBUtiztL6x.jpg",
"vote_average": 7.327,
"vote_count": 426
},
{
"adult": false,
"backdrop_path": "/ej5VNvBy4VqCqsuamY4oe4EiwFb.jpg",
"first_air_date": "2010-09-20",
"genre_ids": [
80,
18,
10759
],
"id": 32798,
"media_type": "tv",
"name": "Hawaii Five-0",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Hawaii Five-0",
"overview": "Steve McGarrett returns home to Oahu, in order to find his father's killer. The governor offers him the chance to run his own task force (Five-0). Steve's team is joined by Chin Ho Kelly, Danny \"Danno\" Williams, and Kono Kalakaua.",
"popularity": 253.278,
"poster_path": "/sIdCKlmM2nU4akIvFQaAIiU8YES.jpg",
"vote_average": 7.747,
"vote_count": 1722
},
{
"adult": false,
"backdrop_path": "/rxnschfLZf3ZPRiIa6oBBMtY7hF.jpg",
"first_air_date": "1995-09-23",
"genre_ids": [
18,
10759,
80
],
"id": 4376,
"media_type": "tv",
"name": "JAG",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "JAG",
"overview": "Harmon \"Harm\" Rabb Jr. is a former pilot turned lawyer working for the military's JAG (Judge Advocate General) division, the elite legal wing of officers that prosecutes and defends those accused of military-related crimes. He works closely with Lt. Col. Sarah Mackenzie, and together they do what needs to be done to find the truth.",
"popularity": 170.154,
"poster_path": "/zPyHpkJZ5O08lbgrQQIROXtb3xz.jpg",
"vote_average": 7.31,
"vote_count": 348
},
{
"adult": false,
"backdrop_path": "/vZePKXaSO3537aJTxifE3Rrwobb.jpg",
"first_air_date": "2000-10-06",
"genre_ids": [
80,
18,
9648
],
"id": 1431,
"media_type": "tv",
"name": "CSI: Crime Scene Investigation",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "CSI: Crime Scene Investigation",
"overview": "A Las Vegas team of forensic investigators are trained to solve criminal cases by scouring the crime scene, collecting irrefutable evidence and finding the missing pieces that solve the mystery.",
"popularity": 325.165,
"poster_path": "/i5hmoRjHNWady4AtAGICTUXknKH.jpg",
"vote_average": 7.625,
"vote_count": 1246
},
{
"adult": false,
"backdrop_path": "/65Y6PweSvQ1OOFBzStybjipURRP.jpg",
"first_air_date": "2005-09-22",
"genre_ids": [
80,
18,
9648
],
"id": 4057,
"media_type": "tv",
"name": "Criminal Minds",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Criminal Minds",
"overview": "An elite team of FBI profilers analyze the country's most twisted criminal minds, anticipating their next moves before they strike again. The Behavioral Analysis Unit's most experienced agent is David Rossi, a founding member of the BAU who returns to help the team solve new cases.",
"popularity": 492.029,
"poster_path": "/wLMQebhTApmn4F6Fzg6FovdwVvL.jpg",
"vote_average": 8.31,
"vote_count": 3741
},
{
"adult": false,
"backdrop_path": "/2sjy8Tu8PJGFQI4Foz4682qk8Mw.jpg",
"first_air_date": "2002-09-23",
"genre_ids": [
18,
9648,
80
],
"id": 1620,
"media_type": "tv",
"name": "CSI: Miami",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "CSI: Miami",
"overview": "CSI: Miami follows Crime Scene Investigators working for the Miami-Dade Police Department as they use physical evidence, similar to their Las Vegas counterparts, to solve grisly murders. The series mixes deduction, gritty subject matter, and character-driven drama in the same vein as the original series in the CSI franchise, except that the Miami CSIs are cops first, scientists second.",
"popularity": 249.938,
"poster_path": "/pNW64pjaHvf6purNaFhq4SHYRfl.jpg",
"vote_average": 7.726,
"vote_count": 1595
},
{
"adult": false,
"backdrop_path": "/uj2ZzCO1p5ZxvcRo7wtXtKebLxS.jpg",
"first_air_date": "1999-09-20",
"genre_ids": [
80,
18,
9648
],
"id": 2734,
"media_type": "tv",
"name": "Law & Order: Special Victims Unit",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Law & Order: Special Victims Unit",
"overview": "In the criminal justice system, sexually-based offenses are considered especially heinous. In New York City, the dedicated detectives who investigate these vicious felonies are members of an elite squad known as the Special Victims Unit. These are their stories.",
"popularity": 709.324,
"poster_path": "/abWOCrIo7bbAORxcQyOFNJdnnmR.jpg",
"vote_average": 7.933,
"vote_count": 3836
},
{
"adult": false,
"backdrop_path": "/2eIlCirgcvEwmCSYh2wDfz5Sxvz.jpg",
"first_air_date": "2013-09-23",
"genre_ids": [
18,
80,
9648
],
"id": 46952,
"media_type": "tv",
"name": "The Blacklist",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "The Blacklist",
"overview": "Raymond \"Red\" Reddington, one of the FBI's most wanted fugitives, surrenders in person at FBI Headquarters in Washington, D.C. He claims that he and the FBI have the same interests: bringing down dangerous criminals and terrorists. In the last two decades, he's made a list of criminals and terrorists that matter the most but the FBI cannot find because it does not know they exist. Reddington calls this \"The Blacklist\". Reddington will co-operate, but insists that he will speak only to Elizabeth Keen, a rookie FBI profiler.",
"popularity": 517.539,
"poster_path": "/r935SMphvXppx5bJjbIBNx02fwc.jpg",
"vote_average": 7.6,
"vote_count": 3160
},
{
"adult": false,
"backdrop_path": "/5XNpuBJBzayiqH3coydcJphMZLO.jpg",
"first_air_date": "2018-09-24",
"genre_ids": [
10759,
18,
80
],
"id": 79593,
"media_type": "tv",
"name": "Magnum P.I.",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Magnum P.I.",
"overview": "Thomas Magnum, a decorated former Navy SEAL, returns home from Afghanistan and applies his military skills to become a private investigator in Hawaii taking jobs no one else will—with the help of fellow vets T.C. Calvin and Rick Wright, and former MI:6 agent, Juliet Higgins.",
"popularity": 127.4,
"poster_path": "/srJGLcgZqjo6Ojt62IbGaO8TurC.jpg",
"vote_average": 7.6,
"vote_count": 284
},
{
"adult": false,
"backdrop_path": "/edhROlXRob3TopjWJ5898GSvQpI.jpg",
"first_air_date": "2003-01-23",
"genre_ids": [
99
],
"id": 1428,
"media_type": "tv",
"name": "MythBusters",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "MythBusters",
"overview": "MythBusters is a science entertainment television program created and produced by Australia's Beyond Television Productions for the Discovery Channel. The show's hosts, special effects experts Adam Savage and Jamie Hyneman, use elements of the scientific method to test the validity of rumors, myths, movie scenes, adages, Internet videos, and news stories.",
"popularity": 104.586,
"poster_path": "/9MxhqYvwx8FSb5cRWUWEDfpWSfo.jpg",
"vote_average": 7.8,
"vote_count": 545
},
{
"adult": false,
"backdrop_path": "/goDtZCB5pFIuuSfYDvApe6iXTID.jpg",
"first_air_date": "2010-09-24",
"genre_ids": [
80,
18
],
"id": 32692,
"media_type": "tv",
"name": "Blue Bloods",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Blue Bloods",
"overview": "A drama about a multi-generational family of cops dedicated to New York City law enforcement. Frank Reagan is the New York Police Commissioner and heads both the police force and the Reagan brood. He runs his department as diplomatically as he runs his family, even when dealing with the politics that plagued his unapologetically bold father, Henry, during his stint as Chief.",
"popularity": 290.779,
"poster_path": "/q1WlrxnCvNhBjJ4N7V0JQXjnIBN.jpg",
"vote_average": 7.814,
"vote_count": 883
},
{
"adult": false,
"backdrop_path": "/4BrWdbv2Cqe0zLqvNzkoednZQAb.jpg",
"first_air_date": "2020-01-07",
"genre_ids": [
80,
18
],
"id": 94372,
"media_type": "tv",
"name": "FBI: Most Wanted",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "FBI: Most Wanted",
"overview": "The Fugitive Task Force relentlessly tracks and captures the notorious criminals on the Bureau's Most Wanted list. Seasoned agents oversee the highly skilled team that functions as a mobile undercover unit that is always out in the field, pursuing those who are most desperate to elude justice.",
"popularity": 190.416,
"poster_path": "/uwTNBqFrEur3EtK8ofWbtGXMQOP.jpg",
"vote_average": 7.7,
"vote_count": 382
},
{
"adult": false,
"backdrop_path": "/5j8IF8gWOTw2WgxYYvrAlGf9eJ6.jpg",
"first_air_date": "2021-09-20",
"genre_ids": [
80,
18
],
"id": 124271,
"media_type": "tv",
"name": "NCIS: Hawai'i",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "NCIS: Hawai'i",
"overview": "Jane Tennant, the first female Special Agent in Charge of NCIS Pearl Harbor, and her unwavering team of specialists balance duty to family and country while investigating high-stakes crimes involving military personnel, national security and the mysteries of the sun-drenched island paradise itself.",
"popularity": 68.876,
"poster_path": "/4R8xtDx2ge0GjEOnEwoR8V8X82q.jpg",
"vote_average": 7.862,
"vote_count": 282
},
{
"adult": false,
"backdrop_path": "/r0Q6eeN9L1ORL9QsV0Sg8ZV3vnv.jpg",
"first_air_date": "2004-11-16",
"genre_ids": [
18,
9648,
35
],
"id": 1408,
"media_type": "tv",
"name": "House",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "House",
"overview": "Dr. Gregory House, a drug-addicted, unconventional, misanthropic medical genius, leads a team of diagnosticians at the fictional Princeton–Plainsboro Teaching Hospital in New Jersey.",
"popularity": 569.295,
"poster_path": "/3Cz7ySOQJmqiuTdrc6CY0r65yDI.jpg",
"vote_average": 8.589,
"vote_count": 6585
},
{
"adult": false,
"backdrop_path": "/suzHOUQwRYq76MGk62v5pJIqCyi.jpg",
"first_air_date": "2012-04-05",
"genre_ids": [
18
],
"id": 39269,
"media_type": "tv",
"name": "Scandal",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Scandal",
"overview": "Everyone has secrets and Olivia Pope has dedicated her life to protecting and defending the public images of the elite by keeping those secrets under wraps. Pope and her team are at the top of their game when it comes to getting the job done for their clients, but it becomes apparent that these \"gladiators in suits,\" who specialize in fixing the lives of other people, have trouble fixing those closest at hand -- their own.",
"popularity": 114.956,
"poster_path": "/4XmF8PMSqtHCGNoL15oHbjr5ZuO.jpg",
"vote_average": 7.153,
"vote_count": 537
},
{
"adult": false,
"backdrop_path": "/v2moumGovVAmDASYkjakIl2WrOM.jpg",
"first_air_date": "2016-09-23",
"genre_ids": [
18,
10759
],
"id": 67133,
"media_type": "tv",
"name": "MacGyver",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "MacGyver",
"overview": "20-something Angus MacGyver creates a clandestine organization where he uses his knack for solving problems in unconventional ways to help prevent disasters from happening.",
"popularity": 124.12,
"poster_path": "/2zAogx9dmSAu2HYxbWzHe4ZaNY5.jpg",
"vote_average": 7.287,
"vote_count": 914
},
{
"adult": false,
"backdrop_path": "/e9n87p3Ax67spq3eUgLB6rjIEow.jpg",
"first_air_date": "2005-09-13",
"genre_ids": [
80,
18
],
"id": 1911,
"media_type": "tv",
"name": "Bones",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Bones",
"overview": "Dr. Temperance Brennan and her colleagues at the Jeffersonian's Medico-Legal Lab assist Special Agent Seeley Booth with murder investigations when the remains are so badly decomposed, burned or destroyed that the standard identification methods are useless.",
"popularity": 366.143,
"poster_path": "/eyTu5c8LniVciRZIOSHTvvkkgJa.jpg",
"vote_average": 8.228,
"vote_count": 3184
},
{
"adult": false,
"backdrop_path": "/8693rGsfkROQjiwlJD8O2WQV1Et.jpg",
"first_air_date": "1984-01-22",
"genre_ids": [
10759,
10765
],
"id": 2119,
"media_type": "tv",
"name": "Airwolf",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Airwolf",
"overview": "As part of a deal with an intelligence agency to look for his missing brother, a renegade pilot goes on missions with an advanced battle helicopter.",
"popularity": 82.152,
"poster_path": "/4PAN7zPqmR9b73een97WkxqCTQN.jpg",
"vote_average": 7.5,
"vote_count": 436
},
{
"adult": false,
"backdrop_path": "/4uWvmON2pqDJtpPAsHMggdDFFrn.jpg",
"first_air_date": "1990-09-13",
"genre_ids": [
80,
18
],
"id": 549,
"media_type": "tv",
"name": "Law & Order",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Law & Order",
"overview": "In cases ripped from the headlines, police investigate serious and often deadly crimes, weighing the evidence and questioning the suspects until someone is taken into custody. The district attorney's office then builds a case to convict the perpetrator by proving the person guilty beyond a reasonable doubt. Working together, these expert teams navigate all sides of the complex criminal justice system to make New York a safer place.",
"popularity": 363.642,
"poster_path": "/6vFL8S6Cci8s7SHWXz60xOisGBC.jpg",
"vote_average": 7.4,
"vote_count": 581
}
],
"total_pages": 2,
"total_results": 40
}Authorizations
Path Parameters
integer
Example:
"4614"
Response
200 - application/json
OK
Example:
1
Show child attributes
Show child attributes
Example:
[
{
"adult": false,
"backdrop_path": "/dAepkmD4vdfhS82r2OIqF1nwGR5.jpg",
"first_air_date": "2009-09-22",
"genre_ids": [10759, 18, 80, 9648],
"id": 17610,
"media_type": "tv",
"name": "NCIS: Los Angeles",
"origin_country": ["US"],
"original_language": "en",
"original_name": "NCIS: Los Angeles",
"overview": "The exploits of the Los Angeles–based Office of Special Projects (OSP), an elite division of the Naval Criminal Investigative Service that specializes in undercover assignments.",
"popularity": 196.493,
"poster_path": "/TIIgcznwNfNr3KOZvxn26eKV99.jpg",
"vote_average": 7.548,
"vote_count": 1155
},
{
"adult": false,
"backdrop_path": "/q10iri9a2BruHhVESNWW31yFHCJ.jpg",
"first_air_date": "2014-09-23",
"genre_ids": [10759, 18, 35],
"id": 61387,
"media_type": "tv",
"name": "NCIS: New Orleans",
"origin_country": ["US"],
"original_language": "en",
"original_name": "NCIS: New Orleans",
"overview": "A drama about the local field office that investigates criminal cases affecting military personnel in The Big Easy, a city known for its music, entertainment and decadence.",
"popularity": 89.189,
"poster_path": "/1WJJUUZODmRTcFydLDBUtiztL6x.jpg",
"vote_average": 7.327,
"vote_count": 426
},
{
"adult": false,
"backdrop_path": "/ej5VNvBy4VqCqsuamY4oe4EiwFb.jpg",
"first_air_date": "2010-09-20",
"genre_ids": [80, 18, 10759],
"id": 32798,
"media_type": "tv",
"name": "Hawaii Five-0",
"origin_country": ["US"],
"original_language": "en",
"original_name": "Hawaii Five-0",
"overview": "Steve McGarrett returns home to Oahu, in order to find his father's killer. The governor offers him the chance to run his own task force (Five-0). Steve's team is joined by Chin Ho Kelly, Danny \"Danno\" Williams, and Kono Kalakaua.",
"popularity": 253.278,
"poster_path": "/sIdCKlmM2nU4akIvFQaAIiU8YES.jpg",
"vote_average": 7.747,
"vote_count": 1722
},
{
"adult": false,
"backdrop_path": "/rxnschfLZf3ZPRiIa6oBBMtY7hF.jpg",
"first_air_date": "1995-09-23",
"genre_ids": [18, 10759, 80],
"id": 4376,
"media_type": "tv",
"name": "JAG",
"origin_country": ["US"],
"original_language": "en",
"original_name": "JAG",
"overview": "Harmon \"Harm\" Rabb Jr. is a former pilot turned lawyer working for the military's JAG (Judge Advocate General) division, the elite legal wing of officers that prosecutes and defends those accused of military-related crimes. He works closely with Lt. Col. Sarah Mackenzie, and together they do what needs to be done to find the truth.",
"popularity": 170.154,
"poster_path": "/zPyHpkJZ5O08lbgrQQIROXtb3xz.jpg",
"vote_average": 7.31,
"vote_count": 348
},
{
"adult": false,
"backdrop_path": "/vZePKXaSO3537aJTxifE3Rrwobb.jpg",
"first_air_date": "2000-10-06",
"genre_ids": [80, 18, 9648],
"id": 1431,
"media_type": "tv",
"name": "CSI: Crime Scene Investigation",
"origin_country": ["US"],
"original_language": "en",
"original_name": "CSI: Crime Scene Investigation",
"overview": "A Las Vegas team of forensic investigators are trained to solve criminal cases by scouring the crime scene, collecting irrefutable evidence and finding the missing pieces that solve the mystery.",
"popularity": 325.165,
"poster_path": "/i5hmoRjHNWady4AtAGICTUXknKH.jpg",
"vote_average": 7.625,
"vote_count": 1246
},
{
"adult": false,
"backdrop_path": "/65Y6PweSvQ1OOFBzStybjipURRP.jpg",
"first_air_date": "2005-09-22",
"genre_ids": [80, 18, 9648],
"id": 4057,
"media_type": "tv",
"name": "Criminal Minds",
"origin_country": ["US"],
"original_language": "en",
"original_name": "Criminal Minds",
"overview": "An elite team of FBI profilers analyze the country's most twisted criminal minds, anticipating their next moves before they strike again. The Behavioral Analysis Unit's most experienced agent is David Rossi, a founding member of the BAU who returns to help the team solve new cases.",
"popularity": 492.029,
"poster_path": "/wLMQebhTApmn4F6Fzg6FovdwVvL.jpg",
"vote_average": 8.31,
"vote_count": 3741
},
{
"adult": false,
"backdrop_path": "/2sjy8Tu8PJGFQI4Foz4682qk8Mw.jpg",
"first_air_date": "2002-09-23",
"genre_ids": [18, 9648, 80],
"id": 1620,
"media_type": "tv",
"name": "CSI: Miami",
"origin_country": ["US"],
"original_language": "en",
"original_name": "CSI: Miami",
"overview": "CSI: Miami follows Crime Scene Investigators working for the Miami-Dade Police Department as they use physical evidence, similar to their Las Vegas counterparts, to solve grisly murders. The series mixes deduction, gritty subject matter, and character-driven drama in the same vein as the original series in the CSI franchise, except that the Miami CSIs are cops first, scientists second.",
"popularity": 249.938,
"poster_path": "/pNW64pjaHvf6purNaFhq4SHYRfl.jpg",
"vote_average": 7.726,
"vote_count": 1595
},
{
"adult": false,
"backdrop_path": "/uj2ZzCO1p5ZxvcRo7wtXtKebLxS.jpg",
"first_air_date": "1999-09-20",
"genre_ids": [80, 18, 9648],
"id": 2734,
"media_type": "tv",
"name": "Law & Order: Special Victims Unit",
"origin_country": ["US"],
"original_language": "en",
"original_name": "Law & Order: Special Victims Unit",
"overview": "In the criminal justice system, sexually-based offenses are considered especially heinous. In New York City, the dedicated detectives who investigate these vicious felonies are members of an elite squad known as the Special Victims Unit. These are their stories.",
"popularity": 709.324,
"poster_path": "/abWOCrIo7bbAORxcQyOFNJdnnmR.jpg",
"vote_average": 7.933,
"vote_count": 3836
},
{
"adult": false,
"backdrop_path": "/2eIlCirgcvEwmCSYh2wDfz5Sxvz.jpg",
"first_air_date": "2013-09-23",
"genre_ids": [18, 80, 9648],
"id": 46952,
"media_type": "tv",
"name": "The Blacklist",
"origin_country": ["US"],
"original_language": "en",
"original_name": "The Blacklist",
"overview": "Raymond \"Red\" Reddington, one of the FBI's most wanted fugitives, surrenders in person at FBI Headquarters in Washington, D.C. He claims that he and the FBI have the same interests: bringing down dangerous criminals and terrorists. In the last two decades, he's made a list of criminals and terrorists that matter the most but the FBI cannot find because it does not know they exist. Reddington calls this \"The Blacklist\". Reddington will co-operate, but insists that he will speak only to Elizabeth Keen, a rookie FBI profiler.",
"popularity": 517.539,
"poster_path": "/r935SMphvXppx5bJjbIBNx02fwc.jpg",
"vote_average": 7.6,
"vote_count": 3160
},
{
"adult": false,
"backdrop_path": "/5XNpuBJBzayiqH3coydcJphMZLO.jpg",
"first_air_date": "2018-09-24",
"genre_ids": [10759, 18, 80],
"id": 79593,
"media_type": "tv",
"name": "Magnum P.I.",
"origin_country": ["US"],
"original_language": "en",
"original_name": "Magnum P.I.",
"overview": "Thomas Magnum, a decorated former Navy SEAL, returns home from Afghanistan and applies his military skills to become a private investigator in Hawaii taking jobs no one else will—with the help of fellow vets T.C. Calvin and Rick Wright, and former MI:6 agent, Juliet Higgins.",
"popularity": 127.4,
"poster_path": "/srJGLcgZqjo6Ojt62IbGaO8TurC.jpg",
"vote_average": 7.6,
"vote_count": 284
},
{
"adult": false,
"backdrop_path": "/edhROlXRob3TopjWJ5898GSvQpI.jpg",
"first_air_date": "2003-01-23",
"genre_ids": [99],
"id": 1428,
"media_type": "tv",
"name": "MythBusters",
"origin_country": ["US"],
"original_language": "en",
"original_name": "MythBusters",
"overview": "MythBusters is a science entertainment television program created and produced by Australia's Beyond Television Productions for the Discovery Channel. The show's hosts, special effects experts Adam Savage and Jamie Hyneman, use elements of the scientific method to test the validity of rumors, myths, movie scenes, adages, Internet videos, and news stories.",
"popularity": 104.586,
"poster_path": "/9MxhqYvwx8FSb5cRWUWEDfpWSfo.jpg",
"vote_average": 7.8,
"vote_count": 545
},
{
"adult": false,
"backdrop_path": "/goDtZCB5pFIuuSfYDvApe6iXTID.jpg",
"first_air_date": "2010-09-24",
"genre_ids": [80, 18],
"id": 32692,
"media_type": "tv",
"name": "Blue Bloods",
"origin_country": ["US"],
"original_language": "en",
"original_name": "Blue Bloods",
"overview": "A drama about a multi-generational family of cops dedicated to New York City law enforcement. Frank Reagan is the New York Police Commissioner and heads both the police force and the Reagan brood. He runs his department as diplomatically as he runs his family, even when dealing with the politics that plagued his unapologetically bold father, Henry, during his stint as Chief.",
"popularity": 290.779,
"poster_path": "/q1WlrxnCvNhBjJ4N7V0JQXjnIBN.jpg",
"vote_average": 7.814,
"vote_count": 883
},
{
"adult": false,
"backdrop_path": "/4BrWdbv2Cqe0zLqvNzkoednZQAb.jpg",
"first_air_date": "2020-01-07",
"genre_ids": [80, 18],
"id": 94372,
"media_type": "tv",
"name": "FBI: Most Wanted",
"origin_country": ["US"],
"original_language": "en",
"original_name": "FBI: Most Wanted",
"overview": "The Fugitive Task Force relentlessly tracks and captures the notorious criminals on the Bureau's Most Wanted list. Seasoned agents oversee the highly skilled team that functions as a mobile undercover unit that is always out in the field, pursuing those who are most desperate to elude justice.",
"popularity": 190.416,
"poster_path": "/uwTNBqFrEur3EtK8ofWbtGXMQOP.jpg",
"vote_average": 7.7,
"vote_count": 382
},
{
"adult": false,
"backdrop_path": "/5j8IF8gWOTw2WgxYYvrAlGf9eJ6.jpg",
"first_air_date": "2021-09-20",
"genre_ids": [80, 18],
"id": 124271,
"media_type": "tv",
"name": "NCIS: Hawai'i",
"origin_country": ["US"],
"original_language": "en",
"original_name": "NCIS: Hawai'i",
"overview": "Jane Tennant, the first female Special Agent in Charge of NCIS Pearl Harbor, and her unwavering team of specialists balance duty to family and country while investigating high-stakes crimes involving military personnel, national security and the mysteries of the sun-drenched island paradise itself.",
"popularity": 68.876,
"poster_path": "/4R8xtDx2ge0GjEOnEwoR8V8X82q.jpg",
"vote_average": 7.862,
"vote_count": 282
},
{
"adult": false,
"backdrop_path": "/r0Q6eeN9L1ORL9QsV0Sg8ZV3vnv.jpg",
"first_air_date": "2004-11-16",
"genre_ids": [18, 9648, 35],
"id": 1408,
"media_type": "tv",
"name": "House",
"origin_country": ["US"],
"original_language": "en",
"original_name": "House",
"overview": "Dr. Gregory House, a drug-addicted, unconventional, misanthropic medical genius, leads a team of diagnosticians at the fictional Princeton–Plainsboro Teaching Hospital in New Jersey.",
"popularity": 569.295,
"poster_path": "/3Cz7ySOQJmqiuTdrc6CY0r65yDI.jpg",
"vote_average": 8.589,
"vote_count": 6585
},
{
"adult": false,
"backdrop_path": "/suzHOUQwRYq76MGk62v5pJIqCyi.jpg",
"first_air_date": "2012-04-05",
"genre_ids": [18],
"id": 39269,
"media_type": "tv",
"name": "Scandal",
"origin_country": ["US"],
"original_language": "en",
"original_name": "Scandal",
"overview": "Everyone has secrets and Olivia Pope has dedicated her life to protecting and defending the public images of the elite by keeping those secrets under wraps. Pope and her team are at the top of their game when it comes to getting the job done for their clients, but it becomes apparent that these \"gladiators in suits,\" who specialize in fixing the lives of other people, have trouble fixing those closest at hand -- their own.",
"popularity": 114.956,
"poster_path": "/4XmF8PMSqtHCGNoL15oHbjr5ZuO.jpg",
"vote_average": 7.153,
"vote_count": 537
},
{
"adult": false,
"backdrop_path": "/v2moumGovVAmDASYkjakIl2WrOM.jpg",
"first_air_date": "2016-09-23",
"genre_ids": [18, 10759],
"id": 67133,
"media_type": "tv",
"name": "MacGyver",
"origin_country": ["US"],
"original_language": "en",
"original_name": "MacGyver",
"overview": "20-something Angus MacGyver creates a clandestine organization where he uses his knack for solving problems in unconventional ways to help prevent disasters from happening.",
"popularity": 124.12,
"poster_path": "/2zAogx9dmSAu2HYxbWzHe4ZaNY5.jpg",
"vote_average": 7.287,
"vote_count": 914
},
{
"adult": false,
"backdrop_path": "/e9n87p3Ax67spq3eUgLB6rjIEow.jpg",
"first_air_date": "2005-09-13",
"genre_ids": [80, 18],
"id": 1911,
"media_type": "tv",
"name": "Bones",
"origin_country": ["US"],
"original_language": "en",
"original_name": "Bones",
"overview": "Dr. Temperance Brennan and her colleagues at the Jeffersonian's Medico-Legal Lab assist Special Agent Seeley Booth with murder investigations when the remains are so badly decomposed, burned or destroyed that the standard identification methods are useless.",
"popularity": 366.143,
"poster_path": "/eyTu5c8LniVciRZIOSHTvvkkgJa.jpg",
"vote_average": 8.228,
"vote_count": 3184
},
{
"adult": false,
"backdrop_path": "/8693rGsfkROQjiwlJD8O2WQV1Et.jpg",
"first_air_date": "1984-01-22",
"genre_ids": [10759, 10765],
"id": 2119,
"media_type": "tv",
"name": "Airwolf",
"origin_country": ["US"],
"original_language": "en",
"original_name": "Airwolf",
"overview": "As part of a deal with an intelligence agency to look for his missing brother, a renegade pilot goes on missions with an advanced battle helicopter.",
"popularity": 82.152,
"poster_path": "/4PAN7zPqmR9b73een97WkxqCTQN.jpg",
"vote_average": 7.5,
"vote_count": 436
},
{
"adult": false,
"backdrop_path": "/4uWvmON2pqDJtpPAsHMggdDFFrn.jpg",
"first_air_date": "1990-09-13",
"genre_ids": [80, 18],
"id": 549,
"media_type": "tv",
"name": "Law & Order",
"origin_country": ["US"],
"original_language": "en",
"original_name": "Law & Order",
"overview": "In cases ripped from the headlines, police investigate serious and often deadly crimes, weighing the evidence and questioning the suspects until someone is taken into custody. The district attorney's office then builds a case to convict the perpetrator by proving the person guilty beyond a reasonable doubt. Working together, these expert teams navigate all sides of the complex criminal justice system to make New York a safer place.",
"popularity": 363.642,
"poster_path": "/6vFL8S6Cci8s7SHWXz60xOisGBC.jpg",
"vote_average": 7.4,
"vote_count": 581
}
]
Example:
2
Example:
40
Was this page helpful?
⌘I