Details
curl --request GET \
--url 'https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/episode/{episode_number}?%7B%7Bkey%7D%7D='import requests
url = "https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/episode/{episode_number}?%7B%7Bkey%7D%7D="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/episode/{episode_number}?%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}/season/{season_number}/episode/{episode_number}?%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}/season/{season_number}/episode/{episode_number}?%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}/season/{season_number}/episode/{episode_number}?%7B%7Bkey%7D%7D=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/episode/{episode_number}?%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{
"air_date": "2003-09-30",
"crew": [
{
"adult": false,
"credit_id": "52577678760ee36aaa52522f",
"department": "Writing",
"gender": 2,
"id": 1218788,
"job": "Writer",
"known_for_department": "Writing",
"name": "Don McGill",
"original_name": "Don McGill",
"popularity": 4,
"profile_path": "/9QMLJDoA3hYlWdOhQyTVqimPok9.jpg"
},
{
"adult": false,
"credit_id": "52577678760ee36aaa52526b",
"department": "Directing",
"gender": 2,
"id": 44131,
"job": "Director",
"known_for_department": "Directing",
"name": "Alan J. Levi",
"original_name": "Alan J. Levi",
"popularity": 3.038,
"profile_path": null
},
{
"adult": false,
"credit_id": "564bff7e9251414dcb005838",
"department": "Production",
"gender": 2,
"id": 160145,
"job": "Executive Producer",
"known_for_department": "Creator",
"name": "Donald P. Bellisario",
"original_name": "Donald P. Bellisario",
"popularity": 7.801,
"profile_path": "/8xjZRZvWfn0aaZVHlYxRUtlqJIR.jpg"
},
{
"adult": false,
"credit_id": "59cbe8c1c3a3687761015cac",
"department": "Camera",
"gender": 2,
"id": 1176289,
"job": "Director of Photography",
"known_for_department": "Camera",
"name": "William Webb",
"original_name": "William Webb",
"popularity": 0.795,
"profile_path": null
},
{
"adult": false,
"credit_id": "61572f92156cc7004566fb43",
"department": "Production",
"gender": 2,
"id": 1235200,
"job": "Producer",
"known_for_department": "Production",
"name": "David Bellisario",
"original_name": "David Bellisario",
"popularity": 2.601,
"profile_path": null
},
{
"adult": false,
"credit_id": "61572fdcec18790062c341ca",
"department": "Production",
"gender": 2,
"id": 1237600,
"job": "Producer",
"known_for_department": "Writing",
"name": "Steven D. Binder",
"original_name": "Steven D. Binder",
"popularity": 2.617,
"profile_path": "/v3cXk3LoN0tY0Lz1NBPvkniwYui.jpg"
},
{
"adult": false,
"credit_id": "61572ff81c635b0063018eac",
"department": "Production",
"gender": 2,
"id": 162156,
"job": "Consulting Producer",
"known_for_department": "Writing",
"name": "Philip DeGuere Jr.",
"original_name": "Philip DeGuere Jr.",
"popularity": 2.458,
"profile_path": null
},
{
"adult": false,
"credit_id": "615730084d6791008b8033d5",
"department": "Production",
"gender": 0,
"id": 3255268,
"job": "Producer",
"known_for_department": "Production",
"name": "Avery C. Drewe",
"original_name": "Avery C. Drewe",
"popularity": 0.09,
"profile_path": null
},
{
"adult": false,
"credit_id": "6157301707e281002da95bf3",
"department": "Production",
"gender": 1,
"id": 169466,
"job": "Supervising Producer",
"known_for_department": "Writing",
"name": "Doris Egan",
"original_name": "Doris Egan",
"popularity": 2.768,
"profile_path": null
},
{
"adult": false,
"credit_id": "615730258e2ba600433f90cd",
"department": "Production",
"gender": 2,
"id": 163105,
"job": "Co-Executive Producer",
"known_for_department": "Production",
"name": "Mark Horowitz",
"original_name": "Mark Horowitz",
"popularity": 1.06,
"profile_path": "/vHDiMyIE42rCAshI8Oc4UdIMNqu.jpg"
},
{
"adult": false,
"credit_id": "615730314d6791002ce14aff",
"department": "Production",
"gender": 2,
"id": 1219884,
"job": "Co-Executive Producer",
"known_for_department": "Production",
"name": "Chas. Floyd Johnson",
"original_name": "Chas. Floyd Johnson",
"popularity": 2.197,
"profile_path": null
},
{
"adult": false,
"credit_id": "6157304adcb6a30063b1b991",
"department": "Production",
"gender": 2,
"id": 1218788,
"job": "Supervising Producer",
"known_for_department": "Writing",
"name": "Don McGill",
"original_name": "Don McGill",
"popularity": 4,
"profile_path": "/9QMLJDoA3hYlWdOhQyTVqimPok9.jpg"
},
{
"adult": false,
"credit_id": "6157305c4d6791006278e340",
"department": "Production",
"gender": 0,
"id": 2587354,
"job": "Producer",
"known_for_department": "Directing",
"name": "Mark R. Schilz",
"original_name": "Mark R. Schilz",
"popularity": 0.675,
"profile_path": null
},
{
"adult": false,
"credit_id": "61573068ec1879008c708097",
"department": "Production",
"gender": 2,
"id": 1218781,
"job": "Producer",
"known_for_department": "Writing",
"name": "Jeff Vlaming",
"original_name": "Jeff Vlaming",
"popularity": 4.336,
"profile_path": null
},
{
"adult": false,
"credit_id": "61573073156cc7009401a4f1",
"department": "Production",
"gender": 0,
"id": 1266581,
"job": "Coordinating Producer",
"known_for_department": "Production",
"name": "Julie B. Watson",
"original_name": "Julie B. Watson",
"popularity": 1.021,
"profile_path": null
},
{
"adult": false,
"credit_id": "6157309107e2810063285891",
"department": "Sound",
"gender": 2,
"id": 1462281,
"job": "Music",
"known_for_department": "Sound",
"name": "Steven Bramson",
"original_name": "Steven Bramson",
"popularity": 0.658,
"profile_path": null
},
{
"adult": false,
"credit_id": "6157322a1c63290084191902",
"department": "Production",
"gender": 2,
"id": 1224677,
"job": "Co-Executive Producer",
"known_for_department": "Writing",
"name": "Gil Grant",
"original_name": "Gil Grant",
"popularity": 3.723,
"profile_path": "/pVBdjbymxBNNNqZ7Vf6KhoMoCcH.jpg"
},
{
"adult": false,
"credit_id": "615732996f8d950020bd912b",
"department": "Editing",
"gender": 2,
"id": 1965914,
"job": "Editor",
"known_for_department": "Editing",
"name": "Gregory Gontz",
"original_name": "Gregory Gontz",
"popularity": 0.266,
"profile_path": null
}
],
"episode_number": 2,
"guest_stars": [
{
"adult": false,
"character": "Gerald Jackson",
"credit_id": "58f0a5a2c3a3686b6b00d5c6",
"gender": 2,
"id": 62150,
"known_for_department": "Acting",
"name": "Pancho Demmings",
"order": 1613,
"original_name": "Pancho Demmings",
"popularity": 3.7,
"profile_path": "/mvAaZccfae6mOAX7VYtNOdYzIMe.jpg"
},
{
"adult": false,
"character": "Bud Roberts Jr.",
"credit_id": "52577678760ee36aaa525167",
"gender": 2,
"id": 114876,
"known_for_department": "Acting",
"name": "Patrick Labyorteaux",
"order": 1717,
"original_name": "Patrick Labyorteaux",
"popularity": 12.031,
"profile_path": "/dTuCfBnVH8csjSo8FrOdaOjpegA.jpg"
},
{
"adult": false,
"character": "Captain Faul",
"credit_id": "6361269eb87aec00790a5fd9",
"gender": 2,
"id": 1188456,
"known_for_department": "Acting",
"name": "James MacDonald",
"order": 2540,
"original_name": "James MacDonald",
"popularity": 3.163,
"profile_path": "/a7ylnrHModTjMd3hzBmiwPVJvFA.jpg"
},
{
"adult": false,
"character": "Paul Dafelmair",
"credit_id": "636126cf590086110981299b",
"gender": 2,
"id": 1631561,
"known_for_department": "Acting",
"name": "Rick Pasqualone",
"order": 2541,
"original_name": "Rick Pasqualone",
"popularity": 3.175,
"profile_path": "/sfeELkPfoVeRH8AYF6UJBxYfFxL.jpg"
},
{
"adult": false,
"character": "Dave Ramsey",
"credit_id": "636126f440d0fe007d43f826",
"gender": 2,
"id": 78598,
"known_for_department": "Acting",
"name": "Dave Power",
"order": 2542,
"original_name": "Dave Power",
"popularity": 5.41,
"profile_path": "/mggYfjEh4c9ukcBficLyQRchgo.jpg"
},
{
"adult": false,
"character": "Paul Brinkman",
"credit_id": "636127337f6c8d007dcceb68",
"gender": 2,
"id": 66744,
"known_for_department": "Acting",
"name": "Chaney Kley",
"order": 2543,
"original_name": "Chaney Kley",
"popularity": 3.267,
"profile_path": "/5XSCZAgi1BUZrLp7eDyIxT46w01.jpg"
},
{
"adult": false,
"character": "Gregory Nutt",
"credit_id": "6361274f8289a0007e89481d",
"gender": 2,
"id": 154629,
"known_for_department": "Acting",
"name": "Keith Diamond",
"order": 2544,
"original_name": "Keith Diamond",
"popularity": 2.545,
"profile_path": "/mAvu6POsVZ2iDVHfA8ytBN1T6mN.jpg"
},
{
"adult": false,
"character": "Sarah Schaefer",
"credit_id": "636127a58289a0007e89483a",
"gender": 1,
"id": 68769,
"known_for_department": "Acting",
"name": "Julie Gonzalo",
"order": 2545,
"original_name": "Julie Gonzalo",
"popularity": 16.4,
"profile_path": "/6clO3lFK6dn3lBXe8zZoRNPbERr.jpg"
},
{
"adult": false,
"character": "Jimmy",
"credit_id": "636127c81dbc88007c55fdc7",
"gender": 2,
"id": 74717,
"known_for_department": "Acting",
"name": "Brandon Davis",
"order": 2546,
"original_name": "Brandon Davis",
"popularity": 4.25,
"profile_path": "/sq4yosVJRHKCGEKPMIRDpe4zAEu.jpg"
},
{
"adult": false,
"character": "Sergeant Tuers",
"credit_id": "6361285ee18e3f0079f92fbc",
"gender": 2,
"id": 119699,
"known_for_department": "Acting",
"name": "Lee Reherman",
"order": 2547,
"original_name": "Lee Reherman",
"popularity": 1.961,
"profile_path": "/zqW5tEkiOv2RYSiWPOFEP52MTPH.jpg"
},
{
"adult": false,
"character": "Billy Fuentes",
"credit_id": "636128821b7294007bf10764",
"gender": 2,
"id": 2420301,
"known_for_department": "Acting",
"name": "Austin Marques",
"order": 2548,
"original_name": "Austin Marques",
"popularity": 2.714,
"profile_path": null
},
{
"adult": false,
"character": "Rosemarie Fuentes",
"credit_id": "636128ef07e28100829650f0",
"gender": 1,
"id": 1718812,
"known_for_department": "Acting",
"name": "Christina Souza",
"order": 2549,
"original_name": "Christina Souza",
"popularity": 2.622,
"profile_path": null
},
{
"adult": false,
"character": "Larry Fuentes",
"credit_id": "636129267f6c8d007dccec20",
"gender": 2,
"id": 1118085,
"known_for_department": "Acting",
"name": "Brian Patrick Wade",
"order": 2550,
"original_name": "Brian Patrick Wade",
"popularity": 4.544,
"profile_path": "/w1GZvfEeGF1hAMZadDlzMDulO8L.jpg"
}
],
"id": 334432,
"name": "Hung Out to Dry",
"overview": "During a training exercise, a marine's parachute fails to open and he crashes into a parked car where two teenagers were making out. The NCIS team heads to the scene and has to determine if the marine's death was accidental or a murder.",
"production_code": "102",
"runtime": 44,
"season_number": 1,
"still_path": "/iiL0xbw92OaJf8ZOBVkei9rDW8S.jpg",
"vote_average": 7.1,
"vote_count": 18
}TV Episodes
Details
This endpoint is used to query the details of a TV episodes.
GET
/
3
/
tv
/
{series_id}
/
season
/
{season_number}
/
episode
/
{episode_number}
Details
curl --request GET \
--url 'https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/episode/{episode_number}?%7B%7Bkey%7D%7D='import requests
url = "https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/episode/{episode_number}?%7B%7Bkey%7D%7D="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/episode/{episode_number}?%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}/season/{season_number}/episode/{episode_number}?%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}/season/{season_number}/episode/{episode_number}?%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}/season/{season_number}/episode/{episode_number}?%7B%7Bkey%7D%7D=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/episode/{episode_number}?%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{
"air_date": "2003-09-30",
"crew": [
{
"adult": false,
"credit_id": "52577678760ee36aaa52522f",
"department": "Writing",
"gender": 2,
"id": 1218788,
"job": "Writer",
"known_for_department": "Writing",
"name": "Don McGill",
"original_name": "Don McGill",
"popularity": 4,
"profile_path": "/9QMLJDoA3hYlWdOhQyTVqimPok9.jpg"
},
{
"adult": false,
"credit_id": "52577678760ee36aaa52526b",
"department": "Directing",
"gender": 2,
"id": 44131,
"job": "Director",
"known_for_department": "Directing",
"name": "Alan J. Levi",
"original_name": "Alan J. Levi",
"popularity": 3.038,
"profile_path": null
},
{
"adult": false,
"credit_id": "564bff7e9251414dcb005838",
"department": "Production",
"gender": 2,
"id": 160145,
"job": "Executive Producer",
"known_for_department": "Creator",
"name": "Donald P. Bellisario",
"original_name": "Donald P. Bellisario",
"popularity": 7.801,
"profile_path": "/8xjZRZvWfn0aaZVHlYxRUtlqJIR.jpg"
},
{
"adult": false,
"credit_id": "59cbe8c1c3a3687761015cac",
"department": "Camera",
"gender": 2,
"id": 1176289,
"job": "Director of Photography",
"known_for_department": "Camera",
"name": "William Webb",
"original_name": "William Webb",
"popularity": 0.795,
"profile_path": null
},
{
"adult": false,
"credit_id": "61572f92156cc7004566fb43",
"department": "Production",
"gender": 2,
"id": 1235200,
"job": "Producer",
"known_for_department": "Production",
"name": "David Bellisario",
"original_name": "David Bellisario",
"popularity": 2.601,
"profile_path": null
},
{
"adult": false,
"credit_id": "61572fdcec18790062c341ca",
"department": "Production",
"gender": 2,
"id": 1237600,
"job": "Producer",
"known_for_department": "Writing",
"name": "Steven D. Binder",
"original_name": "Steven D. Binder",
"popularity": 2.617,
"profile_path": "/v3cXk3LoN0tY0Lz1NBPvkniwYui.jpg"
},
{
"adult": false,
"credit_id": "61572ff81c635b0063018eac",
"department": "Production",
"gender": 2,
"id": 162156,
"job": "Consulting Producer",
"known_for_department": "Writing",
"name": "Philip DeGuere Jr.",
"original_name": "Philip DeGuere Jr.",
"popularity": 2.458,
"profile_path": null
},
{
"adult": false,
"credit_id": "615730084d6791008b8033d5",
"department": "Production",
"gender": 0,
"id": 3255268,
"job": "Producer",
"known_for_department": "Production",
"name": "Avery C. Drewe",
"original_name": "Avery C. Drewe",
"popularity": 0.09,
"profile_path": null
},
{
"adult": false,
"credit_id": "6157301707e281002da95bf3",
"department": "Production",
"gender": 1,
"id": 169466,
"job": "Supervising Producer",
"known_for_department": "Writing",
"name": "Doris Egan",
"original_name": "Doris Egan",
"popularity": 2.768,
"profile_path": null
},
{
"adult": false,
"credit_id": "615730258e2ba600433f90cd",
"department": "Production",
"gender": 2,
"id": 163105,
"job": "Co-Executive Producer",
"known_for_department": "Production",
"name": "Mark Horowitz",
"original_name": "Mark Horowitz",
"popularity": 1.06,
"profile_path": "/vHDiMyIE42rCAshI8Oc4UdIMNqu.jpg"
},
{
"adult": false,
"credit_id": "615730314d6791002ce14aff",
"department": "Production",
"gender": 2,
"id": 1219884,
"job": "Co-Executive Producer",
"known_for_department": "Production",
"name": "Chas. Floyd Johnson",
"original_name": "Chas. Floyd Johnson",
"popularity": 2.197,
"profile_path": null
},
{
"adult": false,
"credit_id": "6157304adcb6a30063b1b991",
"department": "Production",
"gender": 2,
"id": 1218788,
"job": "Supervising Producer",
"known_for_department": "Writing",
"name": "Don McGill",
"original_name": "Don McGill",
"popularity": 4,
"profile_path": "/9QMLJDoA3hYlWdOhQyTVqimPok9.jpg"
},
{
"adult": false,
"credit_id": "6157305c4d6791006278e340",
"department": "Production",
"gender": 0,
"id": 2587354,
"job": "Producer",
"known_for_department": "Directing",
"name": "Mark R. Schilz",
"original_name": "Mark R. Schilz",
"popularity": 0.675,
"profile_path": null
},
{
"adult": false,
"credit_id": "61573068ec1879008c708097",
"department": "Production",
"gender": 2,
"id": 1218781,
"job": "Producer",
"known_for_department": "Writing",
"name": "Jeff Vlaming",
"original_name": "Jeff Vlaming",
"popularity": 4.336,
"profile_path": null
},
{
"adult": false,
"credit_id": "61573073156cc7009401a4f1",
"department": "Production",
"gender": 0,
"id": 1266581,
"job": "Coordinating Producer",
"known_for_department": "Production",
"name": "Julie B. Watson",
"original_name": "Julie B. Watson",
"popularity": 1.021,
"profile_path": null
},
{
"adult": false,
"credit_id": "6157309107e2810063285891",
"department": "Sound",
"gender": 2,
"id": 1462281,
"job": "Music",
"known_for_department": "Sound",
"name": "Steven Bramson",
"original_name": "Steven Bramson",
"popularity": 0.658,
"profile_path": null
},
{
"adult": false,
"credit_id": "6157322a1c63290084191902",
"department": "Production",
"gender": 2,
"id": 1224677,
"job": "Co-Executive Producer",
"known_for_department": "Writing",
"name": "Gil Grant",
"original_name": "Gil Grant",
"popularity": 3.723,
"profile_path": "/pVBdjbymxBNNNqZ7Vf6KhoMoCcH.jpg"
},
{
"adult": false,
"credit_id": "615732996f8d950020bd912b",
"department": "Editing",
"gender": 2,
"id": 1965914,
"job": "Editor",
"known_for_department": "Editing",
"name": "Gregory Gontz",
"original_name": "Gregory Gontz",
"popularity": 0.266,
"profile_path": null
}
],
"episode_number": 2,
"guest_stars": [
{
"adult": false,
"character": "Gerald Jackson",
"credit_id": "58f0a5a2c3a3686b6b00d5c6",
"gender": 2,
"id": 62150,
"known_for_department": "Acting",
"name": "Pancho Demmings",
"order": 1613,
"original_name": "Pancho Demmings",
"popularity": 3.7,
"profile_path": "/mvAaZccfae6mOAX7VYtNOdYzIMe.jpg"
},
{
"adult": false,
"character": "Bud Roberts Jr.",
"credit_id": "52577678760ee36aaa525167",
"gender": 2,
"id": 114876,
"known_for_department": "Acting",
"name": "Patrick Labyorteaux",
"order": 1717,
"original_name": "Patrick Labyorteaux",
"popularity": 12.031,
"profile_path": "/dTuCfBnVH8csjSo8FrOdaOjpegA.jpg"
},
{
"adult": false,
"character": "Captain Faul",
"credit_id": "6361269eb87aec00790a5fd9",
"gender": 2,
"id": 1188456,
"known_for_department": "Acting",
"name": "James MacDonald",
"order": 2540,
"original_name": "James MacDonald",
"popularity": 3.163,
"profile_path": "/a7ylnrHModTjMd3hzBmiwPVJvFA.jpg"
},
{
"adult": false,
"character": "Paul Dafelmair",
"credit_id": "636126cf590086110981299b",
"gender": 2,
"id": 1631561,
"known_for_department": "Acting",
"name": "Rick Pasqualone",
"order": 2541,
"original_name": "Rick Pasqualone",
"popularity": 3.175,
"profile_path": "/sfeELkPfoVeRH8AYF6UJBxYfFxL.jpg"
},
{
"adult": false,
"character": "Dave Ramsey",
"credit_id": "636126f440d0fe007d43f826",
"gender": 2,
"id": 78598,
"known_for_department": "Acting",
"name": "Dave Power",
"order": 2542,
"original_name": "Dave Power",
"popularity": 5.41,
"profile_path": "/mggYfjEh4c9ukcBficLyQRchgo.jpg"
},
{
"adult": false,
"character": "Paul Brinkman",
"credit_id": "636127337f6c8d007dcceb68",
"gender": 2,
"id": 66744,
"known_for_department": "Acting",
"name": "Chaney Kley",
"order": 2543,
"original_name": "Chaney Kley",
"popularity": 3.267,
"profile_path": "/5XSCZAgi1BUZrLp7eDyIxT46w01.jpg"
},
{
"adult": false,
"character": "Gregory Nutt",
"credit_id": "6361274f8289a0007e89481d",
"gender": 2,
"id": 154629,
"known_for_department": "Acting",
"name": "Keith Diamond",
"order": 2544,
"original_name": "Keith Diamond",
"popularity": 2.545,
"profile_path": "/mAvu6POsVZ2iDVHfA8ytBN1T6mN.jpg"
},
{
"adult": false,
"character": "Sarah Schaefer",
"credit_id": "636127a58289a0007e89483a",
"gender": 1,
"id": 68769,
"known_for_department": "Acting",
"name": "Julie Gonzalo",
"order": 2545,
"original_name": "Julie Gonzalo",
"popularity": 16.4,
"profile_path": "/6clO3lFK6dn3lBXe8zZoRNPbERr.jpg"
},
{
"adult": false,
"character": "Jimmy",
"credit_id": "636127c81dbc88007c55fdc7",
"gender": 2,
"id": 74717,
"known_for_department": "Acting",
"name": "Brandon Davis",
"order": 2546,
"original_name": "Brandon Davis",
"popularity": 4.25,
"profile_path": "/sq4yosVJRHKCGEKPMIRDpe4zAEu.jpg"
},
{
"adult": false,
"character": "Sergeant Tuers",
"credit_id": "6361285ee18e3f0079f92fbc",
"gender": 2,
"id": 119699,
"known_for_department": "Acting",
"name": "Lee Reherman",
"order": 2547,
"original_name": "Lee Reherman",
"popularity": 1.961,
"profile_path": "/zqW5tEkiOv2RYSiWPOFEP52MTPH.jpg"
},
{
"adult": false,
"character": "Billy Fuentes",
"credit_id": "636128821b7294007bf10764",
"gender": 2,
"id": 2420301,
"known_for_department": "Acting",
"name": "Austin Marques",
"order": 2548,
"original_name": "Austin Marques",
"popularity": 2.714,
"profile_path": null
},
{
"adult": false,
"character": "Rosemarie Fuentes",
"credit_id": "636128ef07e28100829650f0",
"gender": 1,
"id": 1718812,
"known_for_department": "Acting",
"name": "Christina Souza",
"order": 2549,
"original_name": "Christina Souza",
"popularity": 2.622,
"profile_path": null
},
{
"adult": false,
"character": "Larry Fuentes",
"credit_id": "636129267f6c8d007dccec20",
"gender": 2,
"id": 1118085,
"known_for_department": "Acting",
"name": "Brian Patrick Wade",
"order": 2550,
"original_name": "Brian Patrick Wade",
"popularity": 4.544,
"profile_path": "/w1GZvfEeGF1hAMZadDlzMDulO8L.jpg"
}
],
"id": 334432,
"name": "Hung Out to Dry",
"overview": "During a training exercise, a marine's parachute fails to open and he crashes into a parked car where two teenagers were making out. The NCIS team heads to the scene and has to determine if the marine's death was accidental or a murder.",
"production_code": "102",
"runtime": 44,
"season_number": 1,
"still_path": "/iiL0xbw92OaJf8ZOBVkei9rDW8S.jpg",
"vote_average": 7.1,
"vote_count": 18
}Authorizations
Path Parameters
integer
Example:
"4614"
integer
Example:
"1"
integer
Example:
"2"
Response
200 - application/json
OK
Example:
"2003-09-30"
Show child attributes
Show child attributes
Example:
[
{
"adult": false,
"credit_id": "52577678760ee36aaa52522f",
"department": "Writing",
"gender": 2,
"id": 1218788,
"job": "Writer",
"known_for_department": "Writing",
"name": "Don McGill",
"original_name": "Don McGill",
"popularity": 4,
"profile_path": "/9QMLJDoA3hYlWdOhQyTVqimPok9.jpg"
},
{
"adult": false,
"credit_id": "52577678760ee36aaa52526b",
"department": "Directing",
"gender": 2,
"id": 44131,
"job": "Director",
"known_for_department": "Directing",
"name": "Alan J. Levi",
"original_name": "Alan J. Levi",
"popularity": 3.038,
"profile_path": null
},
{
"adult": false,
"credit_id": "564bff7e9251414dcb005838",
"department": "Production",
"gender": 2,
"id": 160145,
"job": "Executive Producer",
"known_for_department": "Creator",
"name": "Donald P. Bellisario",
"original_name": "Donald P. Bellisario",
"popularity": 7.801,
"profile_path": "/8xjZRZvWfn0aaZVHlYxRUtlqJIR.jpg"
},
{
"adult": false,
"credit_id": "59cbe8c1c3a3687761015cac",
"department": "Camera",
"gender": 2,
"id": 1176289,
"job": "Director of Photography",
"known_for_department": "Camera",
"name": "William Webb",
"original_name": "William Webb",
"popularity": 0.795,
"profile_path": null
},
{
"adult": false,
"credit_id": "61572f92156cc7004566fb43",
"department": "Production",
"gender": 2,
"id": 1235200,
"job": "Producer",
"known_for_department": "Production",
"name": "David Bellisario",
"original_name": "David Bellisario",
"popularity": 2.601,
"profile_path": null
},
{
"adult": false,
"credit_id": "61572fdcec18790062c341ca",
"department": "Production",
"gender": 2,
"id": 1237600,
"job": "Producer",
"known_for_department": "Writing",
"name": "Steven D. Binder",
"original_name": "Steven D. Binder",
"popularity": 2.617,
"profile_path": "/v3cXk3LoN0tY0Lz1NBPvkniwYui.jpg"
},
{
"adult": false,
"credit_id": "61572ff81c635b0063018eac",
"department": "Production",
"gender": 2,
"id": 162156,
"job": "Consulting Producer",
"known_for_department": "Writing",
"name": "Philip DeGuere Jr.",
"original_name": "Philip DeGuere Jr.",
"popularity": 2.458,
"profile_path": null
},
{
"adult": false,
"credit_id": "615730084d6791008b8033d5",
"department": "Production",
"gender": 0,
"id": 3255268,
"job": "Producer",
"known_for_department": "Production",
"name": "Avery C. Drewe",
"original_name": "Avery C. Drewe",
"popularity": 0.09,
"profile_path": null
},
{
"adult": false,
"credit_id": "6157301707e281002da95bf3",
"department": "Production",
"gender": 1,
"id": 169466,
"job": "Supervising Producer",
"known_for_department": "Writing",
"name": "Doris Egan",
"original_name": "Doris Egan",
"popularity": 2.768,
"profile_path": null
},
{
"adult": false,
"credit_id": "615730258e2ba600433f90cd",
"department": "Production",
"gender": 2,
"id": 163105,
"job": "Co-Executive Producer",
"known_for_department": "Production",
"name": "Mark Horowitz",
"original_name": "Mark Horowitz",
"popularity": 1.06,
"profile_path": "/vHDiMyIE42rCAshI8Oc4UdIMNqu.jpg"
},
{
"adult": false,
"credit_id": "615730314d6791002ce14aff",
"department": "Production",
"gender": 2,
"id": 1219884,
"job": "Co-Executive Producer",
"known_for_department": "Production",
"name": "Chas. Floyd Johnson",
"original_name": "Chas. Floyd Johnson",
"popularity": 2.197,
"profile_path": null
},
{
"adult": false,
"credit_id": "6157304adcb6a30063b1b991",
"department": "Production",
"gender": 2,
"id": 1218788,
"job": "Supervising Producer",
"known_for_department": "Writing",
"name": "Don McGill",
"original_name": "Don McGill",
"popularity": 4,
"profile_path": "/9QMLJDoA3hYlWdOhQyTVqimPok9.jpg"
},
{
"adult": false,
"credit_id": "6157305c4d6791006278e340",
"department": "Production",
"gender": 0,
"id": 2587354,
"job": "Producer",
"known_for_department": "Directing",
"name": "Mark R. Schilz",
"original_name": "Mark R. Schilz",
"popularity": 0.675,
"profile_path": null
},
{
"adult": false,
"credit_id": "61573068ec1879008c708097",
"department": "Production",
"gender": 2,
"id": 1218781,
"job": "Producer",
"known_for_department": "Writing",
"name": "Jeff Vlaming",
"original_name": "Jeff Vlaming",
"popularity": 4.336,
"profile_path": null
},
{
"adult": false,
"credit_id": "61573073156cc7009401a4f1",
"department": "Production",
"gender": 0,
"id": 1266581,
"job": "Coordinating Producer",
"known_for_department": "Production",
"name": "Julie B. Watson",
"original_name": "Julie B. Watson",
"popularity": 1.021,
"profile_path": null
},
{
"adult": false,
"credit_id": "6157309107e2810063285891",
"department": "Sound",
"gender": 2,
"id": 1462281,
"job": "Music",
"known_for_department": "Sound",
"name": "Steven Bramson",
"original_name": "Steven Bramson",
"popularity": 0.658,
"profile_path": null
},
{
"adult": false,
"credit_id": "6157322a1c63290084191902",
"department": "Production",
"gender": 2,
"id": 1224677,
"job": "Co-Executive Producer",
"known_for_department": "Writing",
"name": "Gil Grant",
"original_name": "Gil Grant",
"popularity": 3.723,
"profile_path": "/pVBdjbymxBNNNqZ7Vf6KhoMoCcH.jpg"
},
{
"adult": false,
"credit_id": "615732996f8d950020bd912b",
"department": "Editing",
"gender": 2,
"id": 1965914,
"job": "Editor",
"known_for_department": "Editing",
"name": "Gregory Gontz",
"original_name": "Gregory Gontz",
"popularity": 0.266,
"profile_path": null
}
]
Example:
2
Show child attributes
Show child attributes
Example:
[
{
"adult": false,
"character": "Gerald Jackson",
"credit_id": "58f0a5a2c3a3686b6b00d5c6",
"gender": 2,
"id": 62150,
"known_for_department": "Acting",
"name": "Pancho Demmings",
"order": 1613,
"original_name": "Pancho Demmings",
"popularity": 3.7,
"profile_path": "/mvAaZccfae6mOAX7VYtNOdYzIMe.jpg"
},
{
"adult": false,
"character": "Bud Roberts Jr.",
"credit_id": "52577678760ee36aaa525167",
"gender": 2,
"id": 114876,
"known_for_department": "Acting",
"name": "Patrick Labyorteaux",
"order": 1717,
"original_name": "Patrick Labyorteaux",
"popularity": 12.031,
"profile_path": "/dTuCfBnVH8csjSo8FrOdaOjpegA.jpg"
},
{
"adult": false,
"character": "Captain Faul",
"credit_id": "6361269eb87aec00790a5fd9",
"gender": 2,
"id": 1188456,
"known_for_department": "Acting",
"name": "James MacDonald",
"order": 2540,
"original_name": "James MacDonald",
"popularity": 3.163,
"profile_path": "/a7ylnrHModTjMd3hzBmiwPVJvFA.jpg"
},
{
"adult": false,
"character": "Paul Dafelmair",
"credit_id": "636126cf590086110981299b",
"gender": 2,
"id": 1631561,
"known_for_department": "Acting",
"name": "Rick Pasqualone",
"order": 2541,
"original_name": "Rick Pasqualone",
"popularity": 3.175,
"profile_path": "/sfeELkPfoVeRH8AYF6UJBxYfFxL.jpg"
},
{
"adult": false,
"character": "Dave Ramsey",
"credit_id": "636126f440d0fe007d43f826",
"gender": 2,
"id": 78598,
"known_for_department": "Acting",
"name": "Dave Power",
"order": 2542,
"original_name": "Dave Power",
"popularity": 5.41,
"profile_path": "/mggYfjEh4c9ukcBficLyQRchgo.jpg"
},
{
"adult": false,
"character": "Paul Brinkman",
"credit_id": "636127337f6c8d007dcceb68",
"gender": 2,
"id": 66744,
"known_for_department": "Acting",
"name": "Chaney Kley",
"order": 2543,
"original_name": "Chaney Kley",
"popularity": 3.267,
"profile_path": "/5XSCZAgi1BUZrLp7eDyIxT46w01.jpg"
},
{
"adult": false,
"character": "Gregory Nutt",
"credit_id": "6361274f8289a0007e89481d",
"gender": 2,
"id": 154629,
"known_for_department": "Acting",
"name": "Keith Diamond",
"order": 2544,
"original_name": "Keith Diamond",
"popularity": 2.545,
"profile_path": "/mAvu6POsVZ2iDVHfA8ytBN1T6mN.jpg"
},
{
"adult": false,
"character": "Sarah Schaefer",
"credit_id": "636127a58289a0007e89483a",
"gender": 1,
"id": 68769,
"known_for_department": "Acting",
"name": "Julie Gonzalo",
"order": 2545,
"original_name": "Julie Gonzalo",
"popularity": 16.4,
"profile_path": "/6clO3lFK6dn3lBXe8zZoRNPbERr.jpg"
},
{
"adult": false,
"character": "Jimmy",
"credit_id": "636127c81dbc88007c55fdc7",
"gender": 2,
"id": 74717,
"known_for_department": "Acting",
"name": "Brandon Davis",
"order": 2546,
"original_name": "Brandon Davis",
"popularity": 4.25,
"profile_path": "/sq4yosVJRHKCGEKPMIRDpe4zAEu.jpg"
},
{
"adult": false,
"character": "Sergeant Tuers",
"credit_id": "6361285ee18e3f0079f92fbc",
"gender": 2,
"id": 119699,
"known_for_department": "Acting",
"name": "Lee Reherman",
"order": 2547,
"original_name": "Lee Reherman",
"popularity": 1.961,
"profile_path": "/zqW5tEkiOv2RYSiWPOFEP52MTPH.jpg"
},
{
"adult": false,
"character": "Billy Fuentes",
"credit_id": "636128821b7294007bf10764",
"gender": 2,
"id": 2420301,
"known_for_department": "Acting",
"name": "Austin Marques",
"order": 2548,
"original_name": "Austin Marques",
"popularity": 2.714,
"profile_path": null
},
{
"adult": false,
"character": "Rosemarie Fuentes",
"credit_id": "636128ef07e28100829650f0",
"gender": 1,
"id": 1718812,
"known_for_department": "Acting",
"name": "Christina Souza",
"order": 2549,
"original_name": "Christina Souza",
"popularity": 2.622,
"profile_path": null
},
{
"adult": false,
"character": "Larry Fuentes",
"credit_id": "636129267f6c8d007dccec20",
"gender": 2,
"id": 1118085,
"known_for_department": "Acting",
"name": "Brian Patrick Wade",
"order": 2550,
"original_name": "Brian Patrick Wade",
"popularity": 4.544,
"profile_path": "/w1GZvfEeGF1hAMZadDlzMDulO8L.jpg"
}
]
Example:
334432
Example:
"Hung Out to Dry"
Example:
"During a training exercise, a marine's parachute fails to open and he crashes into a parked car where two teenagers were making out. The NCIS team heads to the scene and has to determine if the marine's death was accidental or a murder."
Example:
"102"
Example:
44
Example:
1
Example:
"/iiL0xbw92OaJf8ZOBVkei9rDW8S.jpg"
Example:
7.1
Example:
18
Was this page helpful?
⌘I