Movie Credits
curl --request GET \
--url 'https://api.themoviedb.org/3/person/{person_id}/movie_credits?%7B%7Bkey%7D%7D='import requests
url = "https://api.themoviedb.org/3/person/{person_id}/movie_credits?%7B%7Bkey%7D%7D="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/person/{person_id}/movie_credits?%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/person/{person_id}/movie_credits?%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/person/{person_id}/movie_credits?%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/person/{person_id}/movie_credits?%7B%7Bkey%7D%7D=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/person/{person_id}/movie_credits?%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{
"cast": [
{
"adult": false,
"backdrop_path": "/3rVtoCyClDZh6vt7tRUBWVoIOnR.jpg",
"character": "Arresting Officer",
"credit_id": "618da31c10dad60028a06c66",
"genre_ids": [
18,
53
],
"id": 21719,
"order": 24,
"original_language": "en",
"original_title": "The Minus Man",
"overview": "When the quiet and amiable Vann Siegert drifts into town, no one suspects the evil that lies beneath the surface. Despite his easy charm, Vann is merely a reflection of what those he encounters want him to be. Soon, as locals start to disappear, it becomes clear that an eerie subtraction is at work in the sleepy hamlet.",
"popularity": 7.453,
"poster_path": "/vrnI5WePtq2iXkcmeYnMrLCpI9B.jpg",
"release_date": "1999-02-25",
"title": "The Minus Man",
"video": false,
"vote_average": 5.4,
"vote_count": 93
},
{
"adult": false,
"backdrop_path": "/8NT8cPiD9yTAI2iEfsDPQZAYFsO.jpg",
"character": "Detective Ryan",
"credit_id": "52fe45be9251416c75060ebf",
"genre_ids": [
35,
18
],
"id": 13973,
"order": 12,
"original_language": "en",
"original_title": "Choke",
"overview": "A sex-addicted con-man pays for his mother's hospital bills by playing on the sympathies of those who rescue him from choking to death.",
"popularity": 8.108,
"poster_path": "/7osy71os3YLiFpNYn567koOnAKZ.jpg",
"release_date": "2008-09-26",
"title": "Choke",
"video": false,
"vote_average": 6.114,
"vote_count": 389
},
{
"adult": false,
"backdrop_path": "/jFh87Hj9Yp8QQPYmcNBAZNaa4Y.jpg",
"character": "Hodges",
"credit_id": "52fe4633c3a368484e084375",
"genre_ids": [
28,
53
],
"id": 60747,
"order": 10,
"original_language": "en",
"original_title": "Red Dawn",
"overview": "A city in Washington state awakens to the surreal sight of foreign paratroopers dropping from the sky—shockingly, the U.S. has been invaded and their hometown is the initial target. Quickly and without warning, the citizens find themselves prisoners and their town under enemy occupation. Determined to fight back, a group of young patriots seek refuge in the surrounding woods, training and reorganizing themselves into a guerrilla group of fighters.",
"popularity": 44.127,
"poster_path": "/aHdxKDX36NOEYE2NyAyP7ThuAcm.jpg",
"release_date": "2012-03-15",
"title": "Red Dawn",
"video": false,
"vote_average": 5.704,
"vote_count": 1604
},
{
"adult": false,
"backdrop_path": "/vL5LR6WdxWPjLPFRLe133jXWsh5.jpg",
"character": "Corporal Lyle Wainfleet",
"credit_id": "52fe48009251416c750ac9f5",
"genre_ids": [
28,
12,
14,
878
],
"id": 19995,
"order": 11,
"original_language": "en",
"original_title": "Avatar",
"overview": "In the 22nd century, a paraplegic Marine is dispatched to the moon Pandora on a unique mission, but becomes torn between following orders and protecting an alien civilization.",
"popularity": 107.522,
"poster_path": "/kyeqWdyUXW608qlYkRqosgbbJyK.jpg",
"release_date": "2009-12-15",
"title": "Avatar",
"video": false,
"vote_average": 7.583,
"vote_count": 31574
},
{
"adult": false,
"backdrop_path": "/zHUsTabS4RMOtGs2hZsvgrtb5y3.jpg",
"character": "Officer #2",
"credit_id": "645feed8dbbb420119f46ca8",
"genre_ids": [
18
],
"id": 334,
"order": 77,
"original_language": "en",
"original_title": "Magnolia",
"overview": "On one random day in the San Fernando Valley, a dying father, a young wife, a male caretaker, a famous lost son, a police officer in love, a boy genius, an ex-boy genius, a game show host and an estranged daughter will each become part of a dazzling multiplicity of plots, but one story.",
"popularity": 31.019,
"poster_path": "/uq2u8HgtLFJkjNq2kHb2jvipIPT.jpg",
"release_date": "1999-12-17",
"title": "Magnolia",
"video": false,
"vote_average": 7.7,
"vote_count": 3538
},
{
"adult": false,
"backdrop_path": "/viwOsqPOSBS519lT9zGqXH8kpbC.jpg",
"character": "Michael Ortiz",
"credit_id": "52fe48f6c3a36847f8182689",
"genre_ids": [
35,
18
],
"id": 56272,
"order": 12,
"original_language": "en",
"original_title": "Elektra Luxx",
"overview": "A favor for a woman from her past throws the life of a pregnant, retired porn star into chaos.",
"popularity": 6.19,
"poster_path": "/eLv57AjGugpx2shfaq9crEBVioL.jpg",
"release_date": "2011-03-11",
"title": "Elektra Luxx",
"video": false,
"vote_average": 4.755,
"vote_count": 145
},
{
"adult": false,
"backdrop_path": "/1pgiezGVzht05L2Z96Ex83zDCGr.jpg",
"character": "Billy Morrison",
"credit_id": "52fe4a83c3a368484e15797d",
"genre_ids": [
9648,
18,
28,
80
],
"id": 122800,
"order": 4,
"original_language": "en",
"original_title": "Freelancers",
"overview": "The son of a slain NYPD officer joins the force, where he falls in with his father's former partner and a team of rogue cops. His new boss, Sarcone, will see if he has what it takes to be rogue through many trials and tribulations of loyalty, trust and respect. When the truth about his father's death is revealed revenge takes him over and he won't stop until justice has been truly served.",
"popularity": 11.937,
"poster_path": "/8jdYImZW75JlZN70A0uzls4uL16.jpg",
"release_date": "2012-08-10",
"title": "Freelancers",
"video": false,
"vote_average": 5.1,
"vote_count": 235
},
{
"adult": false,
"backdrop_path": "/5b0jdmJvsig3vckvHdGFv3vWPay.jpg",
"character": "Roag",
"credit_id": "52fe4a88c3a36847f81d39f5",
"genre_ids": [
28,
53
],
"id": 107846,
"order": 10,
"original_language": "en",
"original_title": "Escape Plan",
"overview": "Ray Breslin is the world's foremost authority on structural security. After analyzing every high security prison and learning a vast array of survival skills so he can design escape-proof prisons, his skills are put to the test. He's framed and incarcerated in a master prison he designed himself. He needs to escape and find the person who put him behind bars.",
"popularity": 46.435,
"poster_path": "/k09ydRsOtdjCUxierkknRdujIF2.jpg",
"release_date": "2013-10-09",
"title": "Escape Plan",
"video": false,
"vote_average": 6.727,
"vote_count": 5134
},
{
"adult": false,
"backdrop_path": "/uEwGFGtao9YG2JolmdvtHLLVbA9.jpg",
"character": "Self",
"credit_id": "52fe4af6c3a36847f81eaaf5",
"genre_ids": [
99
],
"id": 111332,
"order": 8,
"original_language": "en",
"original_title": "Avatar: Creating the World of Pandora",
"overview": "The Making-of James Cameron's Avatar. It shows interesting parts of the work on the set.",
"popularity": 16.121,
"poster_path": "/d9oqcfeCyc3zmMal6eJbfj3gatc.jpg",
"release_date": "2010-02-07",
"title": "Avatar: Creating the World of Pandora",
"video": false,
"vote_average": 6.6,
"vote_count": 154
},
{
"adult": false,
"backdrop_path": "/xLW4UQ4zYf7fHrei9pqx4fJsfKy.jpg",
"character": "Ed Stauber",
"credit_id": "52fe4d9b9251416c9111bfe1",
"genre_ids": [
53,
80
],
"id": 199373,
"order": 11,
"original_language": "en",
"original_title": "The Frozen Ground",
"overview": "An Alaska State Trooper partners with a young woman who escaped the clutches of serial killer Robert Hansen to bring the murderer to justice. Based on actual events.",
"popularity": 15.895,
"poster_path": "/hHDj1h3lJvYd9Cervoswz9crhWg.jpg",
"release_date": "2013-07-11",
"title": "The Frozen Ground",
"video": false,
"vote_average": 6.281,
"vote_count": 1453
},
{
"adult": false,
"backdrop_path": "/e6RHrRaG8t5o2REYMfYkvhoamw2.jpg",
"character": "White Power Dave",
"credit_id": "52fe4e9d9251416c91137ce1",
"genre_ids": [
28,
35,
14
],
"id": 253980,
"order": 4,
"original_language": "en",
"original_title": "Marvel One-Shot: All Hail the King",
"overview": "A documentary filmmaker interviews the now-famous Trevor Slattery from behind bars.",
"popularity": 12.074,
"poster_path": "/ozXvopXv1TiOTls8zb09dBmu9dt.jpg",
"release_date": "2014-02-04",
"title": "Marvel One-Shot: All Hail the King",
"video": false,
"vote_average": 6.8,
"vote_count": 534
},
{
"adult": false,
"backdrop_path": "/z8pQocUi56yIAToFjrmSumQ7VAL.jpg",
"character": "Sloman",
"credit_id": "554e688bc3a3685e500079f8",
"genre_ids": [
53,
80,
9648
],
"id": 339527,
"order": 4,
"original_language": "en",
"original_title": "Solace",
"overview": "A psychic doctor, John Clancy, works with an FBI special agent in search of a serial killer.",
"popularity": 16.647,
"poster_path": "/pbcXpZgem8kgr90RwIUNAbC2ite.jpg",
"release_date": "2015-09-03",
"title": "Solace",
"video": false,
"vote_average": 6.4,
"vote_count": 2201
},
{
"adult": false,
"backdrop_path": "/hehboYLXB3m90x9ybiBsupwuifL.jpg",
"character": "Phil Cole",
"credit_id": "55891aafc3a368210400060a",
"genre_ids": [
80,
18,
53
],
"id": 339692,
"order": 13,
"original_language": "en",
"original_title": "Shot Caller",
"overview": "A newly-released prison gangster is forced by the leaders of his gang to orchestrate a major crime with a brutal rival gang on the streets of Southern California.",
"popularity": 53.653,
"poster_path": "/qLmLz2wtyYvmW8Ult3l2ngOnW8v.jpg",
"release_date": "2017-07-13",
"title": "Shot Caller",
"video": false,
"vote_average": 7,
"vote_count": 2021
},
{
"adult": false,
"backdrop_path": "/6VoxDupaW2VXfLtJyeOoGCgXSjD.jpg",
"character": "Captain Fabrizio",
"credit_id": "662b881801b1ca011ee3fe28",
"genre_ids": [
28,
53
],
"id": 1116490,
"order": 13,
"original_language": "en",
"original_title": "Cash Out",
"overview": "Criminal mastermind Mason is about to execute the score of a lifetime when his lover and key member of his crew, Decker, takes the team down and reveals she’s an undercover Interpol agent. Heartbroken, Mason escapes and retires from the life of crime until his younger brother Shawn is out of his league taking on a big bank heist all on his own. Mason has no choice left but to come to the rescue, while Interpol brings Decker in hoping to unnerve him. Before the SWAT teams storm the bank, Mason must use every tool in his arsenal to not only escape with the prize, but also the love of his life.",
"popularity": 238.932,
"poster_path": "/xBJnIvRdL0nDHgvivr6EgBQizes.jpg",
"release_date": "2024-04-26",
"title": "Cash Out",
"video": false,
"vote_average": 6.4,
"vote_count": 138
},
{
"adult": false,
"backdrop_path": "/mMoG4nPSDupXIXOwVvpexZY2W0N.jpg",
"character": "Harrison",
"credit_id": "575b0319c3a36854030002dc",
"genre_ids": [
28,
18,
53
],
"id": 254128,
"order": 12,
"original_language": "en",
"original_title": "San Andreas",
"overview": "In the aftermath of a massive earthquake in California, a rescue-chopper pilot makes a dangerous journey across the state in order to rescue his estranged daughter.",
"popularity": 53.852,
"poster_path": "/2Gfjn962aaFSD6eST6QU3oLDZTo.jpg",
"release_date": "2015-05-27",
"title": "San Andreas",
"video": false,
"vote_average": 6.2,
"vote_count": 8526
},
{
"adult": false,
"backdrop_path": "/hu4psJoKxDYezvvS4GlLF531fom.jpg",
"character": "Hicks",
"credit_id": "5830cb74c3a3685bb00160c2",
"genre_ids": [
14,
28,
53
],
"id": 400106,
"order": 10,
"original_language": "en",
"original_title": "Bright",
"overview": "In an alternate present-day where magical creatures live among us, two L.A. cops become embroiled in a prophesied turf battle.",
"popularity": 21.235,
"poster_path": "/whkT53Sv2vKAUiknQ13pqcWaPXB.jpg",
"release_date": "2017-12-22",
"title": "Bright",
"video": false,
"vote_average": 6.152,
"vote_count": 5623
},
{
"adult": false,
"backdrop_path": "/vm8mhrjk5nQ562UQ0KbUzi0yOHr.jpg",
"character": "Zammit",
"credit_id": "58c9dabfc3a3684150000e2f",
"genre_ids": [
28,
12,
878
],
"id": 427641,
"order": 11,
"original_language": "en",
"original_title": "Rampage",
"overview": "Primatologist Davis Okoye shares an unshakable bond with George, the extraordinarily intelligent, silverback gorilla who has been in his care since birth. But a rogue genetic experiment gone awry mutates this gentle ape into a raging creature of enormous size. To make matters worse, it’s soon discovered there are other similarly altered animals. As these newly created alpha predators tear across North America, destroying everything in their path, Okoye teams with a discredited genetic engineer to secure an antidote, fighting his way through an ever-changing battlefield, not only to halt a global catastrophe but to save the fearsome creature that was once his friend.",
"popularity": 49.44,
"poster_path": "/MGADip4thVSErP34FAAfzFBTZ5.jpg",
"release_date": "2018-04-11",
"title": "Rampage",
"video": false,
"vote_average": 6.5,
"vote_count": 7037
},
{
"adult": false,
"backdrop_path": "/uGhqlElLECQgYbJPDdqpJF6agks.jpg",
"character": "Agent #1",
"credit_id": "58dbe537925141338100e720",
"genre_ids": [
53,
80,
18
],
"id": 37516,
"order": 28,
"original_language": "en",
"original_title": "Judas Kiss",
"overview": "The shooting of a U.S. senator's wife raises the stakes for kidnappers seeking a hefty ransom for a computer magnate.",
"popularity": 6.564,
"poster_path": "/aBwSiD2kjlarWe7zXYFvfGdlUon.jpg",
"release_date": "1998-09-16",
"title": "Judas Kiss",
"video": false,
"vote_average": 5.6,
"vote_count": 56
},
{
"adult": false,
"backdrop_path": "/8rpDcsfLJypbO6vREc0547VKqEv.jpg",
"character": "Recom Wainfleet",
"credit_id": "5989fe3f9251414bb4019aa4",
"genre_ids": [
878,
12,
28
],
"id": 76600,
"order": 20,
"original_language": "en",
"original_title": "Avatar: The Way of Water",
"overview": "Set more than a decade after the events of the first film, learn the story of the Sully family (Jake, Neytiri, and their kids), the trouble that follows them, the lengths they go to keep each other safe, the battles they fight to stay alive, and the tragedies they endure.",
"popularity": 130.396,
"poster_path": "/t6HIqrRAclMCA60NsSmeqe9RmNV.jpg",
"release_date": "2022-12-14",
"title": "Avatar: The Way of Water",
"video": false,
"vote_average": 7.6,
"vote_count": 11982
},
{
"adult": false,
"backdrop_path": "/1ToHikA7BtTxMD4YGyuwBURyv2W.jpg",
"character": "Corporal Lyle Wainfleet",
"credit_id": "5989fe719251414bb4019ae9",
"genre_ids": [
878,
12,
14
],
"id": 83533,
"order": 19,
"original_language": "en",
"original_title": "Avatar: Fire and Ash",
"overview": "In the wake of the devastating war against the RDA and the loss of their eldest son, Jake Sully and Neytiri face a new threat on Pandora: the Ash People, a violent and power-hungry Na'vi tribe led by the ruthless Varang. Jake's family must fight for their survival and the future of Pandora in a conflict that pushes them to their emotional and physical limits.",
"popularity": 29.492,
"poster_path": "/vDdFxksDMkUJjZXd00OKJfwXKre.jpg",
"release_date": "2025-12-17",
"title": "Avatar: Fire and Ash",
"video": false,
"vote_average": 0,
"vote_count": 0
},
{
"adult": false,
"backdrop_path": null,
"character": "Corporal Lyle Wainfleet",
"credit_id": "5989fef49251416b500174e3",
"genre_ids": [
878,
12,
14
],
"id": 216527,
"order": 8,
"original_language": "en",
"original_title": "Avatar 4",
"overview": "The fourth installment of the Avatar franchise.",
"popularity": 15.719,
"poster_path": "/qzMYKnT4MG1d0gnhwytr4cKhUvS.jpg",
"release_date": "2029-12-19",
"title": "Avatar 4",
"video": false,
"vote_average": 0,
"vote_count": 0
},
{
"adult": false,
"backdrop_path": null,
"character": "Corporal Lyle Wainfleet",
"credit_id": "5989ff20c3a3681f6e01a566",
"genre_ids": [
12,
878,
14
],
"id": 393209,
"order": 7,
"original_language": "en",
"original_title": "Avatar 5",
"overview": "",
"popularity": 9.351,
"poster_path": "/rtmmvqkIC5zDMEd638Es2woxbz8.jpg",
"release_date": "2031-12-17",
"title": "Avatar 5",
"video": false,
"vote_average": 0,
"vote_count": 0
},
{
"adult": false,
"backdrop_path": "/dfSAFTqNLfB3YAs9Ppy13EUaNYI.jpg",
"character": "Nick",
"credit_id": "5aa77a280e0a263dc401a029",
"genre_ids": [
28,
53,
80
],
"id": 9257,
"order": 18,
"original_language": "en",
"original_title": "S.W.A.T.",
"overview": "Hondo Harrelson recruits Jim Street to join an elite unit of the Los Angeles Police Department. Together they seek out more members, including tough Deke Kay and single mom Chris Sanchez. The team's first big assignment is to escort crime boss Alex Montel to prison. It seems routine, but when Montel offers a huge reward to anyone who can break him free, criminals of various stripes step up for the prize.",
"popularity": 29.165,
"poster_path": "/bon63yPVIgUFLP2653Dg9GCOJLJ.jpg",
"release_date": "2003-08-08",
"title": "S.W.A.T.",
"video": false,
"vote_average": 6.16,
"vote_count": 2479
},
{
"adult": false,
"backdrop_path": "/r1917G5vqOWmSXvuKHeLU0SI6Dc.jpg",
"character": "Havoc",
"credit_id": "5c9cb50992514124d430e213",
"genre_ids": [
28,
878,
12
],
"id": 72559,
"order": 15,
"original_language": "en",
"original_title": "G.I. Joe: Retaliation",
"overview": "Framed for crimes against the country, the G.I. Joe team is terminated by Presidential order. This forces the G.I. Joes into not only fighting their mortal enemy Cobra; they are forced to contend with threats from within the government that jeopardize their very existence.",
"popularity": 40.347,
"poster_path": "/3rWIZMzTKcCtV0eHJ70Z4Ru659f.jpg",
"release_date": "2013-03-27",
"title": "G.I. Joe: Retaliation",
"video": false,
"vote_average": 5.624,
"vote_count": 5456
},
{
"adult": false,
"backdrop_path": "/gRHRNtiqvn5bBUUIVu09zd8lorW.jpg",
"character": "Driver's Brother",
"credit_id": "5ccb09b3c3a36836bbd97340",
"genre_ids": [
80,
18,
28,
53
],
"id": 41283,
"order": 6,
"original_language": "en",
"original_title": "Faster",
"overview": "After 10 years in prison, Driver is now a free man with a single focus - hunting down the people responsible for brutally murdering his brother.",
"popularity": 37.43,
"poster_path": "/AsUeaXrhw4oscCSjUZ6heh1pVvd.jpg",
"release_date": "2010-11-23",
"title": "Faster",
"video": false,
"vote_average": 6.3,
"vote_count": 1910
},
{
"adult": false,
"backdrop_path": "/rn2EB8kitYpAhCrZR2rXePyZJ7j.jpg",
"character": "Sgt. Eveland",
"credit_id": "5ddef5934d679100171be406",
"genre_ids": [
18,
10752
],
"id": 10687,
"order": 9,
"original_language": "en",
"original_title": "Tigerland",
"overview": "A group of recruits go through Advanced Infantry Training at Fort Polk, Louisiana's infamous Tigerland, last stop before Vietnam for tens of thousands of young men in 1971.",
"popularity": 11.474,
"poster_path": "/pnFdCvxxL44sPLkKEIJCUaIZa7M.jpg",
"release_date": "2000-10-06",
"title": "Tigerland",
"video": false,
"vote_average": 6.6,
"vote_count": 553
},
{
"adult": false,
"backdrop_path": "/vBDHS8bdo5vzqaaqviMupznoRaN.jpg",
"character": "Liebo",
"credit_id": "5ddef5d33faba0001904e69a",
"genre_ids": [
28,
12,
80,
53
],
"id": 11679,
"order": 23,
"original_language": "en",
"original_title": "xXx: State of the Union",
"overview": "Darius Stone's criminal record and extreme sports obsession make him the perfect candidate to be the newest XXX agent. He must save the U.S. government from a deadly conspiracy led by five-star general and Secretary of Defense George Deckert.",
"popularity": 29.863,
"poster_path": "/jFDsnFmlZaYyRL2uN8ZrMfZoeCe.jpg",
"release_date": "2005-04-27",
"title": "xXx: State of the Union",
"video": false,
"vote_average": 5,
"vote_count": 1841
},
{
"adult": false,
"backdrop_path": null,
"character": "Detective Derek Shane",
"credit_id": "5ddfca02202e1100182015dd",
"genre_ids": [
18
],
"id": 499754,
"order": 9,
"original_language": "en",
"original_title": "Restored Me",
"overview": "A troubled ex-con joins the colorful crew of an old movie theater and begins to rebuild his life, only to find his faith in God tested when he learns the theater he has grown to love is not what it seems.",
"popularity": 1.362,
"poster_path": "/xSzlZX6PFucq1v145xA5xYoTpVl.jpg",
"release_date": "2016-09-11",
"title": "Restored Me",
"video": false,
"vote_average": 10,
"vote_count": 1
},
{
"adult": false,
"backdrop_path": "/1geGYUKUNKV3RZJMncJFLckaAxI.jpg",
"character": "Jackie",
"credit_id": "5ddfe101202e110013203be5",
"genre_ids": [
35,
18,
80,
10749,
10402
],
"id": 17952,
"order": 6,
"original_language": "en",
"original_title": "In The Mix",
"overview": "A successful DJ named Darrel (Usher), managed to rescue a powerful mobster one night. In order to repay Darrell, the mobster, Frank Pacelli, gives him the task of protecting his daughter, Dolly (Chriqui)",
"popularity": 12.94,
"poster_path": "/xtsT8pOGo5VZhQobpsVsPHRE0dz.jpg",
"release_date": "2005-11-23",
"title": "In The Mix",
"video": false,
"vote_average": 6.2,
"vote_count": 268
},
{
"adult": false,
"backdrop_path": "/kbXMOnz2RhTSAbLtHX5hy5AXtwv.jpg",
"character": "SWAT Team Leader",
"credit_id": "5e762210b1f68d0019e41bec",
"genre_ids": [
28,
53,
878
],
"id": 296,
"order": 25,
"original_language": "en",
"original_title": "Terminator 3: Rise of the Machines",
"overview": "It's been 10 years since John Connor saved Earth from Judgment Day, and he's now living under the radar, steering clear of using anything Skynet can trace. That is, until he encounters T-X, a robotic assassin ordered to finish what T-1000 started. Good thing Connor's former nemesis, the Terminator, is back to aid the now-adult Connor … just like he promised.",
"popularity": 43.166,
"poster_path": "/vvevzdYIrk2636maNW4qeWmlPFG.jpg",
"release_date": "2003-07-02",
"title": "Terminator 3: Rise of the Machines",
"video": false,
"vote_average": 6.164,
"vote_count": 6620
}
],
"crew": [],
"id": 98215
}People
Movie Credits
This endpoint is used to get the movie credits for a person.
GET
/
3
/
person
/
{person_id}
/
movie_credits
Movie Credits
curl --request GET \
--url 'https://api.themoviedb.org/3/person/{person_id}/movie_credits?%7B%7Bkey%7D%7D='import requests
url = "https://api.themoviedb.org/3/person/{person_id}/movie_credits?%7B%7Bkey%7D%7D="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/person/{person_id}/movie_credits?%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/person/{person_id}/movie_credits?%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/person/{person_id}/movie_credits?%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/person/{person_id}/movie_credits?%7B%7Bkey%7D%7D=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/person/{person_id}/movie_credits?%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{
"cast": [
{
"adult": false,
"backdrop_path": "/3rVtoCyClDZh6vt7tRUBWVoIOnR.jpg",
"character": "Arresting Officer",
"credit_id": "618da31c10dad60028a06c66",
"genre_ids": [
18,
53
],
"id": 21719,
"order": 24,
"original_language": "en",
"original_title": "The Minus Man",
"overview": "When the quiet and amiable Vann Siegert drifts into town, no one suspects the evil that lies beneath the surface. Despite his easy charm, Vann is merely a reflection of what those he encounters want him to be. Soon, as locals start to disappear, it becomes clear that an eerie subtraction is at work in the sleepy hamlet.",
"popularity": 7.453,
"poster_path": "/vrnI5WePtq2iXkcmeYnMrLCpI9B.jpg",
"release_date": "1999-02-25",
"title": "The Minus Man",
"video": false,
"vote_average": 5.4,
"vote_count": 93
},
{
"adult": false,
"backdrop_path": "/8NT8cPiD9yTAI2iEfsDPQZAYFsO.jpg",
"character": "Detective Ryan",
"credit_id": "52fe45be9251416c75060ebf",
"genre_ids": [
35,
18
],
"id": 13973,
"order": 12,
"original_language": "en",
"original_title": "Choke",
"overview": "A sex-addicted con-man pays for his mother's hospital bills by playing on the sympathies of those who rescue him from choking to death.",
"popularity": 8.108,
"poster_path": "/7osy71os3YLiFpNYn567koOnAKZ.jpg",
"release_date": "2008-09-26",
"title": "Choke",
"video": false,
"vote_average": 6.114,
"vote_count": 389
},
{
"adult": false,
"backdrop_path": "/jFh87Hj9Yp8QQPYmcNBAZNaa4Y.jpg",
"character": "Hodges",
"credit_id": "52fe4633c3a368484e084375",
"genre_ids": [
28,
53
],
"id": 60747,
"order": 10,
"original_language": "en",
"original_title": "Red Dawn",
"overview": "A city in Washington state awakens to the surreal sight of foreign paratroopers dropping from the sky—shockingly, the U.S. has been invaded and their hometown is the initial target. Quickly and without warning, the citizens find themselves prisoners and their town under enemy occupation. Determined to fight back, a group of young patriots seek refuge in the surrounding woods, training and reorganizing themselves into a guerrilla group of fighters.",
"popularity": 44.127,
"poster_path": "/aHdxKDX36NOEYE2NyAyP7ThuAcm.jpg",
"release_date": "2012-03-15",
"title": "Red Dawn",
"video": false,
"vote_average": 5.704,
"vote_count": 1604
},
{
"adult": false,
"backdrop_path": "/vL5LR6WdxWPjLPFRLe133jXWsh5.jpg",
"character": "Corporal Lyle Wainfleet",
"credit_id": "52fe48009251416c750ac9f5",
"genre_ids": [
28,
12,
14,
878
],
"id": 19995,
"order": 11,
"original_language": "en",
"original_title": "Avatar",
"overview": "In the 22nd century, a paraplegic Marine is dispatched to the moon Pandora on a unique mission, but becomes torn between following orders and protecting an alien civilization.",
"popularity": 107.522,
"poster_path": "/kyeqWdyUXW608qlYkRqosgbbJyK.jpg",
"release_date": "2009-12-15",
"title": "Avatar",
"video": false,
"vote_average": 7.583,
"vote_count": 31574
},
{
"adult": false,
"backdrop_path": "/zHUsTabS4RMOtGs2hZsvgrtb5y3.jpg",
"character": "Officer #2",
"credit_id": "645feed8dbbb420119f46ca8",
"genre_ids": [
18
],
"id": 334,
"order": 77,
"original_language": "en",
"original_title": "Magnolia",
"overview": "On one random day in the San Fernando Valley, a dying father, a young wife, a male caretaker, a famous lost son, a police officer in love, a boy genius, an ex-boy genius, a game show host and an estranged daughter will each become part of a dazzling multiplicity of plots, but one story.",
"popularity": 31.019,
"poster_path": "/uq2u8HgtLFJkjNq2kHb2jvipIPT.jpg",
"release_date": "1999-12-17",
"title": "Magnolia",
"video": false,
"vote_average": 7.7,
"vote_count": 3538
},
{
"adult": false,
"backdrop_path": "/viwOsqPOSBS519lT9zGqXH8kpbC.jpg",
"character": "Michael Ortiz",
"credit_id": "52fe48f6c3a36847f8182689",
"genre_ids": [
35,
18
],
"id": 56272,
"order": 12,
"original_language": "en",
"original_title": "Elektra Luxx",
"overview": "A favor for a woman from her past throws the life of a pregnant, retired porn star into chaos.",
"popularity": 6.19,
"poster_path": "/eLv57AjGugpx2shfaq9crEBVioL.jpg",
"release_date": "2011-03-11",
"title": "Elektra Luxx",
"video": false,
"vote_average": 4.755,
"vote_count": 145
},
{
"adult": false,
"backdrop_path": "/1pgiezGVzht05L2Z96Ex83zDCGr.jpg",
"character": "Billy Morrison",
"credit_id": "52fe4a83c3a368484e15797d",
"genre_ids": [
9648,
18,
28,
80
],
"id": 122800,
"order": 4,
"original_language": "en",
"original_title": "Freelancers",
"overview": "The son of a slain NYPD officer joins the force, where he falls in with his father's former partner and a team of rogue cops. His new boss, Sarcone, will see if he has what it takes to be rogue through many trials and tribulations of loyalty, trust and respect. When the truth about his father's death is revealed revenge takes him over and he won't stop until justice has been truly served.",
"popularity": 11.937,
"poster_path": "/8jdYImZW75JlZN70A0uzls4uL16.jpg",
"release_date": "2012-08-10",
"title": "Freelancers",
"video": false,
"vote_average": 5.1,
"vote_count": 235
},
{
"adult": false,
"backdrop_path": "/5b0jdmJvsig3vckvHdGFv3vWPay.jpg",
"character": "Roag",
"credit_id": "52fe4a88c3a36847f81d39f5",
"genre_ids": [
28,
53
],
"id": 107846,
"order": 10,
"original_language": "en",
"original_title": "Escape Plan",
"overview": "Ray Breslin is the world's foremost authority on structural security. After analyzing every high security prison and learning a vast array of survival skills so he can design escape-proof prisons, his skills are put to the test. He's framed and incarcerated in a master prison he designed himself. He needs to escape and find the person who put him behind bars.",
"popularity": 46.435,
"poster_path": "/k09ydRsOtdjCUxierkknRdujIF2.jpg",
"release_date": "2013-10-09",
"title": "Escape Plan",
"video": false,
"vote_average": 6.727,
"vote_count": 5134
},
{
"adult": false,
"backdrop_path": "/uEwGFGtao9YG2JolmdvtHLLVbA9.jpg",
"character": "Self",
"credit_id": "52fe4af6c3a36847f81eaaf5",
"genre_ids": [
99
],
"id": 111332,
"order": 8,
"original_language": "en",
"original_title": "Avatar: Creating the World of Pandora",
"overview": "The Making-of James Cameron's Avatar. It shows interesting parts of the work on the set.",
"popularity": 16.121,
"poster_path": "/d9oqcfeCyc3zmMal6eJbfj3gatc.jpg",
"release_date": "2010-02-07",
"title": "Avatar: Creating the World of Pandora",
"video": false,
"vote_average": 6.6,
"vote_count": 154
},
{
"adult": false,
"backdrop_path": "/xLW4UQ4zYf7fHrei9pqx4fJsfKy.jpg",
"character": "Ed Stauber",
"credit_id": "52fe4d9b9251416c9111bfe1",
"genre_ids": [
53,
80
],
"id": 199373,
"order": 11,
"original_language": "en",
"original_title": "The Frozen Ground",
"overview": "An Alaska State Trooper partners with a young woman who escaped the clutches of serial killer Robert Hansen to bring the murderer to justice. Based on actual events.",
"popularity": 15.895,
"poster_path": "/hHDj1h3lJvYd9Cervoswz9crhWg.jpg",
"release_date": "2013-07-11",
"title": "The Frozen Ground",
"video": false,
"vote_average": 6.281,
"vote_count": 1453
},
{
"adult": false,
"backdrop_path": "/e6RHrRaG8t5o2REYMfYkvhoamw2.jpg",
"character": "White Power Dave",
"credit_id": "52fe4e9d9251416c91137ce1",
"genre_ids": [
28,
35,
14
],
"id": 253980,
"order": 4,
"original_language": "en",
"original_title": "Marvel One-Shot: All Hail the King",
"overview": "A documentary filmmaker interviews the now-famous Trevor Slattery from behind bars.",
"popularity": 12.074,
"poster_path": "/ozXvopXv1TiOTls8zb09dBmu9dt.jpg",
"release_date": "2014-02-04",
"title": "Marvel One-Shot: All Hail the King",
"video": false,
"vote_average": 6.8,
"vote_count": 534
},
{
"adult": false,
"backdrop_path": "/z8pQocUi56yIAToFjrmSumQ7VAL.jpg",
"character": "Sloman",
"credit_id": "554e688bc3a3685e500079f8",
"genre_ids": [
53,
80,
9648
],
"id": 339527,
"order": 4,
"original_language": "en",
"original_title": "Solace",
"overview": "A psychic doctor, John Clancy, works with an FBI special agent in search of a serial killer.",
"popularity": 16.647,
"poster_path": "/pbcXpZgem8kgr90RwIUNAbC2ite.jpg",
"release_date": "2015-09-03",
"title": "Solace",
"video": false,
"vote_average": 6.4,
"vote_count": 2201
},
{
"adult": false,
"backdrop_path": "/hehboYLXB3m90x9ybiBsupwuifL.jpg",
"character": "Phil Cole",
"credit_id": "55891aafc3a368210400060a",
"genre_ids": [
80,
18,
53
],
"id": 339692,
"order": 13,
"original_language": "en",
"original_title": "Shot Caller",
"overview": "A newly-released prison gangster is forced by the leaders of his gang to orchestrate a major crime with a brutal rival gang on the streets of Southern California.",
"popularity": 53.653,
"poster_path": "/qLmLz2wtyYvmW8Ult3l2ngOnW8v.jpg",
"release_date": "2017-07-13",
"title": "Shot Caller",
"video": false,
"vote_average": 7,
"vote_count": 2021
},
{
"adult": false,
"backdrop_path": "/6VoxDupaW2VXfLtJyeOoGCgXSjD.jpg",
"character": "Captain Fabrizio",
"credit_id": "662b881801b1ca011ee3fe28",
"genre_ids": [
28,
53
],
"id": 1116490,
"order": 13,
"original_language": "en",
"original_title": "Cash Out",
"overview": "Criminal mastermind Mason is about to execute the score of a lifetime when his lover and key member of his crew, Decker, takes the team down and reveals she’s an undercover Interpol agent. Heartbroken, Mason escapes and retires from the life of crime until his younger brother Shawn is out of his league taking on a big bank heist all on his own. Mason has no choice left but to come to the rescue, while Interpol brings Decker in hoping to unnerve him. Before the SWAT teams storm the bank, Mason must use every tool in his arsenal to not only escape with the prize, but also the love of his life.",
"popularity": 238.932,
"poster_path": "/xBJnIvRdL0nDHgvivr6EgBQizes.jpg",
"release_date": "2024-04-26",
"title": "Cash Out",
"video": false,
"vote_average": 6.4,
"vote_count": 138
},
{
"adult": false,
"backdrop_path": "/mMoG4nPSDupXIXOwVvpexZY2W0N.jpg",
"character": "Harrison",
"credit_id": "575b0319c3a36854030002dc",
"genre_ids": [
28,
18,
53
],
"id": 254128,
"order": 12,
"original_language": "en",
"original_title": "San Andreas",
"overview": "In the aftermath of a massive earthquake in California, a rescue-chopper pilot makes a dangerous journey across the state in order to rescue his estranged daughter.",
"popularity": 53.852,
"poster_path": "/2Gfjn962aaFSD6eST6QU3oLDZTo.jpg",
"release_date": "2015-05-27",
"title": "San Andreas",
"video": false,
"vote_average": 6.2,
"vote_count": 8526
},
{
"adult": false,
"backdrop_path": "/hu4psJoKxDYezvvS4GlLF531fom.jpg",
"character": "Hicks",
"credit_id": "5830cb74c3a3685bb00160c2",
"genre_ids": [
14,
28,
53
],
"id": 400106,
"order": 10,
"original_language": "en",
"original_title": "Bright",
"overview": "In an alternate present-day where magical creatures live among us, two L.A. cops become embroiled in a prophesied turf battle.",
"popularity": 21.235,
"poster_path": "/whkT53Sv2vKAUiknQ13pqcWaPXB.jpg",
"release_date": "2017-12-22",
"title": "Bright",
"video": false,
"vote_average": 6.152,
"vote_count": 5623
},
{
"adult": false,
"backdrop_path": "/vm8mhrjk5nQ562UQ0KbUzi0yOHr.jpg",
"character": "Zammit",
"credit_id": "58c9dabfc3a3684150000e2f",
"genre_ids": [
28,
12,
878
],
"id": 427641,
"order": 11,
"original_language": "en",
"original_title": "Rampage",
"overview": "Primatologist Davis Okoye shares an unshakable bond with George, the extraordinarily intelligent, silverback gorilla who has been in his care since birth. But a rogue genetic experiment gone awry mutates this gentle ape into a raging creature of enormous size. To make matters worse, it’s soon discovered there are other similarly altered animals. As these newly created alpha predators tear across North America, destroying everything in their path, Okoye teams with a discredited genetic engineer to secure an antidote, fighting his way through an ever-changing battlefield, not only to halt a global catastrophe but to save the fearsome creature that was once his friend.",
"popularity": 49.44,
"poster_path": "/MGADip4thVSErP34FAAfzFBTZ5.jpg",
"release_date": "2018-04-11",
"title": "Rampage",
"video": false,
"vote_average": 6.5,
"vote_count": 7037
},
{
"adult": false,
"backdrop_path": "/uGhqlElLECQgYbJPDdqpJF6agks.jpg",
"character": "Agent #1",
"credit_id": "58dbe537925141338100e720",
"genre_ids": [
53,
80,
18
],
"id": 37516,
"order": 28,
"original_language": "en",
"original_title": "Judas Kiss",
"overview": "The shooting of a U.S. senator's wife raises the stakes for kidnappers seeking a hefty ransom for a computer magnate.",
"popularity": 6.564,
"poster_path": "/aBwSiD2kjlarWe7zXYFvfGdlUon.jpg",
"release_date": "1998-09-16",
"title": "Judas Kiss",
"video": false,
"vote_average": 5.6,
"vote_count": 56
},
{
"adult": false,
"backdrop_path": "/8rpDcsfLJypbO6vREc0547VKqEv.jpg",
"character": "Recom Wainfleet",
"credit_id": "5989fe3f9251414bb4019aa4",
"genre_ids": [
878,
12,
28
],
"id": 76600,
"order": 20,
"original_language": "en",
"original_title": "Avatar: The Way of Water",
"overview": "Set more than a decade after the events of the first film, learn the story of the Sully family (Jake, Neytiri, and their kids), the trouble that follows them, the lengths they go to keep each other safe, the battles they fight to stay alive, and the tragedies they endure.",
"popularity": 130.396,
"poster_path": "/t6HIqrRAclMCA60NsSmeqe9RmNV.jpg",
"release_date": "2022-12-14",
"title": "Avatar: The Way of Water",
"video": false,
"vote_average": 7.6,
"vote_count": 11982
},
{
"adult": false,
"backdrop_path": "/1ToHikA7BtTxMD4YGyuwBURyv2W.jpg",
"character": "Corporal Lyle Wainfleet",
"credit_id": "5989fe719251414bb4019ae9",
"genre_ids": [
878,
12,
14
],
"id": 83533,
"order": 19,
"original_language": "en",
"original_title": "Avatar: Fire and Ash",
"overview": "In the wake of the devastating war against the RDA and the loss of their eldest son, Jake Sully and Neytiri face a new threat on Pandora: the Ash People, a violent and power-hungry Na'vi tribe led by the ruthless Varang. Jake's family must fight for their survival and the future of Pandora in a conflict that pushes them to their emotional and physical limits.",
"popularity": 29.492,
"poster_path": "/vDdFxksDMkUJjZXd00OKJfwXKre.jpg",
"release_date": "2025-12-17",
"title": "Avatar: Fire and Ash",
"video": false,
"vote_average": 0,
"vote_count": 0
},
{
"adult": false,
"backdrop_path": null,
"character": "Corporal Lyle Wainfleet",
"credit_id": "5989fef49251416b500174e3",
"genre_ids": [
878,
12,
14
],
"id": 216527,
"order": 8,
"original_language": "en",
"original_title": "Avatar 4",
"overview": "The fourth installment of the Avatar franchise.",
"popularity": 15.719,
"poster_path": "/qzMYKnT4MG1d0gnhwytr4cKhUvS.jpg",
"release_date": "2029-12-19",
"title": "Avatar 4",
"video": false,
"vote_average": 0,
"vote_count": 0
},
{
"adult": false,
"backdrop_path": null,
"character": "Corporal Lyle Wainfleet",
"credit_id": "5989ff20c3a3681f6e01a566",
"genre_ids": [
12,
878,
14
],
"id": 393209,
"order": 7,
"original_language": "en",
"original_title": "Avatar 5",
"overview": "",
"popularity": 9.351,
"poster_path": "/rtmmvqkIC5zDMEd638Es2woxbz8.jpg",
"release_date": "2031-12-17",
"title": "Avatar 5",
"video": false,
"vote_average": 0,
"vote_count": 0
},
{
"adult": false,
"backdrop_path": "/dfSAFTqNLfB3YAs9Ppy13EUaNYI.jpg",
"character": "Nick",
"credit_id": "5aa77a280e0a263dc401a029",
"genre_ids": [
28,
53,
80
],
"id": 9257,
"order": 18,
"original_language": "en",
"original_title": "S.W.A.T.",
"overview": "Hondo Harrelson recruits Jim Street to join an elite unit of the Los Angeles Police Department. Together they seek out more members, including tough Deke Kay and single mom Chris Sanchez. The team's first big assignment is to escort crime boss Alex Montel to prison. It seems routine, but when Montel offers a huge reward to anyone who can break him free, criminals of various stripes step up for the prize.",
"popularity": 29.165,
"poster_path": "/bon63yPVIgUFLP2653Dg9GCOJLJ.jpg",
"release_date": "2003-08-08",
"title": "S.W.A.T.",
"video": false,
"vote_average": 6.16,
"vote_count": 2479
},
{
"adult": false,
"backdrop_path": "/r1917G5vqOWmSXvuKHeLU0SI6Dc.jpg",
"character": "Havoc",
"credit_id": "5c9cb50992514124d430e213",
"genre_ids": [
28,
878,
12
],
"id": 72559,
"order": 15,
"original_language": "en",
"original_title": "G.I. Joe: Retaliation",
"overview": "Framed for crimes against the country, the G.I. Joe team is terminated by Presidential order. This forces the G.I. Joes into not only fighting their mortal enemy Cobra; they are forced to contend with threats from within the government that jeopardize their very existence.",
"popularity": 40.347,
"poster_path": "/3rWIZMzTKcCtV0eHJ70Z4Ru659f.jpg",
"release_date": "2013-03-27",
"title": "G.I. Joe: Retaliation",
"video": false,
"vote_average": 5.624,
"vote_count": 5456
},
{
"adult": false,
"backdrop_path": "/gRHRNtiqvn5bBUUIVu09zd8lorW.jpg",
"character": "Driver's Brother",
"credit_id": "5ccb09b3c3a36836bbd97340",
"genre_ids": [
80,
18,
28,
53
],
"id": 41283,
"order": 6,
"original_language": "en",
"original_title": "Faster",
"overview": "After 10 years in prison, Driver is now a free man with a single focus - hunting down the people responsible for brutally murdering his brother.",
"popularity": 37.43,
"poster_path": "/AsUeaXrhw4oscCSjUZ6heh1pVvd.jpg",
"release_date": "2010-11-23",
"title": "Faster",
"video": false,
"vote_average": 6.3,
"vote_count": 1910
},
{
"adult": false,
"backdrop_path": "/rn2EB8kitYpAhCrZR2rXePyZJ7j.jpg",
"character": "Sgt. Eveland",
"credit_id": "5ddef5934d679100171be406",
"genre_ids": [
18,
10752
],
"id": 10687,
"order": 9,
"original_language": "en",
"original_title": "Tigerland",
"overview": "A group of recruits go through Advanced Infantry Training at Fort Polk, Louisiana's infamous Tigerland, last stop before Vietnam for tens of thousands of young men in 1971.",
"popularity": 11.474,
"poster_path": "/pnFdCvxxL44sPLkKEIJCUaIZa7M.jpg",
"release_date": "2000-10-06",
"title": "Tigerland",
"video": false,
"vote_average": 6.6,
"vote_count": 553
},
{
"adult": false,
"backdrop_path": "/vBDHS8bdo5vzqaaqviMupznoRaN.jpg",
"character": "Liebo",
"credit_id": "5ddef5d33faba0001904e69a",
"genre_ids": [
28,
12,
80,
53
],
"id": 11679,
"order": 23,
"original_language": "en",
"original_title": "xXx: State of the Union",
"overview": "Darius Stone's criminal record and extreme sports obsession make him the perfect candidate to be the newest XXX agent. He must save the U.S. government from a deadly conspiracy led by five-star general and Secretary of Defense George Deckert.",
"popularity": 29.863,
"poster_path": "/jFDsnFmlZaYyRL2uN8ZrMfZoeCe.jpg",
"release_date": "2005-04-27",
"title": "xXx: State of the Union",
"video": false,
"vote_average": 5,
"vote_count": 1841
},
{
"adult": false,
"backdrop_path": null,
"character": "Detective Derek Shane",
"credit_id": "5ddfca02202e1100182015dd",
"genre_ids": [
18
],
"id": 499754,
"order": 9,
"original_language": "en",
"original_title": "Restored Me",
"overview": "A troubled ex-con joins the colorful crew of an old movie theater and begins to rebuild his life, only to find his faith in God tested when he learns the theater he has grown to love is not what it seems.",
"popularity": 1.362,
"poster_path": "/xSzlZX6PFucq1v145xA5xYoTpVl.jpg",
"release_date": "2016-09-11",
"title": "Restored Me",
"video": false,
"vote_average": 10,
"vote_count": 1
},
{
"adult": false,
"backdrop_path": "/1geGYUKUNKV3RZJMncJFLckaAxI.jpg",
"character": "Jackie",
"credit_id": "5ddfe101202e110013203be5",
"genre_ids": [
35,
18,
80,
10749,
10402
],
"id": 17952,
"order": 6,
"original_language": "en",
"original_title": "In The Mix",
"overview": "A successful DJ named Darrel (Usher), managed to rescue a powerful mobster one night. In order to repay Darrell, the mobster, Frank Pacelli, gives him the task of protecting his daughter, Dolly (Chriqui)",
"popularity": 12.94,
"poster_path": "/xtsT8pOGo5VZhQobpsVsPHRE0dz.jpg",
"release_date": "2005-11-23",
"title": "In The Mix",
"video": false,
"vote_average": 6.2,
"vote_count": 268
},
{
"adult": false,
"backdrop_path": "/kbXMOnz2RhTSAbLtHX5hy5AXtwv.jpg",
"character": "SWAT Team Leader",
"credit_id": "5e762210b1f68d0019e41bec",
"genre_ids": [
28,
53,
878
],
"id": 296,
"order": 25,
"original_language": "en",
"original_title": "Terminator 3: Rise of the Machines",
"overview": "It's been 10 years since John Connor saved Earth from Judgment Day, and he's now living under the radar, steering clear of using anything Skynet can trace. That is, until he encounters T-X, a robotic assassin ordered to finish what T-1000 started. Good thing Connor's former nemesis, the Terminator, is back to aid the now-adult Connor … just like he promised.",
"popularity": 43.166,
"poster_path": "/vvevzdYIrk2636maNW4qeWmlPFG.jpg",
"release_date": "2003-07-02",
"title": "Terminator 3: Rise of the Machines",
"video": false,
"vote_average": 6.164,
"vote_count": 6620
}
],
"crew": [],
"id": 98215
}Authorizations
Path Parameters
integer
Example:
"98215"
Response
200 - application/json
OK
Show child attributes
Show child attributes
Example:
[
{
"adult": false,
"backdrop_path": "/3rVtoCyClDZh6vt7tRUBWVoIOnR.jpg",
"character": "Arresting Officer",
"credit_id": "618da31c10dad60028a06c66",
"genre_ids": [18, 53],
"id": 21719,
"order": 24,
"original_language": "en",
"original_title": "The Minus Man",
"overview": "When the quiet and amiable Vann Siegert drifts into town, no one suspects the evil that lies beneath the surface. Despite his easy charm, Vann is merely a reflection of what those he encounters want him to be. Soon, as locals start to disappear, it becomes clear that an eerie subtraction is at work in the sleepy hamlet.",
"popularity": 7.453,
"poster_path": "/vrnI5WePtq2iXkcmeYnMrLCpI9B.jpg",
"release_date": "1999-02-25",
"title": "The Minus Man",
"video": false,
"vote_average": 5.4,
"vote_count": 93
},
{
"adult": false,
"backdrop_path": "/8NT8cPiD9yTAI2iEfsDPQZAYFsO.jpg",
"character": "Detective Ryan",
"credit_id": "52fe45be9251416c75060ebf",
"genre_ids": [35, 18],
"id": 13973,
"order": 12,
"original_language": "en",
"original_title": "Choke",
"overview": "A sex-addicted con-man pays for his mother's hospital bills by playing on the sympathies of those who rescue him from choking to death.",
"popularity": 8.108,
"poster_path": "/7osy71os3YLiFpNYn567koOnAKZ.jpg",
"release_date": "2008-09-26",
"title": "Choke",
"video": false,
"vote_average": 6.114,
"vote_count": 389
},
{
"adult": false,
"backdrop_path": "/jFh87Hj9Yp8QQPYmcNBAZNaa4Y.jpg",
"character": "Hodges",
"credit_id": "52fe4633c3a368484e084375",
"genre_ids": [28, 53],
"id": 60747,
"order": 10,
"original_language": "en",
"original_title": "Red Dawn",
"overview": "A city in Washington state awakens to the surreal sight of foreign paratroopers dropping from the sky—shockingly, the U.S. has been invaded and their hometown is the initial target. Quickly and without warning, the citizens find themselves prisoners and their town under enemy occupation. Determined to fight back, a group of young patriots seek refuge in the surrounding woods, training and reorganizing themselves into a guerrilla group of fighters.",
"popularity": 44.127,
"poster_path": "/aHdxKDX36NOEYE2NyAyP7ThuAcm.jpg",
"release_date": "2012-03-15",
"title": "Red Dawn",
"video": false,
"vote_average": 5.704,
"vote_count": 1604
},
{
"adult": false,
"backdrop_path": "/vL5LR6WdxWPjLPFRLe133jXWsh5.jpg",
"character": "Corporal Lyle Wainfleet",
"credit_id": "52fe48009251416c750ac9f5",
"genre_ids": [28, 12, 14, 878],
"id": 19995,
"order": 11,
"original_language": "en",
"original_title": "Avatar",
"overview": "In the 22nd century, a paraplegic Marine is dispatched to the moon Pandora on a unique mission, but becomes torn between following orders and protecting an alien civilization.",
"popularity": 107.522,
"poster_path": "/kyeqWdyUXW608qlYkRqosgbbJyK.jpg",
"release_date": "2009-12-15",
"title": "Avatar",
"video": false,
"vote_average": 7.583,
"vote_count": 31574
},
{
"adult": false,
"backdrop_path": "/zHUsTabS4RMOtGs2hZsvgrtb5y3.jpg",
"character": "Officer #2",
"credit_id": "645feed8dbbb420119f46ca8",
"genre_ids": [18],
"id": 334,
"order": 77,
"original_language": "en",
"original_title": "Magnolia",
"overview": "On one random day in the San Fernando Valley, a dying father, a young wife, a male caretaker, a famous lost son, a police officer in love, a boy genius, an ex-boy genius, a game show host and an estranged daughter will each become part of a dazzling multiplicity of plots, but one story.",
"popularity": 31.019,
"poster_path": "/uq2u8HgtLFJkjNq2kHb2jvipIPT.jpg",
"release_date": "1999-12-17",
"title": "Magnolia",
"video": false,
"vote_average": 7.7,
"vote_count": 3538
},
{
"adult": false,
"backdrop_path": "/viwOsqPOSBS519lT9zGqXH8kpbC.jpg",
"character": "Michael Ortiz",
"credit_id": "52fe48f6c3a36847f8182689",
"genre_ids": [35, 18],
"id": 56272,
"order": 12,
"original_language": "en",
"original_title": "Elektra Luxx",
"overview": "A favor for a woman from her past throws the life of a pregnant, retired porn star into chaos.",
"popularity": 6.19,
"poster_path": "/eLv57AjGugpx2shfaq9crEBVioL.jpg",
"release_date": "2011-03-11",
"title": "Elektra Luxx",
"video": false,
"vote_average": 4.755,
"vote_count": 145
},
{
"adult": false,
"backdrop_path": "/1pgiezGVzht05L2Z96Ex83zDCGr.jpg",
"character": "Billy Morrison",
"credit_id": "52fe4a83c3a368484e15797d",
"genre_ids": [9648, 18, 28, 80],
"id": 122800,
"order": 4,
"original_language": "en",
"original_title": "Freelancers",
"overview": "The son of a slain NYPD officer joins the force, where he falls in with his father's former partner and a team of rogue cops. His new boss, Sarcone, will see if he has what it takes to be rogue through many trials and tribulations of loyalty, trust and respect. When the truth about his father's death is revealed revenge takes him over and he won't stop until justice has been truly served.",
"popularity": 11.937,
"poster_path": "/8jdYImZW75JlZN70A0uzls4uL16.jpg",
"release_date": "2012-08-10",
"title": "Freelancers",
"video": false,
"vote_average": 5.1,
"vote_count": 235
},
{
"adult": false,
"backdrop_path": "/5b0jdmJvsig3vckvHdGFv3vWPay.jpg",
"character": "Roag",
"credit_id": "52fe4a88c3a36847f81d39f5",
"genre_ids": [28, 53],
"id": 107846,
"order": 10,
"original_language": "en",
"original_title": "Escape Plan",
"overview": "Ray Breslin is the world's foremost authority on structural security. After analyzing every high security prison and learning a vast array of survival skills so he can design escape-proof prisons, his skills are put to the test. He's framed and incarcerated in a master prison he designed himself. He needs to escape and find the person who put him behind bars.",
"popularity": 46.435,
"poster_path": "/k09ydRsOtdjCUxierkknRdujIF2.jpg",
"release_date": "2013-10-09",
"title": "Escape Plan",
"video": false,
"vote_average": 6.727,
"vote_count": 5134
},
{
"adult": false,
"backdrop_path": "/uEwGFGtao9YG2JolmdvtHLLVbA9.jpg",
"character": "Self",
"credit_id": "52fe4af6c3a36847f81eaaf5",
"genre_ids": [99],
"id": 111332,
"order": 8,
"original_language": "en",
"original_title": "Avatar: Creating the World of Pandora",
"overview": "The Making-of James Cameron's Avatar. It shows interesting parts of the work on the set.",
"popularity": 16.121,
"poster_path": "/d9oqcfeCyc3zmMal6eJbfj3gatc.jpg",
"release_date": "2010-02-07",
"title": "Avatar: Creating the World of Pandora",
"video": false,
"vote_average": 6.6,
"vote_count": 154
},
{
"adult": false,
"backdrop_path": "/xLW4UQ4zYf7fHrei9pqx4fJsfKy.jpg",
"character": "Ed Stauber",
"credit_id": "52fe4d9b9251416c9111bfe1",
"genre_ids": [53, 80],
"id": 199373,
"order": 11,
"original_language": "en",
"original_title": "The Frozen Ground",
"overview": "An Alaska State Trooper partners with a young woman who escaped the clutches of serial killer Robert Hansen to bring the murderer to justice. Based on actual events.",
"popularity": 15.895,
"poster_path": "/hHDj1h3lJvYd9Cervoswz9crhWg.jpg",
"release_date": "2013-07-11",
"title": "The Frozen Ground",
"video": false,
"vote_average": 6.281,
"vote_count": 1453
},
{
"adult": false,
"backdrop_path": "/e6RHrRaG8t5o2REYMfYkvhoamw2.jpg",
"character": "White Power Dave",
"credit_id": "52fe4e9d9251416c91137ce1",
"genre_ids": [28, 35, 14],
"id": 253980,
"order": 4,
"original_language": "en",
"original_title": "Marvel One-Shot: All Hail the King",
"overview": "A documentary filmmaker interviews the now-famous Trevor Slattery from behind bars.",
"popularity": 12.074,
"poster_path": "/ozXvopXv1TiOTls8zb09dBmu9dt.jpg",
"release_date": "2014-02-04",
"title": "Marvel One-Shot: All Hail the King",
"video": false,
"vote_average": 6.8,
"vote_count": 534
},
{
"adult": false,
"backdrop_path": "/z8pQocUi56yIAToFjrmSumQ7VAL.jpg",
"character": "Sloman",
"credit_id": "554e688bc3a3685e500079f8",
"genre_ids": [53, 80, 9648],
"id": 339527,
"order": 4,
"original_language": "en",
"original_title": "Solace",
"overview": "A psychic doctor, John Clancy, works with an FBI special agent in search of a serial killer.",
"popularity": 16.647,
"poster_path": "/pbcXpZgem8kgr90RwIUNAbC2ite.jpg",
"release_date": "2015-09-03",
"title": "Solace",
"video": false,
"vote_average": 6.4,
"vote_count": 2201
},
{
"adult": false,
"backdrop_path": "/hehboYLXB3m90x9ybiBsupwuifL.jpg",
"character": "Phil Cole",
"credit_id": "55891aafc3a368210400060a",
"genre_ids": [80, 18, 53],
"id": 339692,
"order": 13,
"original_language": "en",
"original_title": "Shot Caller",
"overview": "A newly-released prison gangster is forced by the leaders of his gang to orchestrate a major crime with a brutal rival gang on the streets of Southern California.",
"popularity": 53.653,
"poster_path": "/qLmLz2wtyYvmW8Ult3l2ngOnW8v.jpg",
"release_date": "2017-07-13",
"title": "Shot Caller",
"video": false,
"vote_average": 7,
"vote_count": 2021
},
{
"adult": false,
"backdrop_path": "/6VoxDupaW2VXfLtJyeOoGCgXSjD.jpg",
"character": "Captain Fabrizio",
"credit_id": "662b881801b1ca011ee3fe28",
"genre_ids": [28, 53],
"id": 1116490,
"order": 13,
"original_language": "en",
"original_title": "Cash Out",
"overview": "Criminal mastermind Mason is about to execute the score of a lifetime when his lover and key member of his crew, Decker, takes the team down and reveals she’s an undercover Interpol agent. Heartbroken, Mason escapes and retires from the life of crime until his younger brother Shawn is out of his league taking on a big bank heist all on his own. Mason has no choice left but to come to the rescue, while Interpol brings Decker in hoping to unnerve him. Before the SWAT teams storm the bank, Mason must use every tool in his arsenal to not only escape with the prize, but also the love of his life.",
"popularity": 238.932,
"poster_path": "/xBJnIvRdL0nDHgvivr6EgBQizes.jpg",
"release_date": "2024-04-26",
"title": "Cash Out",
"video": false,
"vote_average": 6.4,
"vote_count": 138
},
{
"adult": false,
"backdrop_path": "/mMoG4nPSDupXIXOwVvpexZY2W0N.jpg",
"character": "Harrison",
"credit_id": "575b0319c3a36854030002dc",
"genre_ids": [28, 18, 53],
"id": 254128,
"order": 12,
"original_language": "en",
"original_title": "San Andreas",
"overview": "In the aftermath of a massive earthquake in California, a rescue-chopper pilot makes a dangerous journey across the state in order to rescue his estranged daughter.",
"popularity": 53.852,
"poster_path": "/2Gfjn962aaFSD6eST6QU3oLDZTo.jpg",
"release_date": "2015-05-27",
"title": "San Andreas",
"video": false,
"vote_average": 6.2,
"vote_count": 8526
},
{
"adult": false,
"backdrop_path": "/hu4psJoKxDYezvvS4GlLF531fom.jpg",
"character": "Hicks",
"credit_id": "5830cb74c3a3685bb00160c2",
"genre_ids": [14, 28, 53],
"id": 400106,
"order": 10,
"original_language": "en",
"original_title": "Bright",
"overview": "In an alternate present-day where magical creatures live among us, two L.A. cops become embroiled in a prophesied turf battle.",
"popularity": 21.235,
"poster_path": "/whkT53Sv2vKAUiknQ13pqcWaPXB.jpg",
"release_date": "2017-12-22",
"title": "Bright",
"video": false,
"vote_average": 6.152,
"vote_count": 5623
},
{
"adult": false,
"backdrop_path": "/vm8mhrjk5nQ562UQ0KbUzi0yOHr.jpg",
"character": "Zammit",
"credit_id": "58c9dabfc3a3684150000e2f",
"genre_ids": [28, 12, 878],
"id": 427641,
"order": 11,
"original_language": "en",
"original_title": "Rampage",
"overview": "Primatologist Davis Okoye shares an unshakable bond with George, the extraordinarily intelligent, silverback gorilla who has been in his care since birth. But a rogue genetic experiment gone awry mutates this gentle ape into a raging creature of enormous size. To make matters worse, it’s soon discovered there are other similarly altered animals. As these newly created alpha predators tear across North America, destroying everything in their path, Okoye teams with a discredited genetic engineer to secure an antidote, fighting his way through an ever-changing battlefield, not only to halt a global catastrophe but to save the fearsome creature that was once his friend.",
"popularity": 49.44,
"poster_path": "/MGADip4thVSErP34FAAfzFBTZ5.jpg",
"release_date": "2018-04-11",
"title": "Rampage",
"video": false,
"vote_average": 6.5,
"vote_count": 7037
},
{
"adult": false,
"backdrop_path": "/uGhqlElLECQgYbJPDdqpJF6agks.jpg",
"character": "Agent #1",
"credit_id": "58dbe537925141338100e720",
"genre_ids": [53, 80, 18],
"id": 37516,
"order": 28,
"original_language": "en",
"original_title": "Judas Kiss",
"overview": "The shooting of a U.S. senator's wife raises the stakes for kidnappers seeking a hefty ransom for a computer magnate.",
"popularity": 6.564,
"poster_path": "/aBwSiD2kjlarWe7zXYFvfGdlUon.jpg",
"release_date": "1998-09-16",
"title": "Judas Kiss",
"video": false,
"vote_average": 5.6,
"vote_count": 56
},
{
"adult": false,
"backdrop_path": "/8rpDcsfLJypbO6vREc0547VKqEv.jpg",
"character": "Recom Wainfleet",
"credit_id": "5989fe3f9251414bb4019aa4",
"genre_ids": [878, 12, 28],
"id": 76600,
"order": 20,
"original_language": "en",
"original_title": "Avatar: The Way of Water",
"overview": "Set more than a decade after the events of the first film, learn the story of the Sully family (Jake, Neytiri, and their kids), the trouble that follows them, the lengths they go to keep each other safe, the battles they fight to stay alive, and the tragedies they endure.",
"popularity": 130.396,
"poster_path": "/t6HIqrRAclMCA60NsSmeqe9RmNV.jpg",
"release_date": "2022-12-14",
"title": "Avatar: The Way of Water",
"video": false,
"vote_average": 7.6,
"vote_count": 11982
},
{
"adult": false,
"backdrop_path": "/1ToHikA7BtTxMD4YGyuwBURyv2W.jpg",
"character": "Corporal Lyle Wainfleet",
"credit_id": "5989fe719251414bb4019ae9",
"genre_ids": [878, 12, 14],
"id": 83533,
"order": 19,
"original_language": "en",
"original_title": "Avatar: Fire and Ash",
"overview": "In the wake of the devastating war against the RDA and the loss of their eldest son, Jake Sully and Neytiri face a new threat on Pandora: the Ash People, a violent and power-hungry Na'vi tribe led by the ruthless Varang. Jake's family must fight for their survival and the future of Pandora in a conflict that pushes them to their emotional and physical limits.",
"popularity": 29.492,
"poster_path": "/vDdFxksDMkUJjZXd00OKJfwXKre.jpg",
"release_date": "2025-12-17",
"title": "Avatar: Fire and Ash",
"video": false,
"vote_average": 0,
"vote_count": 0
},
{
"adult": false,
"backdrop_path": null,
"character": "Corporal Lyle Wainfleet",
"credit_id": "5989fef49251416b500174e3",
"genre_ids": [878, 12, 14],
"id": 216527,
"order": 8,
"original_language": "en",
"original_title": "Avatar 4",
"overview": "The fourth installment of the Avatar franchise.",
"popularity": 15.719,
"poster_path": "/qzMYKnT4MG1d0gnhwytr4cKhUvS.jpg",
"release_date": "2029-12-19",
"title": "Avatar 4",
"video": false,
"vote_average": 0,
"vote_count": 0
},
{
"adult": false,
"backdrop_path": null,
"character": "Corporal Lyle Wainfleet",
"credit_id": "5989ff20c3a3681f6e01a566",
"genre_ids": [12, 878, 14],
"id": 393209,
"order": 7,
"original_language": "en",
"original_title": "Avatar 5",
"overview": "",
"popularity": 9.351,
"poster_path": "/rtmmvqkIC5zDMEd638Es2woxbz8.jpg",
"release_date": "2031-12-17",
"title": "Avatar 5",
"video": false,
"vote_average": 0,
"vote_count": 0
},
{
"adult": false,
"backdrop_path": "/dfSAFTqNLfB3YAs9Ppy13EUaNYI.jpg",
"character": "Nick",
"credit_id": "5aa77a280e0a263dc401a029",
"genre_ids": [28, 53, 80],
"id": 9257,
"order": 18,
"original_language": "en",
"original_title": "S.W.A.T.",
"overview": "Hondo Harrelson recruits Jim Street to join an elite unit of the Los Angeles Police Department. Together they seek out more members, including tough Deke Kay and single mom Chris Sanchez. The team's first big assignment is to escort crime boss Alex Montel to prison. It seems routine, but when Montel offers a huge reward to anyone who can break him free, criminals of various stripes step up for the prize.",
"popularity": 29.165,
"poster_path": "/bon63yPVIgUFLP2653Dg9GCOJLJ.jpg",
"release_date": "2003-08-08",
"title": "S.W.A.T.",
"video": false,
"vote_average": 6.16,
"vote_count": 2479
},
{
"adult": false,
"backdrop_path": "/r1917G5vqOWmSXvuKHeLU0SI6Dc.jpg",
"character": "Havoc",
"credit_id": "5c9cb50992514124d430e213",
"genre_ids": [28, 878, 12],
"id": 72559,
"order": 15,
"original_language": "en",
"original_title": "G.I. Joe: Retaliation",
"overview": "Framed for crimes against the country, the G.I. Joe team is terminated by Presidential order. This forces the G.I. Joes into not only fighting their mortal enemy Cobra; they are forced to contend with threats from within the government that jeopardize their very existence.",
"popularity": 40.347,
"poster_path": "/3rWIZMzTKcCtV0eHJ70Z4Ru659f.jpg",
"release_date": "2013-03-27",
"title": "G.I. Joe: Retaliation",
"video": false,
"vote_average": 5.624,
"vote_count": 5456
},
{
"adult": false,
"backdrop_path": "/gRHRNtiqvn5bBUUIVu09zd8lorW.jpg",
"character": "Driver's Brother",
"credit_id": "5ccb09b3c3a36836bbd97340",
"genre_ids": [80, 18, 28, 53],
"id": 41283,
"order": 6,
"original_language": "en",
"original_title": "Faster",
"overview": "After 10 years in prison, Driver is now a free man with a single focus - hunting down the people responsible for brutally murdering his brother.",
"popularity": 37.43,
"poster_path": "/AsUeaXrhw4oscCSjUZ6heh1pVvd.jpg",
"release_date": "2010-11-23",
"title": "Faster",
"video": false,
"vote_average": 6.3,
"vote_count": 1910
},
{
"adult": false,
"backdrop_path": "/rn2EB8kitYpAhCrZR2rXePyZJ7j.jpg",
"character": "Sgt. Eveland",
"credit_id": "5ddef5934d679100171be406",
"genre_ids": [18, 10752],
"id": 10687,
"order": 9,
"original_language": "en",
"original_title": "Tigerland",
"overview": "A group of recruits go through Advanced Infantry Training at Fort Polk, Louisiana's infamous Tigerland, last stop before Vietnam for tens of thousands of young men in 1971.",
"popularity": 11.474,
"poster_path": "/pnFdCvxxL44sPLkKEIJCUaIZa7M.jpg",
"release_date": "2000-10-06",
"title": "Tigerland",
"video": false,
"vote_average": 6.6,
"vote_count": 553
},
{
"adult": false,
"backdrop_path": "/vBDHS8bdo5vzqaaqviMupznoRaN.jpg",
"character": "Liebo",
"credit_id": "5ddef5d33faba0001904e69a",
"genre_ids": [28, 12, 80, 53],
"id": 11679,
"order": 23,
"original_language": "en",
"original_title": "xXx: State of the Union",
"overview": "Darius Stone's criminal record and extreme sports obsession make him the perfect candidate to be the newest XXX agent. He must save the U.S. government from a deadly conspiracy led by five-star general and Secretary of Defense George Deckert.",
"popularity": 29.863,
"poster_path": "/jFDsnFmlZaYyRL2uN8ZrMfZoeCe.jpg",
"release_date": "2005-04-27",
"title": "xXx: State of the Union",
"video": false,
"vote_average": 5,
"vote_count": 1841
},
{
"adult": false,
"backdrop_path": null,
"character": "Detective Derek Shane",
"credit_id": "5ddfca02202e1100182015dd",
"genre_ids": [18],
"id": 499754,
"order": 9,
"original_language": "en",
"original_title": "Restored Me",
"overview": "A troubled ex-con joins the colorful crew of an old movie theater and begins to rebuild his life, only to find his faith in God tested when he learns the theater he has grown to love is not what it seems.",
"popularity": 1.362,
"poster_path": "/xSzlZX6PFucq1v145xA5xYoTpVl.jpg",
"release_date": "2016-09-11",
"title": "Restored Me",
"video": false,
"vote_average": 10,
"vote_count": 1
},
{
"adult": false,
"backdrop_path": "/1geGYUKUNKV3RZJMncJFLckaAxI.jpg",
"character": "Jackie",
"credit_id": "5ddfe101202e110013203be5",
"genre_ids": [35, 18, 80, 10749, 10402],
"id": 17952,
"order": 6,
"original_language": "en",
"original_title": "In The Mix",
"overview": "A successful DJ named Darrel (Usher), managed to rescue a powerful mobster one night. In order to repay Darrell, the mobster, Frank Pacelli, gives him the task of protecting his daughter, Dolly (Chriqui)",
"popularity": 12.94,
"poster_path": "/xtsT8pOGo5VZhQobpsVsPHRE0dz.jpg",
"release_date": "2005-11-23",
"title": "In The Mix",
"video": false,
"vote_average": 6.2,
"vote_count": 268
},
{
"adult": false,
"backdrop_path": "/kbXMOnz2RhTSAbLtHX5hy5AXtwv.jpg",
"character": "SWAT Team Leader",
"credit_id": "5e762210b1f68d0019e41bec",
"genre_ids": [28, 53, 878],
"id": 296,
"order": 25,
"original_language": "en",
"original_title": "Terminator 3: Rise of the Machines",
"overview": "It's been 10 years since John Connor saved Earth from Judgment Day, and he's now living under the radar, steering clear of using anything Skynet can trace. That is, until he encounters T-X, a robotic assassin ordered to finish what T-1000 started. Good thing Connor's former nemesis, the Terminator, is back to aid the now-adult Connor … just like he promised.",
"popularity": 43.166,
"poster_path": "/vvevzdYIrk2636maNW4qeWmlPFG.jpg",
"release_date": "2003-07-02",
"title": "Terminator 3: Rise of the Machines",
"video": false,
"vote_average": 6.164,
"vote_count": 6620
}
]
Example:
[]
Example:
98215
Was this page helpful?
⌘I