tmdb-ts-api
Advanced tools
Comparing version 0.0.1 to 0.0.2
{ | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"name": "tmdb-ts-api", | ||
@@ -7,3 +7,7 @@ "author": "Josh Medeski<josh@medeskisolutions.com>", | ||
"description": "A TypeScript API for working with The Movie Database API (tmdb)", | ||
"main": "jest.config.js", | ||
"main": "./lib/index.js", | ||
"scripts": { | ||
"build": "tsc", | ||
"test": "jest --watch" | ||
}, | ||
"repository": { | ||
@@ -18,5 +22,2 @@ "type": "git", | ||
], | ||
"scripts": { | ||
"test": "jest --watch" | ||
}, | ||
"devDependencies": { | ||
@@ -23,0 +24,0 @@ "@trivago/prettier-plugin-sort-imports": "^3.1.1", |
@@ -1,1277 +0,1294 @@ | ||
import { TmdbPaginatedRes } from ".." | ||
export interface KnownForMovie { | ||
media_type: "movie" | ||
adult: boolean | ||
backdrop_path: string | ||
genre_ids: number[] | ||
id: number | ||
original_language: string | ||
original_title: string | ||
overview: string | ||
poster_path: string | ||
release_date: string | ||
title: string | ||
video: boolean | ||
vote_average: number | ||
vote_count: number | ||
} | ||
export type TmdbPersonPopular = TmdbPaginatedRes<{ | ||
export interface KnownForTvShow { | ||
media_type: "tv" | ||
backdrop_path: string | ||
first_air_date: string | ||
genre_ids: number[] | ||
id: number | ||
name: string | ||
profile_path: string | ||
origin_country: string[] | ||
original_language: string | ||
original_name: string | ||
overview: string | ||
poster_path: string | ||
vote_average: number | ||
vote_count: number | ||
} | ||
export interface Result { | ||
adult: boolean | ||
gender: number | ||
id: number | ||
known_for: Array<KnownForMovie | KnownForTvShow> | ||
known_for_department: string | ||
name: string | ||
popularity: number | ||
known_for: any[] | ||
}> | ||
profile_path: string | ||
} | ||
export const sampleTmdbMoviesPopularRes: TmdbPersonPopular = { | ||
export interface PopularPeople { | ||
page: number | ||
results: Result[] | ||
total_pages: number | ||
total_results: number | ||
} | ||
export const mockPopularPeople: PopularPeople = { | ||
page: 1, | ||
results: [ | ||
{ | ||
name: "Monica Bellucci", | ||
profile_path: "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", | ||
adult: false, | ||
id: 28782, | ||
popularity: 48.609344, | ||
gender: 1, | ||
id: 224513, | ||
known_for: [ | ||
{ | ||
poster_path: "/hE24GYddaxB9MVZl1CaiI86M3kp.jpg", | ||
adult: false, | ||
overview: | ||
"A cryptic message from Bond’s past sends him on a trail to uncover a sinister organization. While M battles political forces to keep the secret service alive, Bond peels back the layers of deceit to reveal the terrible truth behind SPECTRE.", | ||
release_date: "2015-10-26", | ||
original_title: "Spectre", | ||
genre_ids: [28, 12, 80], | ||
id: 206647, | ||
backdrop_path: "/sAtoMqDVhNDQBc3QJL3RF6hlhGq.jpg", | ||
genre_ids: [878, 18], | ||
id: 335984, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Spectre", | ||
backdrop_path: "/wVTYlkKPKrljJfugXN7UlLNjtuJ.jpg", | ||
popularity: 7.090211, | ||
vote_count: 2956, | ||
original_title: "Blade Runner 2049", | ||
overview: | ||
"Thirty years after the events of the first film, a new blade runner, LAPD Officer K, unearths a long-buried secret that has the potential to plunge what's left of society into chaos. K's discovery leads him on a quest to find Rick Deckard, a former LAPD blade runner who has been missing for 30 years.", | ||
poster_path: "/gajva2L0rPYkEWjzgFlBXCAVBE5.jpg", | ||
release_date: "2017-10-04", | ||
title: "Blade Runner 2049", | ||
video: false, | ||
vote_average: 6.2, | ||
vote_average: 7.5, | ||
vote_count: 10359, | ||
}, | ||
{ | ||
poster_path: "/ezIurBz2fdUc68d98Fp9dRf5ihv.jpg", | ||
adult: false, | ||
overview: | ||
"Six months after the events depicted in The Matrix, Neo has proved to be a good omen for the free humans, as more and more humans are being freed from the matrix and brought to Zion, the one and only stronghold of the Resistance. Neo himself has discovered his superpowers including super speed, ability to see the codes of the things inside the matrix and a certain degree of pre-cognition. But a nasty piece of news hits the human resistance: 250,000 machine sentinels are digging to Zion and would reach them in 72 hours. As Zion prepares for the ultimate war, Neo, Morpheus and Trinity are advised by the Oracle to find the Keymaker who would help them reach the Source. Meanwhile Neo's recurrent dreams depicting Trinity's death have got him worried and as if it was not enough, Agent Smith has somehow escaped deletion, has become more powerful than before and has fixed Neo as his next target.", | ||
release_date: "2003-05-15", | ||
original_title: "The Matrix Reloaded", | ||
genre_ids: [12, 28, 53, 878], | ||
id: 604, | ||
backdrop_path: "/4HWAQu28e2yaWrtupFPGFkdNU7V.jpg", | ||
genre_ids: [35, 18, 80, 9648], | ||
id: 546554, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Matrix Reloaded", | ||
backdrop_path: "/1jgulSytTJcATkGX8syGbD2glXD.jpg", | ||
popularity: 3.41123, | ||
vote_count: 2187, | ||
original_title: "Knives Out", | ||
overview: | ||
"When renowned crime novelist Harlan Thrombey is found dead at his estate just after his 85th birthday, the inquisitive and debonair Detective Benoit Blanc is mysteriously enlisted to investigate. From Harlan's dysfunctional family to his devoted staff, Blanc sifts through a web of red herrings and self-serving lies to uncover the truth behind Harlan's untimely death.", | ||
poster_path: "/pThyQovXQrw2m0s9x82twj48Jq4.jpg", | ||
release_date: "2019-11-27", | ||
title: "Knives Out", | ||
video: false, | ||
vote_average: 6.57, | ||
vote_average: 7.9, | ||
vote_count: 8373, | ||
}, | ||
{ | ||
poster_path: "/sKogjhfs5q3azmpW7DFKKAeLEG8.jpg", | ||
adult: false, | ||
overview: | ||
"The human city of Zion defends itself against the massive invasion of the machines as Neo fights to end the war at another front while also opposing the rogue Agent Smith.", | ||
release_date: "2003-11-05", | ||
original_title: "The Matrix Revolutions", | ||
genre_ids: [12, 28, 53, 878], | ||
id: 605, | ||
backdrop_path: "/oNoprEND25zXR6Fns8cIZUkuoMc.jpg", | ||
genre_ids: [35, 80, 18], | ||
id: 308266, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Matrix Revolutions", | ||
backdrop_path: "/pdVHUsb2eEz9ALNTr6wfRJe5xVa.jpg", | ||
popularity: 3.043018, | ||
vote_count: 1971, | ||
original_title: "War Dogs", | ||
overview: | ||
"Based on the true story of two young men, David Packouz and Efraim Diveroli, who won a $300 million contract from the Pentagon to arm America's allies in Afghanistan.", | ||
poster_path: "/mDcPRjZC1bb6LavFU3gwsWdVfCM.jpg", | ||
release_date: "2016-08-17", | ||
title: "War Dogs", | ||
video: false, | ||
vote_average: 6.35, | ||
vote_average: 6.9, | ||
vote_count: 3736, | ||
}, | ||
], | ||
known_for_department: "Acting", | ||
name: "Ana de Armas", | ||
popularity: 161.892, | ||
profile_path: "/14uxt0jH28J9zn4vNQNTae3Bmr7.jpg", | ||
}, | ||
{ | ||
profile_path: "/tDPS8QHdOmdmu400haPcYum8BHC.jpg", | ||
adult: false, | ||
id: 21911, | ||
gender: 2, | ||
id: 1136406, | ||
known_for: [ | ||
{ | ||
poster_path: "/vD5plFV1ec9CSIsdlPe9icCDRTL.jpg", | ||
adult: false, | ||
overview: | ||
"Former Special Forces officer Frank Martin will deliver anything to anyone for the right price, and his no-questions-asked policy puts him in high demand. But when he realizes his latest cargo is alive, it sets in motion a dangerous chain of events. The bound and gagged Lai is being smuggled to France by a shady American businessman, and Frank works to save her as his own illegal activities are uncovered by a French detective.", | ||
release_date: "2002-10-02", | ||
original_title: "The Transporter", | ||
genre_ids: [28, 80, 53], | ||
id: 4108, | ||
backdrop_path: "/lmZFxXgJE3vgrciwuDib0N8CfQo.jpg", | ||
genre_ids: [12, 28, 878], | ||
id: 299536, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Transporter", | ||
backdrop_path: "/poKaphSqmgC1vtUYGagzyU4KP2m.jpg", | ||
popularity: 2.99031, | ||
vote_count: 988, | ||
original_title: "Avengers: Infinity War", | ||
overview: | ||
"As the Avengers and their allies have continued to protect the world from threats too large for any one hero to handle, a new danger has emerged from the cosmic shadows: Thanos. A despot of intergalactic infamy, his goal is to collect all six Infinity Stones, artifacts of unimaginable power, and use them to inflict his twisted will on all of reality. Everything the Avengers have fought for has led up to this moment - the fate of Earth and existence itself has never been more uncertain.", | ||
poster_path: "/7WsyChQLEftFiDOVTGkv3hFpyyt.jpg", | ||
release_date: "2018-04-25", | ||
title: "Avengers: Infinity War", | ||
video: false, | ||
vote_average: 6.52, | ||
vote_average: 8.3, | ||
vote_count: 23713, | ||
}, | ||
{ | ||
poster_path: "/tCUEJ6Svr9eqcUOpxlRbFKlEVqm.jpg", | ||
adult: false, | ||
backdrop_path: "/7RyHsO4yDXtBv1zUU3mTpHeQ0d5.jpg", | ||
genre_ids: [12, 878, 28], | ||
id: 299534, | ||
media_type: "movie", | ||
original_language: "en", | ||
original_title: "Avengers: Endgame", | ||
overview: | ||
"Asian Hawk (Jackie Chan) leads a mercenary team to recover several lost artifacts from the Old Summer Palace, the bronze heads of the 12 Chinese Zodiac animals which were sacked by the French and British armies from the imperial Summer Palace in Beijing in 1860. Assisted by a Chinese student and a Parisian lady, Hawk stops at nothing to accomplish the mission.", | ||
release_date: "2012-12-20", | ||
original_title: "Chinese Zodiac", | ||
genre_ids: [28, 12], | ||
id: 98567, | ||
media_type: "movie", | ||
original_language: "cn", | ||
title: "Chinese Zodiac", | ||
backdrop_path: "/b8i4Zg7gzMgRmjP9oRxtx8HoiS6.jpg", | ||
popularity: 2.325203, | ||
vote_count: 181, | ||
"After the devastating events of Avengers: Infinity War, the universe is in ruins due to the efforts of the Mad Titan, Thanos. With the help of remaining allies, the Avengers must assemble once more in order to undo Thanos' actions and restore order to the universe once and for all, no matter what consequences may be in store.", | ||
poster_path: "/or06FN3Dka5tukK1e9sl16pB3iy.jpg", | ||
release_date: "2019-04-24", | ||
title: "Avengers: Endgame", | ||
video: false, | ||
vote_average: 6.15, | ||
vote_average: 8.3, | ||
vote_count: 20181, | ||
}, | ||
{ | ||
poster_path: "/roKhZLvRRzqdVY9rvDv1i5ZAmmx.jpg", | ||
adult: false, | ||
overview: | ||
"Ten vignettes in New York City: a pickpocket meets his match; a young Hasidic woman, on the eve of her marriage, reveals herself to an Indian businessman; a writer tries a pick-up line; an artist seeks a model; a composer needs to read; two women connect; a man takes a child to Central Park; lovers meet; a couple takes a walk on their anniversary; a kid goes to the prom with a girl in a wheelchair; a retired singer contemplates suicide. There are eight million stories in the naked city: these have been ten of them.", | ||
release_date: "2008-09-01", | ||
original_title: "New York, I Love You", | ||
genre_ids: [18, 35, 10749], | ||
id: 12572, | ||
backdrop_path: "/7FWlcZq3r6525LWOcvO9kNWurN1.jpg", | ||
genre_ids: [12, 28, 878], | ||
id: 271110, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "New York, I Love You", | ||
backdrop_path: "/boT0X1wTI399zK6jJ2Dgtqhjkdj.jpg", | ||
popularity: 1.989928, | ||
vote_count: 101, | ||
original_title: "Captain America: Civil War", | ||
overview: | ||
"Following the events of Age of Ultron, the collective governments of the world pass an act designed to regulate all superhuman activity. This polarizes opinion amongst the Avengers, causing two factions to side with Iron Man or Captain America, which causes an epic battle between former allies.", | ||
poster_path: "/rAGiXaUfPzY7CDEyNKUofk3Kw2e.jpg", | ||
release_date: "2016-04-27", | ||
title: "Captain America: Civil War", | ||
video: false, | ||
vote_average: 5.51, | ||
vote_average: 7.4, | ||
vote_count: 19250, | ||
}, | ||
], | ||
name: "Shu Qi", | ||
popularity: 35.790232, | ||
known_for_department: "Acting", | ||
name: "Tom Holland", | ||
popularity: 156.615, | ||
profile_path: "/2qhIDp44cAqP2clOgt2afQI07X8.jpg", | ||
}, | ||
{ | ||
profile_path: "/ylF5eBdfev0bgmFx8BFRmClqStM.jpg", | ||
adult: false, | ||
id: 234352, | ||
gender: 1, | ||
id: 169337, | ||
known_for: [ | ||
{ | ||
poster_path: "/vK1o5rZGqxyovfIhZyMELhk03wO.jpg", | ||
adult: false, | ||
backdrop_path: "/gIApbx2ffXVhJb2D4tiEx2b06nl.jpg", | ||
first_air_date: "2005-03-27", | ||
genre_ids: [18], | ||
id: 1416, | ||
media_type: "tv", | ||
name: "Grey's Anatomy", | ||
origin_country: ["US"], | ||
original_language: "en", | ||
original_name: "Grey's Anatomy", | ||
overview: | ||
"A New York stockbroker refuses to cooperate in a large securities fraud case involving corruption on Wall Street, corporate banking world and mob infiltration. Based on Jordan Belfort's autobiography.", | ||
release_date: "2013-12-25", | ||
original_title: "The Wolf of Wall Street", | ||
genre_ids: [80, 18, 35], | ||
id: 106646, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Wolf of Wall Street", | ||
backdrop_path: "/dYtAyg4vD88hIfrR1VKDnVGhnE6.jpg", | ||
popularity: 6.013736, | ||
vote_count: 3602, | ||
video: false, | ||
vote_average: 7.92, | ||
"Follows the personal and professional lives of a group of doctors at Seattle’s Grey Sloan Memorial Hospital.", | ||
poster_path: "/zPIug5giU8oug6Xes5K1sTfQJxY.jpg", | ||
vote_average: 8.2, | ||
vote_count: 7445, | ||
}, | ||
{ | ||
poster_path: "/9IElGiLkxPLUWZ3avy31bNSG3Tq.jpg", | ||
adult: false, | ||
backdrop_path: "/hiK4qc0tZijQ9KNUnBIS1k4tdMJ.jpg", | ||
first_air_date: "2004-11-16", | ||
genre_ids: [18, 35, 9648], | ||
id: 1408, | ||
media_type: "tv", | ||
name: "House", | ||
origin_country: ["US"], | ||
original_language: "en", | ||
original_name: "House", | ||
overview: | ||
"A veteran grifter takes a young, attractive woman under his wing, but things get complicated when they become romantically involved.", | ||
release_date: "2015-02-25", | ||
original_title: "Focus", | ||
genre_ids: [10749, 35, 80, 18], | ||
id: 256591, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Focus", | ||
backdrop_path: "/bd8RdP2OduLBGkUMdc8PZPjdtbI.jpg", | ||
popularity: 3.90442, | ||
vote_count: 1639, | ||
video: false, | ||
vote_average: 6.71, | ||
"Dr. Gregory House, a drug-addicted, unconventional, misanthropic medical genius, leads a team of diagnosticians at the fictional Princeton–Plainsboro Teaching Hospital in New Jersey.", | ||
poster_path: "/lkvhReTBZ2Ksl0Dl5Oplsf6UYkF.jpg", | ||
vote_average: 8.6, | ||
vote_count: 4326, | ||
}, | ||
{ | ||
poster_path: "/e1mjopzAS2KNsvpbpahQ1a6SkSn.jpg", | ||
adult: false, | ||
overview: | ||
"From DC Comics comes the Suicide Squad, an antihero team of incarcerated supervillains who act as deniable assets for the United States government, undertaking high-risk black ops missions in exchange for commuted prison sentences.", | ||
release_date: "2016-08-03", | ||
original_title: "Suicide Squad", | ||
genre_ids: [14, 28, 80], | ||
id: 297761, | ||
backdrop_path: "/sNsANx5OxYifdcW7UXbyL9GoMCO.jpg", | ||
genre_ids: [35, 10749], | ||
id: 32856, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Suicide Squad", | ||
backdrop_path: "/ndlQ2Cuc3cjTL7lTynw6I4boP4S.jpg", | ||
popularity: 48.261451, | ||
vote_count: 1466, | ||
original_title: "Valentine's Day", | ||
overview: | ||
"More than a dozen Angelenos navigate Valentine's Day from early morning until midnight. Three couples awake together, but each relationship will sputter. A grade-school boy wants flowers for his first true love. Two high school seniors plan first-time sex at noon. A TV sports reporter gets the assignment to find romance in LA. A star quarterback contemplates his future. Two strangers meet on a plane. Grandparents, together for years, face a crisis. An 'I Hate Valentine's Day' dinner beckons the lonely and the lied to.", | ||
poster_path: "/qOTcfD2DdnOTmhH0r1TOE09VvNh.jpg", | ||
release_date: "2010-02-10", | ||
title: "Valentine's Day", | ||
video: false, | ||
vote_average: 5.91, | ||
vote_average: 5.9, | ||
vote_count: 2608, | ||
}, | ||
], | ||
name: "Margot Robbie", | ||
popularity: 34.014752, | ||
known_for_department: "Acting", | ||
name: "Katherine LaNasa", | ||
popularity: 141.949, | ||
profile_path: "/a1T5Smn7sCEtV8NHvTa5WaxgOML.jpg", | ||
}, | ||
{ | ||
profile_path: "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", | ||
adult: false, | ||
id: 8167, | ||
gender: 1, | ||
id: 15555, | ||
known_for: [ | ||
{ | ||
poster_path: "/b9gTJKLdSbwcQRKzmqMq3dMfRwI.jpg", | ||
adult: false, | ||
overview: | ||
"Hobbs has Dominic and Brian reassemble their crew to take down a team of mercenaries: Dominic unexpectedly gets convoluted also facing his presumed deceased girlfriend, Letty.", | ||
release_date: "2013-05-06", | ||
original_title: "Fast & Furious 6", | ||
genre_ids: [28, 53, 80], | ||
id: 82992, | ||
backdrop_path: "/mfJepkInUbiZ0mFXFhDNz8ko6Zr.jpg", | ||
genre_ids: [18, 9648, 878], | ||
id: 1124, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Fast & Furious 6", | ||
backdrop_path: "/qjfE7SkPXpqFs8FX8rIaG6eO2aK.jpg", | ||
popularity: 1.737593, | ||
vote_count: 4233, | ||
original_title: "The Prestige", | ||
overview: | ||
"A mysterious story of two magicians whose intense rivalry leads them on a life-long battle for supremacy -- full of obsession, deceit and jealousy with dangerous and deadly consequences.", | ||
poster_path: "/bdN3gXuIZYaJP7ftKK2sU0nPtEA.jpg", | ||
release_date: "2006-10-19", | ||
title: "The Prestige", | ||
video: false, | ||
vote_average: 6.63, | ||
vote_average: 8.2, | ||
vote_count: 12613, | ||
}, | ||
{ | ||
poster_path: "/dCgm7efXDmiABSdWDHBDBx2jwmn.jpg", | ||
adult: false, | ||
overview: | ||
"Deckard Shaw seeks revenge against Dominic Toretto and his family for his comatose brother.", | ||
release_date: "2015-04-01", | ||
original_title: "Furious 7", | ||
genre_ids: [28, 80, 53], | ||
id: 168259, | ||
backdrop_path: "/4bAwGmE9Sl4FeXoHWVWLXkURHbe.jpg", | ||
genre_ids: [28, 53, 878], | ||
id: 59967, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Furious 7", | ||
backdrop_path: "/ypyeMfKydpyuuTMdp36rMlkGDUL.jpg", | ||
popularity: 13.659073, | ||
vote_count: 2718, | ||
original_title: "Looper", | ||
overview: | ||
"In the futuristic action thriller Looper, time travel will be invented but it will be illegal and only available on the black market. When the mob wants to get rid of someone, they will send their target 30 years into the past where a looper, a hired gun, like Joe is waiting to mop up. Joe is getting rich and life is good until the day the mob decides to close the loop, sending back Joe's future self for assassination.", | ||
poster_path: "/sNjL6SqErDBE8OUZlrDLkexfsCj.jpg", | ||
release_date: "2012-09-26", | ||
title: "Looper", | ||
video: false, | ||
vote_average: 7.39, | ||
vote_average: 6.8, | ||
vote_count: 8685, | ||
}, | ||
{ | ||
poster_path: "/x4So4OkqnjfOSBCCNd5uosMmQiB.jpg", | ||
adult: false, | ||
backdrop_path: "/hiK4qc0tZijQ9KNUnBIS1k4tdMJ.jpg", | ||
first_air_date: "2004-11-16", | ||
genre_ids: [18, 35, 9648], | ||
id: 1408, | ||
media_type: "tv", | ||
name: "House", | ||
origin_country: ["US"], | ||
original_language: "en", | ||
original_name: "House", | ||
overview: | ||
"Domenic Toretto is a Los Angeles street racer suspected of masterminding a series of big-rig hijackings. When undercover cop Brian O'Conner infiltrates Toretto's iconoclastic crew, he falls for Toretto's sister and must choose a side: the gang or the LAPD.", | ||
release_date: "2001-06-18", | ||
original_title: "The Fast and the Furious", | ||
genre_ids: [28, 80, 53], | ||
id: 9799, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Fast and the Furious", | ||
backdrop_path: "/lmIqH8Qsv3IvDg0PTFUuVr89eBT.jpg", | ||
popularity: 1.651117, | ||
vote_count: 2375, | ||
video: false, | ||
vote_average: 6.41, | ||
"Dr. Gregory House, a drug-addicted, unconventional, misanthropic medical genius, leads a team of diagnosticians at the fictional Princeton–Plainsboro Teaching Hospital in New Jersey.", | ||
poster_path: "/lkvhReTBZ2Ksl0Dl5Oplsf6UYkF.jpg", | ||
vote_average: 8.6, | ||
vote_count: 4333, | ||
}, | ||
], | ||
name: "Paul Walker", | ||
popularity: 30.990128, | ||
known_for_department: "Acting", | ||
name: "Piper Perabo", | ||
popularity: 93.899, | ||
profile_path: "/aP9QqLm4JZxLwp2CiUbEh5zrpVI.jpg", | ||
}, | ||
{ | ||
profile_path: "/tB1nE2LJH81f5UMiGhKCSlaqsF1.jpg", | ||
adult: false, | ||
id: 1223786, | ||
gender: 1, | ||
id: 543990, | ||
known_for: [ | ||
{ | ||
poster_path: "/5JU9ytZJyR3zmClGmVm9q4Geqbd.jpg", | ||
adult: false, | ||
overview: | ||
"The year is 2029. John Connor, leader of the resistance continues the war against the machines. At the Los Angeles offensive, John's fears of the unknown future begin to emerge when TECOM spies reveal a new plot by SkyNet that will attack him from both fronts; past and future, and will ultimately change warfare forever.", | ||
release_date: "2015-06-23", | ||
original_title: "Terminator Genisys", | ||
genre_ids: [878, 28, 53, 12], | ||
id: 87101, | ||
backdrop_path: "/oxB5Og9FEHRIBo6eTN6pvobYC6G.jpg", | ||
genre_ids: [12, 14, 10751], | ||
id: 32657, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Terminator Genisys", | ||
backdrop_path: "/bIlYH4l2AyYvEysmS2AOfjO7Dn8.jpg", | ||
popularity: 13.438976, | ||
vote_count: 2334, | ||
original_title: "Percy Jackson & the Olympians: The Lightning Thief", | ||
overview: | ||
"Accident prone teenager, Percy discovers he's actually a demi-God, the son of Poseidon, and he is needed when Zeus' lightning is stolen. Percy must master his new found skills in order to prevent a war between the Gods that could devastate the entire world.", | ||
poster_path: "/vayx5t1cYCpBGV9ylTGn0Sr9rA2.jpg", | ||
release_date: "2010-02-01", | ||
title: "Percy Jackson & the Olympians: The Lightning Thief", | ||
video: false, | ||
vote_average: 5.91, | ||
vote_average: 6.2, | ||
vote_count: 6134, | ||
}, | ||
{ | ||
poster_path: "/jIhL6mlT7AblhbHJgEoiBIOUVl1.jpg", | ||
popularity: 29.780826, | ||
id: 1399, | ||
adult: false, | ||
backdrop_path: "/q8hENt2WsQAAtG9NJNJxMpNOlOm.jpg", | ||
genre_ids: [35, 18, 10751, 10770], | ||
id: 89185, | ||
media_type: "movie", | ||
original_language: "en", | ||
original_title: "Radio Rebel", | ||
overview: | ||
"Seven noble families fight for control of the mythical land of Westeros. Friction between the houses leads to full-scale war. All while a very ancient evil awakens in the farthest north. Amidst the war, a neglected military order of misfits, the Night's Watch, is all that stands between the realms of men and icy horrors beyond.", | ||
backdrop_path: "/mUkuc2wyV9dHLG0D0Loaw5pO2s8.jpg", | ||
vote_average: 7.91, | ||
media_type: "tv", | ||
first_air_date: "2011-04-17", | ||
origin_country: ["US"], | ||
genre_ids: [10765, 10759, 18], | ||
original_language: "en", | ||
vote_count: 1172, | ||
name: "Game of Thrones", | ||
original_name: "Game of Thrones", | ||
"High school senior Tara is so painfully shy that she dreads speaking to anyone in the hallways or getting called on in class. But in the privacy of her bedroom with her iPod in hand, she rocks out -- doing mock broadcasts for Miami's hottest FM radio station, which happens to be owned by her stepfather. When a slot opens up at The SLAM, Tara surprises herself by blossoming behind the mike into confident, \"Radio Rebel\" -- and to everyone's shock, she's a hit!", | ||
poster_path: "/wycDdx2BrdNKlyTZoZT8uLeu6dq.jpg", | ||
release_date: "2012-06-09", | ||
title: "Radio Rebel", | ||
video: false, | ||
vote_average: 6.2, | ||
vote_count: 722, | ||
}, | ||
{ | ||
poster_path: "/kJ6eMKlY1I8vVUosWtfP7qbCugL.jpg", | ||
adult: false, | ||
overview: | ||
"A small town girl is caught between dead-end jobs. A high-profile, successful man becomes wheelchair bound following an accident. The man decides his life is not worth living until the girl is hired for six months to be his new caretaker. Worlds apart and trapped together by circumstance, the two get off to a rocky start. But the girl becomes determined to prove to the man that life is worth living and as they embark on a series of adventures together, each finds their world changing in ways neither of them could begin to imagine.", | ||
release_date: "2016-03-03", | ||
original_title: "Me Before You", | ||
genre_ids: [18, 10749], | ||
id: 296096, | ||
backdrop_path: "/tz8D8e9yTv9Ki77BqyOL0tUSSsJ.jpg", | ||
genre_ids: [53, 12, 14], | ||
id: 45650, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Me Before You", | ||
backdrop_path: "/o4lxNwKJz8oq3R0kLOIsDlHbDhZ.jpg", | ||
popularity: 8.553487, | ||
vote_count: 501, | ||
original_title: "The Hole", | ||
overview: | ||
"After moving into a new neighbourhood, brothers Dane & Lucas and their neighbour Julie discover a bottomless hole in the basement of their home. They find that once the hole is exposed, evil is unleashed. With strange shadows lurking around every corner and nightmares coming to life, they are forced to come face to face with their darkest fears to put an end to the mystery of THE HOLE.", | ||
poster_path: "/tQMxsrsVtpB2D2n01nUqgOMmSWD.jpg", | ||
release_date: "2009-09-09", | ||
title: "The Hole", | ||
video: false, | ||
vote_average: 7.43, | ||
vote_average: 5.7, | ||
vote_count: 586, | ||
}, | ||
], | ||
name: "Emilia Clarke", | ||
popularity: 26.38716, | ||
known_for_department: "Acting", | ||
name: "Merritt Patterson", | ||
popularity: 93.748, | ||
profile_path: "/JD4MNBtHjT2D43eUrBvNifhNpK.jpg", | ||
}, | ||
{ | ||
profile_path: "/idDAi1sjaHDIlDc78D8G9HaJ8le.jpg", | ||
adult: false, | ||
id: 109513, | ||
gender: 1, | ||
id: 159962, | ||
known_for: [ | ||
{ | ||
poster_path: "/qey0tdcOp9kCDdEZuJ87yE3crSe.jpg", | ||
adult: false, | ||
backdrop_path: "/cJYLon9ejKJV7ua03ab8Tj9u067.jpg", | ||
first_air_date: "2009-09-10", | ||
genre_ids: [18, 10765], | ||
id: 18165, | ||
media_type: "tv", | ||
name: "The Vampire Diaries", | ||
origin_country: ["US"], | ||
original_language: "en", | ||
original_name: "The Vampire Diaries", | ||
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.", | ||
release_date: "2015-05-27", | ||
original_title: "San Andreas", | ||
genre_ids: [28, 18, 53], | ||
id: 254128, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "San Andreas", | ||
backdrop_path: "/cUfGqafAVQkatQ7N4y08RNV3bgu.jpg", | ||
popularity: 6.990629, | ||
vote_count: 1866, | ||
video: false, | ||
vote_average: 6.09, | ||
"The story of two vampire brothers obsessed with the same girl, who bears a striking resemblance to the beautiful but ruthless vampire they knew and loved in 1864.", | ||
poster_path: "/gbp4zM0FE0n23X4UFY5EBlacrog.jpg", | ||
vote_average: 8.3, | ||
vote_count: 6897, | ||
}, | ||
{ | ||
poster_path: "/5NhyXkodMzDRW8uqtPqlxJsoBhf.jpg", | ||
adult: false, | ||
overview: | ||
"Accident prone teenager, Percy discovers he's actually a demi-God, the son of Poseidon, and he is needed when Zeus' lightning is stolen. Percy must master his new found skills in order to prevent a war between the Gods that could devastate the entire world.", | ||
release_date: "2010-02-01", | ||
original_title: "Percy Jackson & the Olympians: The Lightning Thief", | ||
genre_ids: [12, 14, 10751], | ||
id: 32657, | ||
backdrop_path: "/5iuae5Ji6WU0DrKPSMNz2MjCZfI.jpg", | ||
genre_ids: [35], | ||
id: 16996, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Percy Jackson & the Olympians: The Lightning Thief", | ||
backdrop_path: "/uHQzRMqhs1bA1fLEP6J1Qc19Nfg.jpg", | ||
popularity: 3.835911, | ||
vote_count: 1047, | ||
original_title: "17 Again", | ||
overview: | ||
"On the brink of a midlife crisis, 30-something Mike O'Donnell wishes he could have a \"do-over.\" And that's exactly what he gets when he wakes up one morning to find he's 17 years old again. With his adult mind stuck inside the body of a teenager, Mike actually has the chance to reverse some decisions he wishes he'd never made. But maybe they weren't so bad after all.", | ||
poster_path: "/wqE9b0bdZsubI82zdX1ykLfPajh.jpg", | ||
release_date: "2009-03-11", | ||
title: "17 Again", | ||
video: false, | ||
vote_average: 5.98, | ||
vote_average: 6.3, | ||
vote_count: 4207, | ||
}, | ||
{ | ||
poster_path: "/k1bhUW7XM5X0yD3iewAEvloFBEo.jpg", | ||
adult: false, | ||
overview: | ||
"In their quest to confront the ultimate evil, Percy and his friends battle swarms of mythical creatures to find the mythical Golden Fleece and to stop an ancient evil from rising.", | ||
release_date: "2013-08-07", | ||
original_title: "Percy Jackson: Sea of Monsters", | ||
genre_ids: [12, 10751, 14], | ||
id: 76285, | ||
backdrop_path: "/mrYJ0ijgaxjHKAs0ybNYxyfP8l5.jpg", | ||
genre_ids: [35, 10751], | ||
id: 9820, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Percy Jackson: Sea of Monsters", | ||
backdrop_path: "/3NK02PLJSs01SY1hsXUAcqbG3WP.jpg", | ||
popularity: 2.444386, | ||
vote_count: 958, | ||
original_title: "The Parent Trap", | ||
overview: | ||
"Hallie Parker and Annie James are identical twins separated at a young age because of their parents' divorce. Unknowingly to their parents, the girls are sent to the same summer camp where they meet, discover the truth about themselves, and then plot with each other to switch places.", | ||
poster_path: "/a3XOGrrAjl1wwiumtACWBufg6AL.jpg", | ||
release_date: "1998-07-28", | ||
title: "The Parent Trap", | ||
video: false, | ||
vote_average: 5.97, | ||
vote_average: 7.1, | ||
vote_count: 3144, | ||
}, | ||
], | ||
name: "Alexandra Daddario", | ||
popularity: 25.880198, | ||
known_for_department: "Acting", | ||
name: "Kat Graham", | ||
popularity: 91.374, | ||
profile_path: "/9AvpU8NAcPJRcioeNm5kVo4rPZg.jpg", | ||
}, | ||
{ | ||
profile_path: "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", | ||
adult: false, | ||
id: 976, | ||
gender: 2, | ||
id: 71580, | ||
known_for: [ | ||
{ | ||
poster_path: "/b9gTJKLdSbwcQRKzmqMq3dMfRwI.jpg", | ||
adult: false, | ||
overview: | ||
"Hobbs has Dominic and Brian reassemble their crew to take down a team of mercenaries: Dominic unexpectedly gets convoluted also facing his presumed deceased girlfriend, Letty.", | ||
release_date: "2013-05-06", | ||
original_title: "Fast & Furious 6", | ||
genre_ids: [28, 53, 80], | ||
id: 82992, | ||
backdrop_path: "/lmZFxXgJE3vgrciwuDib0N8CfQo.jpg", | ||
genre_ids: [12, 28, 878], | ||
id: 299536, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Fast & Furious 6", | ||
backdrop_path: "/qjfE7SkPXpqFs8FX8rIaG6eO2aK.jpg", | ||
popularity: 1.737593, | ||
vote_count: 4233, | ||
original_title: "Avengers: Infinity War", | ||
overview: | ||
"As the Avengers and their allies have continued to protect the world from threats too large for any one hero to handle, a new danger has emerged from the cosmic shadows: Thanos. A despot of intergalactic infamy, his goal is to collect all six Infinity Stones, artifacts of unimaginable power, and use them to inflict his twisted will on all of reality. Everything the Avengers have fought for has led up to this moment - the fate of Earth and existence itself has never been more uncertain.", | ||
poster_path: "/7WsyChQLEftFiDOVTGkv3hFpyyt.jpg", | ||
release_date: "2018-04-25", | ||
title: "Avengers: Infinity War", | ||
video: false, | ||
vote_average: 6.63, | ||
vote_average: 8.3, | ||
vote_count: 23710, | ||
}, | ||
{ | ||
poster_path: "/dCgm7efXDmiABSdWDHBDBx2jwmn.jpg", | ||
adult: false, | ||
overview: | ||
"Deckard Shaw seeks revenge against Dominic Toretto and his family for his comatose brother.", | ||
release_date: "2015-04-01", | ||
original_title: "Furious 7", | ||
genre_ids: [28, 80, 53], | ||
id: 168259, | ||
backdrop_path: "/7RyHsO4yDXtBv1zUU3mTpHeQ0d5.jpg", | ||
genre_ids: [12, 878, 28], | ||
id: 299534, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Furious 7", | ||
backdrop_path: "/ypyeMfKydpyuuTMdp36rMlkGDUL.jpg", | ||
popularity: 13.659073, | ||
vote_count: 2718, | ||
original_title: "Avengers: Endgame", | ||
overview: | ||
"After the devastating events of Avengers: Infinity War, the universe is in ruins due to the efforts of the Mad Titan, Thanos. With the help of remaining allies, the Avengers must assemble once more in order to undo Thanos' actions and restore order to the universe once and for all, no matter what consequences may be in store.", | ||
poster_path: "/or06FN3Dka5tukK1e9sl16pB3iy.jpg", | ||
release_date: "2019-04-24", | ||
title: "Avengers: Endgame", | ||
video: false, | ||
vote_average: 7.39, | ||
vote_average: 8.3, | ||
vote_count: 20174, | ||
}, | ||
{ | ||
poster_path: "/dJPnTe1qOcO7XqsJvESFph83m6m.jpg", | ||
adult: false, | ||
overview: | ||
"Mr. Church reunites the Expendables for what should be an easy paycheck, but when one of their men is murdered on the job, their quest for revenge puts them deep in enemy territory and up against an unexpected threat.", | ||
release_date: "2012-08-08", | ||
original_title: "The Expendables 2", | ||
genre_ids: [28, 12, 53], | ||
id: 76163, | ||
backdrop_path: "/eQN31P4IEhyp6NkdccvppJnyuJ4.jpg", | ||
genre_ids: [28, 12, 14, 878], | ||
id: 284052, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Expendables 2", | ||
backdrop_path: "/pIjnoUnXdLpROFzIRPNziPzgBUp.jpg", | ||
popularity: 3.511878, | ||
vote_count: 2105, | ||
original_title: "Doctor Strange", | ||
overview: | ||
"After his career is destroyed, a brilliant but arrogant surgeon gets a new lease on life when a sorcerer takes him under her wing and trains him to defend the world against evil.", | ||
poster_path: "/uGBVj3bEbCoZbDjjl9wTxcygko1.jpg", | ||
release_date: "2016-10-25", | ||
title: "Doctor Strange", | ||
video: false, | ||
vote_average: 6, | ||
vote_average: 7.4, | ||
vote_count: 18199, | ||
}, | ||
], | ||
name: "Jason Statham", | ||
popularity: 24.287554, | ||
known_for_department: "Acting", | ||
name: "Benedict Cumberbatch", | ||
popularity: 86.634, | ||
profile_path: "/fBEucxECxGLKVHBznO0qHtCGiMO.jpg", | ||
}, | ||
{ | ||
profile_path: "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", | ||
adult: false, | ||
id: 2888, | ||
gender: 2, | ||
id: 73968, | ||
known_for: [ | ||
{ | ||
poster_path: "/l9hrvXyGq19f6jPRZhSVRibTMwW.jpg", | ||
adult: false, | ||
overview: | ||
"Agents J (Will Smith) and K (Tommy Lee Jones) are back...in time. J has seen some inexplicable things in his 15 years with the Men in Black, but nothing, not even aliens, perplexes him as much as his wry, reticent partner. But when K's life and the fate of the planet are put at stake, Agent J will have to travel back in time to put things right. J discovers that there are secrets to the universe that K never told him - secrets that will reveal themselves as he teams up with the young Agent K (Josh Brolin) to save his partner, the agency, and the future of humankind.", | ||
release_date: "2012-05-23", | ||
original_title: "Men in Black 3", | ||
genre_ids: [28, 35, 878], | ||
id: 41154, | ||
backdrop_path: "/mX3WOJPBzzl4kj4xU5lL7qfD6C3.jpg", | ||
genre_ids: [28, 12, 14], | ||
id: 209112, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Men in Black 3", | ||
backdrop_path: "/7u3UyejCbhM3jXcZ86xzA9JJxge.jpg", | ||
popularity: 3.121988, | ||
vote_count: 2925, | ||
original_title: "Batman v Superman: Dawn of Justice", | ||
overview: | ||
"Fearing the actions of a god-like Super Hero left unchecked, Gotham City’s own formidable, forceful vigilante takes on Metropolis’s most revered, modern-day savior, while the world wrestles with what sort of hero it really needs. And with Batman and Superman at war with one another, a new threat quickly arises, putting mankind in greater danger than it’s ever known before.", | ||
poster_path: "/5UsK3grJvtQrtzEgqNlDljJW96w.jpg", | ||
release_date: "2016-03-23", | ||
title: "Batman v Superman: Dawn of Justice", | ||
video: false, | ||
vote_average: 6.14, | ||
vote_average: 5.9, | ||
vote_count: 15470, | ||
}, | ||
{ | ||
poster_path: "/pfvQ3kkSbFsIPC5exKPUf5nOf60.jpg", | ||
adult: false, | ||
overview: | ||
"Robert Neville is a scientist who was unable to stop the spread of the terrible virus that was incurable and man-made. Immune, Neville is now the last human survivor in what is left of New York City and perhaps the world. For three years, Neville has faithfully sent out daily radio messages, desperate to find any other survivors who might be out there. But he is not alone.", | ||
release_date: "2007-12-14", | ||
original_title: "I Am Legend", | ||
genre_ids: [18, 27, 28, 53, 878], | ||
id: 6479, | ||
backdrop_path: "/69EFgWWPFWbRNHmQgYdSnyJ94Ge.jpg", | ||
genre_ids: [28, 12, 14, 878], | ||
id: 49521, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "I Am Legend", | ||
backdrop_path: "/u6Qg7TH7Oh1IFWCQSRr4htFFt0A.jpg", | ||
popularity: 2.867238, | ||
vote_count: 2730, | ||
original_title: "Man of Steel", | ||
overview: | ||
"A young boy learns that he has extraordinary powers and is not of this earth. As a young man, he journeys to discover where he came from and what he was sent here to do. But the hero in him must emerge if he is to save the world from annihilation and become the symbol of hope for all mankind.", | ||
poster_path: "/8GFtkImmK0K1VaUChR0n9O61CFU.jpg", | ||
release_date: "2013-06-12", | ||
title: "Man of Steel", | ||
video: false, | ||
vote_average: 6.81, | ||
vote_average: 6.6, | ||
vote_count: 12801, | ||
}, | ||
{ | ||
poster_path: "/f24UVKq3UiQWLqGWdqjwkzgB8j8.jpg", | ||
adult: false, | ||
overview: | ||
"Men in Black follows the exploits of agents Kay and Jay, members of a top-secret organization established to monitor and police alien activity on Earth. The two Men in Black find themselves in the middle of the deadly plot by an intergalactic terrorist who has arrived on Earth to assassinate two ambassadors from opposing galaxies. In order to prevent worlds from colliding, the MiB must track down the terrorist and prevent the destruction of Earth. It's just another typical day for the Men in Black.", | ||
release_date: "1997-07-01", | ||
original_title: "Men in Black", | ||
genre_ids: [28, 12, 35, 878], | ||
id: 607, | ||
backdrop_path: "/jorgjEk6a0bed6jdR5wu4S6ZvRm.jpg", | ||
genre_ids: [28, 12, 14, 878], | ||
id: 141052, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Men in Black", | ||
backdrop_path: "/uiZShvmW4rva88cSk800RLnGK01.jpg", | ||
popularity: 5.062027, | ||
vote_count: 2570, | ||
original_title: "Justice League", | ||
overview: | ||
"Fuelled by his restored faith in humanity and inspired by Superman's selfless act, Bruce Wayne and Diana Prince assemble a team of metahumans consisting of Barry Allen, Arthur Curry and Victor Stone to face the catastrophic threat of Steppenwolf and the Parademons who are on the hunt for three Mother Boxes on Earth.", | ||
poster_path: "/eifGNCSDuxJeS1loAXil5bIGgvC.jpg", | ||
release_date: "2017-11-15", | ||
title: "Justice League", | ||
video: false, | ||
vote_average: 6.64, | ||
vote_average: 6.2, | ||
vote_count: 11077, | ||
}, | ||
], | ||
name: "Will Smith", | ||
popularity: 23.94618, | ||
known_for_department: "Acting", | ||
name: "Henry Cavill", | ||
popularity: 85.695, | ||
profile_path: "/iWdKjMry5Pt7vmxU7bmOQsIUyHa.jpg", | ||
}, | ||
{ | ||
profile_path: "/8EueDe6rPF0jQU4LSpsH2Rmrqac.jpg", | ||
adult: false, | ||
id: 1245, | ||
gender: 2, | ||
id: 6614, | ||
known_for: [ | ||
{ | ||
poster_path: "/cezWGskPY5x7GaglTTRN4Fugfb8.jpg", | ||
adult: false, | ||
overview: | ||
"When an unexpected enemy emerges and threatens global safety and security, Nick Fury, director of the international peacekeeping agency known as S.H.I.E.L.D., finds himself in need of a team to pull the world back from the brink of disaster. Spanning the globe, a daring recruitment effort begins!", | ||
release_date: "2012-04-25", | ||
original_title: "The Avengers", | ||
genre_ids: [878, 28, 12], | ||
id: 24428, | ||
backdrop_path: "/bpV8wn48s82au37QyUJ51S7X2Vf.jpg", | ||
genre_ids: [18], | ||
id: 489, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Avengers", | ||
backdrop_path: "/hbn46fQaRmlpBuUrEiFqv0GDL6Y.jpg", | ||
popularity: 7.353212, | ||
vote_count: 8503, | ||
original_title: "Good Will Hunting", | ||
overview: | ||
"Will Hunting has a genius-level IQ but chooses to work as a janitor at MIT. When he solves a difficult graduate-level math problem, his talents are discovered by Professor Gerald Lambeau, who decides to help the misguided youth reach his potential. When Will is arrested for attacking a police officer, Professor Lambeau makes a deal to get leniency for him if he will get treatment from therapist Sean Maguire.", | ||
poster_path: "/bABCBKYBK7A5G1x0FzoeoNfuj2.jpg", | ||
release_date: "1997-12-05", | ||
title: "Good Will Hunting", | ||
video: false, | ||
vote_average: 7.33, | ||
vote_average: 8.1, | ||
vote_count: 9289, | ||
}, | ||
{ | ||
poster_path: "/ArqpkNYGfcTIA6umWt6xihfIZZv.jpg", | ||
adult: false, | ||
overview: | ||
'With the world now aware of his dual life as the armored superhero Iron Man, billionaire inventor Tony Stark faces pressure from the government, the press, and the public to share his technology with the military. Unwilling to let go of his invention, Stark, along with Pepper Potts, and James "Rhodey" Rhodes at his side, must forge new alliances - and confront powerful enemies.', | ||
release_date: "2010-04-28", | ||
original_title: "Iron Man 2", | ||
genre_ids: [12, 28, 878], | ||
id: 10138, | ||
backdrop_path: "/z3ioibdjWZOYeXjoiabFOFOfPI3.jpg", | ||
genre_ids: [28, 80, 53], | ||
id: 584, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Iron Man 2", | ||
backdrop_path: "/jxdSxqAFrdioKgXwgTs5Qfbazjq.jpg", | ||
popularity: 4.559376, | ||
vote_count: 4639, | ||
original_title: "2 Fast 2 Furious", | ||
overview: | ||
"It's a major double-cross when former police officer Brian O'Conner teams up with his ex-con buddy Roman Pearce to transport a shipment of \"dirty\" money for shady Miami-based import-export dealer Carter Verone. But the guys are actually working with undercover agent Monica Fuentes to bring Verone down.", | ||
poster_path: "/qC167IbZpSrwX7wWgg3BeDQbTDr.jpg", | ||
release_date: "2003-06-05", | ||
title: "2 Fast 2 Furious", | ||
video: false, | ||
vote_average: 6.62, | ||
vote_average: 6.4, | ||
vote_count: 5742, | ||
}, | ||
{ | ||
poster_path: "/t90Y3G8UGQp0f0DrP60wRu9gfrH.jpg", | ||
adult: false, | ||
overview: | ||
"When Tony Stark tries to jumpstart a dormant peacekeeping program, things go awry and Earth’s Mightiest Heroes are put to the ultimate test as the fate of the planet hangs in the balance. As the villainous Ultron emerges, it is up to The Avengers to stop him from enacting his terrible plans, and soon uneasy alliances and unexpected action pave the way for an epic and unique global adventure.", | ||
release_date: "2015-04-22", | ||
original_title: "Avengers: Age of Ultron", | ||
genre_ids: [28, 12, 878], | ||
id: 99861, | ||
backdrop_path: "/2ZusF7y230mM1NRlg9Ktgrak9Dg.jpg", | ||
genre_ids: [28, 53], | ||
id: 117263, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Avengers: Age of Ultron", | ||
backdrop_path: "/570qhjGZmGPrBGnfx70jcwIuBr4.jpg", | ||
popularity: 7.557812, | ||
vote_count: 3924, | ||
original_title: "Olympus Has Fallen", | ||
overview: | ||
'When the White House (Secret Service Code: "Olympus") is captured by a terrorist mastermind and the President is kidnapped, disgraced former Presidential guard Mike Banning finds himself trapped within the building. As the national security team scrambles to respond, they are forced to rely on Banning\'s inside knowledge to help retake the White House, save the President and avert an even bigger disaster.', | ||
poster_path: "/gKnx04MxnKcf5uOdhHhAAkqcCg.jpg", | ||
release_date: "2013-03-20", | ||
title: "Olympus Has Fallen", | ||
video: false, | ||
vote_average: 7.4, | ||
vote_average: 6.4, | ||
vote_count: 5556, | ||
}, | ||
], | ||
name: "Scarlett Johansson", | ||
popularity: 22.293639, | ||
known_for_department: "Acting", | ||
name: "Cole Hauser", | ||
popularity: 79.235, | ||
profile_path: "/kJyUtNZREd7mes21OrWiCtOugPL.jpg", | ||
}, | ||
{ | ||
profile_path: "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", | ||
adult: false, | ||
id: 192, | ||
gender: 1, | ||
id: 1172108, | ||
known_for: [ | ||
{ | ||
poster_path: "/1hRoyzDtpgMU7Dz4JF22RANzQO7.jpg", | ||
adult: false, | ||
overview: | ||
"Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent, Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective, but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.", | ||
release_date: "2008-07-16", | ||
original_title: "The Dark Knight", | ||
genre_ids: [18, 28, 80, 53], | ||
id: 155, | ||
backdrop_path: "/w2PMyoyLU22YvrGK3smVM9fW1jj.jpg", | ||
genre_ids: [28, 12, 878], | ||
id: 299537, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Dark Knight", | ||
backdrop_path: "/nnMC0BM6XbjIIrT4miYmMtPGcQV.jpg", | ||
popularity: 8.090715, | ||
vote_count: 7744, | ||
original_title: "Captain Marvel", | ||
overview: | ||
"The story follows Carol Danvers as she becomes one of the universe’s most powerful heroes when Earth is caught in the middle of a galactic war between two alien races. Set in the 1990s, Captain Marvel is an all-new adventure from a previously unseen period in the history of the Marvel Cinematic Universe.", | ||
poster_path: "/AtsgWhDnHTq68L0lLsUrCnM7TjG.jpg", | ||
release_date: "2019-03-06", | ||
title: "Captain Marvel", | ||
video: false, | ||
vote_average: 8.06, | ||
vote_average: 6.9, | ||
vote_count: 12563, | ||
}, | ||
{ | ||
poster_path: "/dEYnvnUfXrqvqeRSqvIEtmzhoA8.jpg", | ||
adult: false, | ||
overview: | ||
"Following the death of District Attorney Harvey Dent, Batman assumes responsibility for Dent's crimes to protect the late attorney's reputation and is subsequently hunted by the Gotham City Police Department. Eight years later, Batman encounters the mysterious Selina Kyle and the villainous Bane, a new terrorist leader who overwhelms Gotham's finest. The Dark Knight resurfaces to protect a city that has branded him an enemy.", | ||
release_date: "2012-07-16", | ||
original_title: "The Dark Knight Rises", | ||
genre_ids: [28, 80, 18, 53], | ||
id: 49026, | ||
backdrop_path: "/q7fXcrDPJcf6t3rzutaNwTzuKP1.jpg", | ||
genre_ids: [878, 12, 28], | ||
id: 333339, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Dark Knight Rises", | ||
backdrop_path: "/3bgtUfKQKNi3nJsAB5URpP2wdRt.jpg", | ||
popularity: 6.836486, | ||
vote_count: 6385, | ||
original_title: "Ready Player One", | ||
overview: | ||
"When the creator of a popular video game system dies, a virtual contest is created to compete for his fortune.", | ||
poster_path: "/pU1ULUq8D3iRxl1fdX2lZIzdHuI.jpg", | ||
release_date: "2018-03-28", | ||
title: "Ready Player One", | ||
video: false, | ||
vote_average: 7.47, | ||
vote_average: 7.6, | ||
vote_count: 12464, | ||
}, | ||
{ | ||
poster_path: "/9O7gLzmreU0nGkIB6K3BsJbzvNv.jpg", | ||
adult: false, | ||
overview: | ||
"Framed in the 1940s for the double murder of his wife and her lover, upstanding banker Andy Dufresne begins a new life at the Shawshank prison, where he puts his accounting skills to work for an amoral warden. During his long stretch in prison, Dufresne comes to be admired by the other inmates -- including an older prisoner named Red -- for his integrity and unquenchable sense of hope.", | ||
release_date: "1994-09-10", | ||
original_title: "The Shawshank Redemption", | ||
genre_ids: [18, 80], | ||
id: 278, | ||
backdrop_path: "/ou70x2658dVnbycIRaC37sEeafS.jpg", | ||
genre_ids: [28, 12, 878], | ||
id: 47933, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Shawshank Redemption", | ||
backdrop_path: "/xBKGJQsAIeweesB79KC89FpBrVr.jpg", | ||
popularity: 6.741296, | ||
vote_count: 5238, | ||
original_title: "Independence Day: Resurgence", | ||
overview: | ||
"We always knew they were coming back. Using recovered alien technology, the nations of Earth have collaborated on an immense defense program to protect the planet. But nothing can prepare us for the aliens’ advanced and unprecedented force. Only the ingenuity of a few brave men and women can bring our world back from the brink of extinction.", | ||
poster_path: "/jzpvh0Ic7jL9GX4NLE1Tx2GUCrN.jpg", | ||
release_date: "2016-06-22", | ||
title: "Independence Day: Resurgence", | ||
video: false, | ||
vote_average: 8.32, | ||
vote_average: 5.2, | ||
vote_count: 5129, | ||
}, | ||
], | ||
name: "Morgan Freeman", | ||
popularity: 20.526443, | ||
known_for_department: "Acting", | ||
name: "Mckenna Grace", | ||
popularity: 78.839, | ||
profile_path: "/jQLBM6ErQnvU8QqNvW8KKF9y8N0.jpg", | ||
}, | ||
{ | ||
profile_path: "/laJdQNmsuR2iblYUggEqr49LvwJ.jpg", | ||
adult: false, | ||
id: 9827, | ||
gender: 1, | ||
id: 505710, | ||
known_for: [ | ||
{ | ||
poster_path: "/7SSm7BfzFoVzmd6fCDccj7qRxc8.jpg", | ||
adult: false, | ||
overview: | ||
"Before Charles Xavier and Erik Lensherr took the names Professor X and Magneto, they were two young men discovering their powers for the first time. Before they were arch-enemies, they were closest of friends, working together with other mutants (some familiar, some new), to stop the greatest threat the world has ever known.", | ||
release_date: "2011-05-24", | ||
original_title: "X-Men: First Class", | ||
genre_ids: [28, 878, 12], | ||
id: 49538, | ||
backdrop_path: "/tTlAA0REGPXSZPBfWyTW9ipIv1I.jpg", | ||
genre_ids: [28, 12, 878, 18], | ||
id: 315635, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "X-Men: First Class", | ||
backdrop_path: "/39nstYsfjR6ggyKTtB4Joga2fs8.jpg", | ||
popularity: 1.129395, | ||
vote_count: 3444, | ||
original_title: "Spider-Man: Homecoming", | ||
overview: | ||
"Following the events of Captain America: Civil War, Peter Parker, with the help of his mentor Tony Stark, tries to balance his life as an ordinary high school student in Queens, New York City, with fighting crime as his superhero alter ego Spider-Man as a new threat, the Vulture, emerges.", | ||
poster_path: "/c24sv2weTHPsmDa7jEMN0m2P3RT.jpg", | ||
release_date: "2017-07-05", | ||
title: "Spider-Man: Homecoming", | ||
video: false, | ||
vote_average: 6.97, | ||
vote_average: 7.4, | ||
vote_count: 17891, | ||
}, | ||
{ | ||
poster_path: "/2vcNFtrZXNwIcBgH5e2xXCmVR8t.jpg", | ||
adult: false, | ||
overview: | ||
"Ten years after the invasion of Naboo, the galaxy is on the brink of civil war. Under the leadership of a renegade Jedi named Count Dooku, thousands of solar systems threaten to break away from the Galactic Republic. When an assassination attempt is made on Senator Padmé Amidala, the former Queen of Naboo, twenty-year-old Jedi apprentice Anakin Skywalker is assigned to protect her. In the course of his mission, Anakin discovers his love for Padmé as well as his own darker side. Soon, Anakin, Padmé, and Obi-Wan Kenobi are drawn into the heart of the Separatist movement and the beginning of the Clone Wars.", | ||
release_date: "2002-05-15", | ||
original_title: "Star Wars: Episode II - Attack of the Clones", | ||
genre_ids: [12, 28, 878], | ||
id: 1894, | ||
backdrop_path: "/ng6SSB3JhbcpKTwbPDsRwUYK8Cq.jpg", | ||
genre_ids: [28, 12, 878], | ||
id: 429617, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Star Wars: Episode II - Attack of the Clones", | ||
backdrop_path: "/560F7BPaxRy8BsOfVU6cW4ivM46.jpg", | ||
popularity: 2.824467, | ||
vote_count: 2282, | ||
original_title: "Spider-Man: Far From Home", | ||
overview: | ||
"Peter Parker and his friends go on a summer trip to Europe. However, they will hardly be able to rest - Peter will have to agree to help Nick Fury uncover the mystery of creatures that cause natural disasters and destruction throughout the continent.", | ||
poster_path: "/4q2NNj4S5dG2RLF9CpXsej7yXl.jpg", | ||
release_date: "2019-06-28", | ||
title: "Spider-Man: Far From Home", | ||
video: false, | ||
vote_average: 6.35, | ||
vote_average: 7.5, | ||
vote_count: 11847, | ||
}, | ||
{ | ||
poster_path: "/49Akyhe0gnuokaDIKKDldFRBoru.jpg", | ||
adult: false, | ||
overview: | ||
"A desk-bound CIA analyst volunteers to go undercover to infiltrate the world of a deadly arms dealer, and prevent diabolical global disaster.", | ||
release_date: "2015-05-06", | ||
original_title: "Spy", | ||
genre_ids: [28, 35, 80], | ||
id: 238713, | ||
backdrop_path: "/lrNKm3HNvGdZoAfiBKu7b04FLHN.jpg", | ||
genre_ids: [18], | ||
id: 316029, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Spy", | ||
backdrop_path: "/AoYGqtWxcNmQjQIpRCMtzpFfL1T.jpg", | ||
popularity: 3.645483, | ||
vote_count: 1687, | ||
original_title: "The Greatest Showman", | ||
overview: | ||
"The story of American showman P.T. Barnum, founder of the circus that became the famous traveling Ringling Bros. and Barnum & Bailey Circus.", | ||
poster_path: "/b9CeobiihCx1uG1tpw8hXmpi7nm.jpg", | ||
release_date: "2017-12-20", | ||
title: "The Greatest Showman", | ||
video: false, | ||
vote_average: 6.96, | ||
vote_average: 8, | ||
vote_count: 7896, | ||
}, | ||
], | ||
name: "Rose Byrne", | ||
popularity: 19.830977, | ||
known_for_department: "Acting", | ||
name: "Zendaya", | ||
popularity: 78.701, | ||
profile_path: "/so3GqzuvXbYkNzQYNliAMB5rZzT.jpg", | ||
}, | ||
{ | ||
profile_path: "/p745afG6B5yt1L0kFAMIUKzqxa.jpg", | ||
adult: false, | ||
id: 10990, | ||
gender: 1, | ||
id: 17521, | ||
known_for: [ | ||
{ | ||
poster_path: "/lR4drT4VGfts32j9jYTZUc1a3Pa.jpg", | ||
adult: false, | ||
overview: | ||
"Harry Potter has lived under the stairs at his aunt and uncle's house his whole life. But on his 11th birthday, he learns he's a powerful wizard -- with a place waiting for him at the Hogwarts School of Witchcraft and Wizardry. As he learns to harness his newfound powers with the help of the school's kindly headmaster, Harry uncovers the truth about his parents' deaths -- and about the villain who's to blame.", | ||
release_date: "2001-11-16", | ||
original_title: "Harry Potter and the Philosopher's Stone", | ||
genre_ids: [12, 14, 10751], | ||
id: 671, | ||
backdrop_path: "/oLmifRdaETboot2PXxpZN8NqHhK.jpg", | ||
genre_ids: [28, 12, 80, 9648], | ||
id: 10528, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Harry Potter and the Philosopher's Stone", | ||
backdrop_path: "/uD93T339xX1k3fnDUaeopZBiajY.jpg", | ||
popularity: 6.742273, | ||
vote_count: 3793, | ||
original_title: "Sherlock Holmes", | ||
overview: | ||
"Eccentric consulting detective, Sherlock Holmes and Doctor John Watson battle to bring down a new nemesis and unravel a deadly plot that could destroy England.", | ||
poster_path: "/momkKuWburNTqKBF6ez7rvhYVhE.jpg", | ||
release_date: "2009-01-01", | ||
title: "Sherlock Holmes", | ||
video: false, | ||
vote_average: 7.15, | ||
vote_average: 7.2, | ||
vote_count: 11930, | ||
}, | ||
{ | ||
poster_path: "/fTplI1NCSuEDP4ITLcTps739fcC.jpg", | ||
adult: false, | ||
overview: | ||
"In the second installment of the two-part conclusion, Harry and his best friends, Ron and Hermione, continue their quest to vanquish the evil Voldemort once and for all. Just as things begin to look hopeless for the young wizards, Harry discovers a trio of magical objects that endow him with powers to rival Voldemort's formidable skills.", | ||
release_date: "2011-07-07", | ||
original_title: "Harry Potter and the Deathly Hallows: Part 2", | ||
genre_ids: [12, 10751, 14], | ||
id: 12445, | ||
backdrop_path: "/nVMalJRUsOeGP5xPx9ULmirZ4cJ.jpg", | ||
genre_ids: [12, 28, 80, 9648], | ||
id: 58574, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Harry Potter and the Deathly Hallows: Part 2", | ||
backdrop_path: "/gblLAEIDoWRN0vBLJyFGUZnf6j5.jpg", | ||
popularity: 5.77306, | ||
vote_count: 3347, | ||
original_title: "Sherlock Holmes: A Game of Shadows", | ||
overview: | ||
"There is a new criminal mastermind at large (Professor Moriarty) and not only is he Holmes’ intellectual equal, but his capacity for evil and lack of conscience may give him an advantage over the detective.", | ||
poster_path: "/y1MYZkwhZK6L0Jy4YMuPktzDOfn.jpg", | ||
release_date: "2011-11-22", | ||
title: "Sherlock Holmes: A Game of Shadows", | ||
video: false, | ||
vote_average: 7.65, | ||
vote_average: 7.1, | ||
vote_count: 8739, | ||
}, | ||
{ | ||
poster_path: "/maP4MTfPCeVD2FZbKTLUgriOW4R.jpg", | ||
adult: false, | ||
overview: | ||
"The end begins as Harry, Ron, and Hermione walk away from their last year at Hogwarts to find and destroy the remaining Horcruxes, putting an end to Voldemort's bid for immortality. But with Harry's beloved Dumbledore dead and Voldemort's unscrupulous Death Eaters on the loose, the world is more dangerous than ever.", | ||
release_date: "2010-10-17", | ||
original_title: "Harry Potter and the Deathly Hallows: Part 1", | ||
genre_ids: [12, 14, 10751], | ||
id: 12444, | ||
backdrop_path: "/yBq4jWZLaEJIssuVx2fAysEwJnt.jpg", | ||
genre_ids: [18, 10749], | ||
id: 4348, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Harry Potter and the Deathly Hallows: Part 1", | ||
backdrop_path: "/8YA36faYlkpfp6aozcGsqq68pZ9.jpg", | ||
popularity: 4.326054, | ||
vote_count: 3100, | ||
original_title: "Pride & Prejudice", | ||
overview: | ||
"A story of love and life among the landed English gentry during the Georgian era. Mr. Bennet is a gentleman living in Hertfordshire with his overbearing wife and five daughters, but if he dies their house will be inherited by a distant cousin whom they have never met, so the family's future happiness and security is dependent on the daughters making good marriages.", | ||
poster_path: "/sGjIvtVvTlWnia2zfJfHz81pZ9Q.jpg", | ||
release_date: "2005-09-16", | ||
title: "Pride & Prejudice", | ||
video: false, | ||
vote_average: 7.28, | ||
vote_average: 8.1, | ||
vote_count: 6256, | ||
}, | ||
], | ||
name: "Emma Watson", | ||
popularity: 19.738189, | ||
known_for_department: "Acting", | ||
name: "Kelly Reilly", | ||
popularity: 78.405, | ||
profile_path: "/l8aQsryOQvxgX6SdZ4XtzU8KEXn.jpg", | ||
}, | ||
{ | ||
profile_path: "/lrhth7yK9p3vy6p7AabDUM1THKl.jpg", | ||
adult: false, | ||
id: 74568, | ||
gender: 1, | ||
id: 963429, | ||
known_for: [ | ||
{ | ||
poster_path: "/cezWGskPY5x7GaglTTRN4Fugfb8.jpg", | ||
adult: false, | ||
overview: | ||
"When an unexpected enemy emerges and threatens global safety and security, Nick Fury, director of the international peacekeeping agency known as S.H.I.E.L.D., finds himself in need of a team to pull the world back from the brink of disaster. Spanning the globe, a daring recruitment effort begins!", | ||
release_date: "2012-04-25", | ||
original_title: "The Avengers", | ||
genre_ids: [878, 28, 12], | ||
id: 24428, | ||
backdrop_path: "/nM1kHUIalqE2cr3el1A06yKUlha.jpg", | ||
genre_ids: [16, 12, 35, 14], | ||
id: 223702, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Avengers", | ||
backdrop_path: "/hbn46fQaRmlpBuUrEiFqv0GDL6Y.jpg", | ||
popularity: 7.353212, | ||
vote_count: 8503, | ||
original_title: "Sausage Party", | ||
overview: | ||
"Frank leads a group of supermarket products on a quest to discover the truth about their existence and what really happens when they become chosen to leave the grocery store.", | ||
poster_path: "/6jjOY2Vgii2wbUOYNWkMLLqnpZB.jpg", | ||
release_date: "2016-07-11", | ||
title: "Sausage Party", | ||
video: false, | ||
vote_average: 7.33, | ||
vote_average: 5.7, | ||
vote_count: 6052, | ||
}, | ||
{ | ||
poster_path: "/bIuOWTtyFPjsFDevqvF3QrD1aun.jpg", | ||
adult: false, | ||
overview: | ||
"Against his father Odin's will, The Mighty Thor -a powerful but arrogant warrior god -recklessly reignites an ancient war. Thor is cast down to Earth and forced to live among humans as punishment. Once here, Thor learns what it takes to be a true hero when the most dangerous villain of his world sends the darkest forces of Asgard to invade Earth.", | ||
release_date: "2011-04-21", | ||
original_title: "Thor", | ||
genre_ids: [12, 14, 28], | ||
id: 10195, | ||
backdrop_path: "/lavWAUXVe7vHlKhZEGmfVLaVd4S.jpg", | ||
genre_ids: [35, 10749, 18], | ||
id: 4964, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Thor", | ||
backdrop_path: "/6UxFfo8K3vcihtUpX1ek2ucGeEZ.jpg", | ||
popularity: 5.293285, | ||
vote_count: 4217, | ||
original_title: "Knocked Up", | ||
overview: | ||
"For fun loving party animal Ben Stone, the last thing he ever expected was for his one night stand to show up on his doorstep eight weeks later to tell him she's pregnant.", | ||
poster_path: "/b4OaXw2MW97VvIiZE0Sbn1NfxSh.jpg", | ||
release_date: "2007-06-01", | ||
title: "Knocked Up", | ||
video: false, | ||
vote_average: 6.51, | ||
vote_average: 6.2, | ||
vote_count: 3206, | ||
}, | ||
{ | ||
poster_path: "/t90Y3G8UGQp0f0DrP60wRu9gfrH.jpg", | ||
adult: false, | ||
overview: | ||
"When Tony Stark tries to jumpstart a dormant peacekeeping program, things go awry and Earth’s Mightiest Heroes are put to the ultimate test as the fate of the planet hangs in the balance. As the villainous Ultron emerges, it is up to The Avengers to stop him from enacting his terrible plans, and soon uneasy alliances and unexpected action pave the way for an epic and unique global adventure.", | ||
release_date: "2015-04-22", | ||
original_title: "Avengers: Age of Ultron", | ||
genre_ids: [28, 12, 878], | ||
id: 99861, | ||
backdrop_path: "/botG6F4zvVD6WnDxQCWTU7U5cTD.jpg", | ||
genre_ids: [35], | ||
id: 89492, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Avengers: Age of Ultron", | ||
backdrop_path: "/570qhjGZmGPrBGnfx70jcwIuBr4.jpg", | ||
popularity: 7.557812, | ||
vote_count: 3924, | ||
original_title: "This Is 40", | ||
overview: | ||
"Pete and Debbie are both about to turn 40, their kids hate each other, both of their businesses are failing, they're on the verge of losing their house, and their relationship is threatening to fall apart.", | ||
poster_path: "/dtvOysDutHhlf862UP5X0w9h8Ju.jpg", | ||
release_date: "2012-12-20", | ||
title: "This Is 40", | ||
video: false, | ||
vote_average: 7.4, | ||
vote_average: 5.8, | ||
vote_count: 1776, | ||
}, | ||
], | ||
name: "Chris Hemsworth", | ||
popularity: 19.209345, | ||
known_for_department: "Acting", | ||
name: "Iris Apatow", | ||
popularity: 77.507, | ||
profile_path: "/dVxJmLQf7XJl5GN9bY06gAYCtnL.jpg", | ||
}, | ||
{ | ||
profile_path: "/rFuETZeyOAfIqBahOObF7Soq5Dh.jpg", | ||
adult: false, | ||
id: 8784, | ||
gender: 2, | ||
id: 37625, | ||
known_for: [ | ||
{ | ||
poster_path: "/lQCkPLDxFONmgzrWLvq085v1g2d.jpg", | ||
adult: false, | ||
overview: | ||
"When Bond's latest assignment goes gravely wrong and agents around the world are exposed, MI6 is attacked forcing M to relocate the agency. These events cause her authority and position to be challenged by Gareth Mallory (Ralph Fiennes), the new Chairman of the Intelligence and Security Committee. With MI6 now compromised from both inside and out, M is left with one ally she can trust: Bond. 007 takes to the shadows - aided only by field agent, Eve (Naomie Harris) - following a trail to the mysterious Silva (Javier Bardem), whose lethal and hidden motives have yet to reveal themselves.", | ||
release_date: "2012-10-25", | ||
original_title: "Skyfall", | ||
genre_ids: [28, 12, 53], | ||
id: 37724, | ||
backdrop_path: "/sLWUtbrpiLp23a0XDSiUiltdFPJ.jpg", | ||
genre_ids: [28, 12, 14], | ||
id: 1930, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Skyfall", | ||
backdrop_path: "/AunH2MIKIbnU9khgFp45eJlydPu.jpg", | ||
popularity: 5.038792, | ||
vote_count: 5845, | ||
original_title: "The Amazing Spider-Man", | ||
overview: | ||
"Peter Parker is an outcast high schooler abandoned by his parents as a boy, leaving him to be raised by his Uncle Ben and Aunt May. Like most teenagers, Peter is trying to figure out who he is and how he got to be the person he is today. As Peter discovers a mysterious briefcase that belonged to his father, he begins a quest to understand his parents' disappearance – leading him directly to Oscorp and the lab of Dr. Curt Connors, his father's former partner. As Spider-Man is set on a collision course with Connors' alter ego, The Lizard, Peter will make life-altering choices to use his powers and shape his destiny to become a hero.", | ||
poster_path: "/fSbqPbqXa7ePo8bcnZYN9AHv6zA.jpg", | ||
release_date: "2012-06-23", | ||
title: "The Amazing Spider-Man", | ||
video: false, | ||
vote_average: 6.81, | ||
vote_average: 6.6, | ||
vote_count: 14330, | ||
}, | ||
{ | ||
poster_path: "/weUSwMdQIa3NaXVzwUoIIcAi85d.jpg", | ||
adult: false, | ||
overview: | ||
"Thirty years after defeating the Galactic Empire, Han Solo and his allies face a new threat from the evil Kylo Ren and his army of Stormtroopers.", | ||
release_date: "2015-12-15", | ||
original_title: "Star Wars: The Force Awakens", | ||
genre_ids: [28, 12, 878, 14], | ||
id: 140607, | ||
backdrop_path: "/u7SeO6Y42P7VCTWLhpnL96cyOqd.jpg", | ||
genre_ids: [28, 12, 14], | ||
id: 102382, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Star Wars: The Force Awakens", | ||
backdrop_path: "/c2Ax8Rox5g6CneChwy1gmu4UbSb.jpg", | ||
popularity: 8.83227, | ||
vote_count: 4697, | ||
original_title: "The Amazing Spider-Man 2", | ||
overview: | ||
"For Peter Parker, life is busy. Between taking out the bad guys as Spider-Man and spending time with the person he loves, Gwen Stacy, high school graduation cannot come quickly enough. Peter has not forgotten about the promise he made to Gwen’s father to protect her by staying away, but that is a promise he cannot keep. Things will change for Peter when a new villain, Electro, emerges, an old friend, Harry Osborn, returns, and Peter uncovers new clues about his past.", | ||
poster_path: "/c3e9e18SSlvFd1cQaGmUj5tqL5P.jpg", | ||
release_date: "2014-04-16", | ||
title: "The Amazing Spider-Man 2", | ||
video: false, | ||
vote_average: 7.55, | ||
vote_average: 6.5, | ||
vote_count: 10538, | ||
}, | ||
{ | ||
poster_path: "/hE24GYddaxB9MVZl1CaiI86M3kp.jpg", | ||
adult: false, | ||
overview: | ||
"A cryptic message from Bond’s past sends him on a trail to uncover a sinister organization. While M battles political forces to keep the secret service alive, Bond peels back the layers of deceit to reveal the terrible truth behind SPECTRE.", | ||
release_date: "2015-10-26", | ||
original_title: "Spectre", | ||
genre_ids: [28, 12, 80], | ||
id: 206647, | ||
backdrop_path: "/yQIBS8B9l2qXoPoPtxSXvH7CfoT.jpg", | ||
genre_ids: [18, 36, 10752], | ||
id: 324786, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Spectre", | ||
backdrop_path: "/wVTYlkKPKrljJfugXN7UlLNjtuJ.jpg", | ||
popularity: 7.090211, | ||
vote_count: 2956, | ||
original_title: "Hacksaw Ridge", | ||
overview: | ||
"WWII American Army Medic Desmond T. Doss, who served during the Battle of Okinawa, refuses to kill people and becomes the first Conscientious Objector in American history to receive the Congressional Medal of Honor.", | ||
poster_path: "/fTuxNlgEm04PPFkr1xfK94Jn8BW.jpg", | ||
release_date: "2016-10-07", | ||
title: "Hacksaw Ridge", | ||
video: false, | ||
vote_average: 6.2, | ||
vote_average: 8.2, | ||
vote_count: 10464, | ||
}, | ||
], | ||
name: "Daniel Craig", | ||
popularity: 18.961886, | ||
known_for_department: "Acting", | ||
name: "Andrew Garfield", | ||
popularity: 77.036, | ||
profile_path: "/beO5YvbTjrr5yy8hW26KVDMSr35.jpg", | ||
}, | ||
{ | ||
profile_path: "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", | ||
adult: false, | ||
id: 287, | ||
gender: 1, | ||
id: 56734, | ||
known_for: [ | ||
{ | ||
poster_path: "/811DjJTon9gD6hZ8nCjSitaIXFQ.jpg", | ||
adult: false, | ||
overview: | ||
'A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground "fight clubs" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.', | ||
release_date: "1999-10-14", | ||
original_title: "Fight Club", | ||
genre_ids: [18], | ||
id: 550, | ||
backdrop_path: "/zvRsjPHJDoJhhNdmYkFJqCdqmyr.jpg", | ||
genre_ids: [28, 80], | ||
id: 23483, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Fight Club", | ||
backdrop_path: "/8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg", | ||
popularity: 6.590102, | ||
vote_count: 5221, | ||
original_title: "Kick-Ass", | ||
overview: | ||
"Dave Lizewski is an unnoticed high school student and comic book fan who one day decides to become a super-hero, even though he has no powers, training or meaningful reason to do so.", | ||
poster_path: "/8citjdBmjddZjlPsAHEyCKwGVvD.jpg", | ||
release_date: "2010-03-22", | ||
title: "Kick-Ass", | ||
video: false, | ||
vote_average: 8.05, | ||
vote_average: 7.1, | ||
vote_count: 9869, | ||
}, | ||
{ | ||
poster_path: "/6zYuTKyvcwmtNvXXvJZNT0IgBL0.jpg", | ||
adult: false, | ||
overview: | ||
'In Nazi-occupied France during World War II, a group of Jewish-American soldiers known as "The Basterds" are chosen specifically to spread fear throughout the Third Reich by scalping and brutally killing Nazis. The Basterds, lead by Lt. Aldo Raine soon cross paths with a French-Jewish teenage girl who runs a movie theater in Paris which is targeted by the soldiers.', | ||
release_date: "2009-08-18", | ||
original_title: "Inglourious Basterds", | ||
genre_ids: [18, 28, 53, 10752], | ||
id: 16869, | ||
backdrop_path: "/etBZfuOie3uODTKTV5xnbAKB4Fr.jpg", | ||
genre_ids: [35, 18, 10749], | ||
id: 19913, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Inglourious Basterds", | ||
backdrop_path: "/bk0GylJLneaSbpQZXpgTwleYigq.jpg", | ||
popularity: 5.650904, | ||
vote_count: 3535, | ||
original_title: "(500) Days of Summer", | ||
overview: | ||
"Tom, greeting-card writer and hopeless romantic, is caught completely off-guard when his girlfriend, Summer, suddenly dumps him. He reflects on their 500 days together to try to figure out where their love affair went sour, and in doing so, Tom rediscovers his true passions in life.", | ||
poster_path: "/f9mbM0YMLpYemcWx6o2WeiYQLDP.jpg", | ||
release_date: "2009-07-17", | ||
title: "(500) Days of Summer", | ||
video: false, | ||
vote_average: 7.72, | ||
vote_average: 7.3, | ||
vote_count: 8116, | ||
}, | ||
{ | ||
poster_path: "/Ha5t0J21eyiq6Az1EXzx0iwsGH.jpg", | ||
adult: false, | ||
overview: | ||
"Life for former United Nations investigator Gerry Lane and his family seems content. Suddenly, the world is plagued by a mysterious infection turning whole human populations into rampaging mindless zombies. After barely escaping the chaos, Lane is persuaded to go on a mission to investigate this disease. What follows is a perilous trek around the world where Lane must brave horrific dangers and long odds to find answers before human civilization falls.", | ||
release_date: "2013-06-20", | ||
original_title: "World War Z", | ||
genre_ids: [28, 18, 27, 878, 53], | ||
id: 72190, | ||
backdrop_path: "/gIjKKa0F4DOTub2CH8TwLe4tPOf.jpg", | ||
genre_ids: [53, 28, 80], | ||
id: 156022, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "World War Z", | ||
backdrop_path: "/xMOQVYLeIKBXenJ9KMeasj7S64y.jpg", | ||
popularity: 3.205127, | ||
vote_count: 3520, | ||
original_title: "The Equalizer", | ||
overview: | ||
"McCall believes he has put his mysterious past behind him and dedicated himself to beginning a new, quiet life. But when he meets Teri, a young girl under the control of ultra-violent Russian gangsters, he can’t stand idly by – he has to help her. Armed with hidden skills that allow him to serve vengeance against anyone who would brutalize the helpless, McCall comes out of his self-imposed retirement and finds his desire for justice reawakened. If someone has a problem, if the odds are stacked against them, if they have nowhere else to turn, McCall will help. He is The Equalizer.", | ||
poster_path: "/9u4yW7yPA0BQ2pv9XwiNzItwvp8.jpg", | ||
release_date: "2014-09-24", | ||
title: "The Equalizer", | ||
video: false, | ||
vote_average: 6.75, | ||
vote_average: 7.2, | ||
vote_count: 7015, | ||
}, | ||
], | ||
name: "Brad Pitt", | ||
popularity: 18.796367, | ||
known_for_department: "Acting", | ||
name: "Chloë Grace Moretz", | ||
popularity: 75.17, | ||
profile_path: "/yq4rYmaTRC5degaOYmJQFpaiho1.jpg", | ||
}, | ||
{ | ||
profile_path: "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", | ||
adult: false, | ||
id: 3223, | ||
gender: 2, | ||
id: 976, | ||
known_for: [ | ||
{ | ||
poster_path: "/cezWGskPY5x7GaglTTRN4Fugfb8.jpg", | ||
adult: false, | ||
overview: | ||
"When an unexpected enemy emerges and threatens global safety and security, Nick Fury, director of the international peacekeeping agency known as S.H.I.E.L.D., finds himself in need of a team to pull the world back from the brink of disaster. Spanning the globe, a daring recruitment effort begins!", | ||
release_date: "2012-04-25", | ||
original_title: "The Avengers", | ||
genre_ids: [878, 28, 12], | ||
id: 24428, | ||
backdrop_path: "/mRfI3y2oAd7ejur2di09xC9niqp.jpg", | ||
genre_ids: [28, 53, 80], | ||
id: 82992, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Avengers", | ||
backdrop_path: "/hbn46fQaRmlpBuUrEiFqv0GDL6Y.jpg", | ||
popularity: 7.353212, | ||
vote_count: 8503, | ||
original_title: "Fast & Furious 6", | ||
overview: | ||
"Hobbs has Dominic and Brian reassemble their crew to take down a team of mercenaries: Dominic unexpectedly gets convoluted also facing his presumed deceased girlfriend, Letty.", | ||
poster_path: "/n31VRDodbaZxkrZmmzyYSFNVpW5.jpg", | ||
release_date: "2013-05-21", | ||
title: "Fast & Furious 6", | ||
video: false, | ||
vote_average: 7.33, | ||
vote_average: 6.8, | ||
vote_count: 9074, | ||
}, | ||
{ | ||
poster_path: "/1Ilv6ryHUv6rt9zIsbSEJUmmbEi.jpg", | ||
adult: false, | ||
overview: | ||
"The brash-but-brilliant industrialist Tony Stark faces an enemy whose reach knows no bounds. When Stark finds his personal world destroyed at his enemy’s hands, he embarks on a harrowing quest to find those responsible. This journey, at every turn, will test his mettle. With his back against the wall, Stark is left to survive by his own devices, relying on his ingenuity and instincts to protect those closest to him. As he fights his way back, Stark discovers the answer to the question that has secretly haunted him: does the man make the suit or does the suit make the man?", | ||
release_date: "2013-04-18", | ||
original_title: "Iron Man 3", | ||
genre_ids: [28, 12, 878], | ||
id: 68721, | ||
backdrop_path: "/gyCHdpyPXmp7rqxE10nlImkzRo9.jpg", | ||
genre_ids: [28, 53, 80, 12], | ||
id: 168259, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Iron Man 3", | ||
backdrop_path: "/n9X2DKItL3V0yq1q1jrk8z5UAki.jpg", | ||
popularity: 4.993196, | ||
vote_count: 6598, | ||
original_title: "Furious 7", | ||
overview: | ||
"Deckard Shaw seeks revenge against Dominic Toretto and his family for his comatose brother.", | ||
poster_path: "/ktofZ9Htrjiy0P6LEowsDaxd3Ri.jpg", | ||
release_date: "2015-04-01", | ||
title: "Furious 7", | ||
video: false, | ||
vote_average: 6.87, | ||
vote_average: 7.3, | ||
vote_count: 8900, | ||
}, | ||
{ | ||
poster_path: "/s2IG9qXfhJYxIttKyroYFBsHwzQ.jpg", | ||
adult: false, | ||
overview: | ||
"Tony Stark. Genius, billionaire, playboy, philanthropist. Son of legendary inventor and weapons contractor Howard Stark. When Tony Stark is assigned to give a weapons presentation to an Iraqi unit led by Lt. Col. James Rhodes, he's given a ride on enemy lines. That ride ends badly when Stark's Humvee that he's riding in is attacked by enemy combatants. He survives - barely - with a chest full of shrapnel and a car battery attached to his heart. In order to survive he comes up with a way to miniaturize the battery and figures out that the battery can power something else. Thus Iron Man is born. He uses the primitive device to escape from the cave in Iraq. Once back home, he then begins work on perfecting the Iron Man suit. But the man who was put in charge of Stark Industries has plans of his own to take over Tony's technology for other matters.", | ||
release_date: "2008-04-30", | ||
original_title: "Iron Man", | ||
genre_ids: [28, 878, 12], | ||
id: 1726, | ||
backdrop_path: "/jzdnhRhG0dsuYorwvSqPqqnM1cV.jpg", | ||
genre_ids: [28, 80, 53], | ||
id: 337339, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Iron Man", | ||
backdrop_path: "/ZQixhAZx6fH1VNafFXsqa1B8QI.jpg", | ||
popularity: 6.393385, | ||
vote_count: 5745, | ||
original_title: "The Fate of the Furious", | ||
overview: | ||
"When a mysterious woman seduces Dom into the world of crime and a betrayal of those closest to him, the crew face trials that will test them as never before.", | ||
poster_path: "/dImWM7GJqryWJO9LHa3XQ8DD5NH.jpg", | ||
release_date: "2017-04-12", | ||
title: "The Fate of the Furious", | ||
video: false, | ||
vote_average: 7.23, | ||
vote_average: 6.9, | ||
vote_count: 8719, | ||
}, | ||
], | ||
name: "Robert Downey Jr.", | ||
popularity: 18.773202, | ||
known_for_department: "Acting", | ||
name: "Jason Statham", | ||
popularity: 73.928, | ||
profile_path: "/lldeQ91GwIVff43JBrpdbAAeYWj.jpg", | ||
}, | ||
{ | ||
profile_path: "/3RdYMTLoL1X16djGF52cFtJovDT.jpg", | ||
adult: false, | ||
id: 12835, | ||
gender: 1, | ||
id: 1245, | ||
known_for: [ | ||
{ | ||
poster_path: "/y31QB9kn3XSudA15tV7UWQ9XLuW.jpg", | ||
adult: false, | ||
overview: | ||
"Light years from Earth, 26 years after being abducted, Peter Quill finds himself the prime target of a manhunt after discovering an orb wanted by Ronan the Accuser.", | ||
release_date: "2014-07-30", | ||
original_title: "Guardians of the Galaxy", | ||
genre_ids: [28, 878, 12], | ||
id: 118340, | ||
backdrop_path: "/nNmJRkg8wWnRmzQDe2FwKbPIsJV.jpg", | ||
genre_ids: [878, 28, 12], | ||
id: 24428, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Guardians of the Galaxy", | ||
backdrop_path: "/bHarw8xrmQeqf3t8HpuMY7zoK4x.jpg", | ||
popularity: 9.267731, | ||
vote_count: 5002, | ||
original_title: "The Avengers", | ||
overview: | ||
"When an unexpected enemy emerges and threatens global safety and security, Nick Fury, director of the international peacekeeping agency known as S.H.I.E.L.D., finds himself in need of a team to pull the world back from the brink of disaster. Spanning the globe, a daring recruitment effort begins!", | ||
poster_path: "/RYMX2wcKCBAr24UyPD7xwmjaTn.jpg", | ||
release_date: "2012-04-25", | ||
title: "The Avengers", | ||
video: false, | ||
vote_average: 7.97, | ||
vote_average: 7.7, | ||
vote_count: 26209, | ||
}, | ||
{ | ||
poster_path: "/b9gTJKLdSbwcQRKzmqMq3dMfRwI.jpg", | ||
adult: false, | ||
overview: | ||
"Hobbs has Dominic and Brian reassemble their crew to take down a team of mercenaries: Dominic unexpectedly gets convoluted also facing his presumed deceased girlfriend, Letty.", | ||
release_date: "2013-05-06", | ||
original_title: "Fast & Furious 6", | ||
genre_ids: [28, 53, 80], | ||
id: 82992, | ||
backdrop_path: "/lmZFxXgJE3vgrciwuDib0N8CfQo.jpg", | ||
genre_ids: [12, 28, 878], | ||
id: 299536, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Fast & Furious 6", | ||
backdrop_path: "/qjfE7SkPXpqFs8FX8rIaG6eO2aK.jpg", | ||
popularity: 1.737593, | ||
vote_count: 4233, | ||
original_title: "Avengers: Infinity War", | ||
overview: | ||
"As the Avengers and their allies have continued to protect the world from threats too large for any one hero to handle, a new danger has emerged from the cosmic shadows: Thanos. A despot of intergalactic infamy, his goal is to collect all six Infinity Stones, artifacts of unimaginable power, and use them to inflict his twisted will on all of reality. Everything the Avengers have fought for has led up to this moment - the fate of Earth and existence itself has never been more uncertain.", | ||
poster_path: "/7WsyChQLEftFiDOVTGkv3hFpyyt.jpg", | ||
release_date: "2018-04-25", | ||
title: "Avengers: Infinity War", | ||
video: false, | ||
vote_average: 6.63, | ||
vote_average: 8.3, | ||
vote_count: 23710, | ||
}, | ||
{ | ||
poster_path: "/gc7IN6bWNaWXv4vI6cxSmeB7PeO.jpg", | ||
adult: false, | ||
overview: | ||
"As U.S. troops storm the beaches of Normandy, three brothers lie dead on the battlefield, with a fourth trapped behind enemy lines. Ranger captain John Miller and seven men are tasked with penetrating German-held territory and bringing the boy home.", | ||
release_date: "1998-07-24", | ||
original_title: "Saving Private Ryan", | ||
genre_ids: [18, 36, 10752], | ||
id: 857, | ||
backdrop_path: "/7RyHsO4yDXtBv1zUU3mTpHeQ0d5.jpg", | ||
genre_ids: [12, 878, 28], | ||
id: 299534, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Saving Private Ryan", | ||
backdrop_path: "/gRtLcCQOpYUI9ThdVzi4VUP8QO3.jpg", | ||
popularity: 4.108465, | ||
vote_count: 3058, | ||
original_title: "Avengers: Endgame", | ||
overview: | ||
"After the devastating events of Avengers: Infinity War, the universe is in ruins due to the efforts of the Mad Titan, Thanos. With the help of remaining allies, the Avengers must assemble once more in order to undo Thanos' actions and restore order to the universe once and for all, no matter what consequences may be in store.", | ||
poster_path: "/or06FN3Dka5tukK1e9sl16pB3iy.jpg", | ||
release_date: "2019-04-24", | ||
title: "Avengers: Endgame", | ||
video: false, | ||
vote_average: 7.65, | ||
vote_average: 8.3, | ||
vote_count: 20174, | ||
}, | ||
], | ||
name: "Vin Diesel", | ||
popularity: 18.512198, | ||
known_for_department: "Acting", | ||
name: "Scarlett Johansson", | ||
popularity: 72.604, | ||
profile_path: "/6NsMbJXRlDZuDzatN2akFdGuTvx.jpg", | ||
}, | ||
{ | ||
profile_path: "/rHV63ATO7fTVlZOey9YaJsEvRUe.jpg", | ||
adult: false, | ||
id: 227454, | ||
gender: 1, | ||
id: 115150, | ||
known_for: [ | ||
{ | ||
poster_path: "/btbRB7BrD887j5NrvjxceRDmaot.jpg", | ||
adult: false, | ||
overview: | ||
"Caleb, a 26 year old coder at the world's largest internet company, wins a competition to spend a week at a private mountain retreat belonging to Nathan, the reclusive CEO of the company. But when Caleb arrives at the remote location he finds that he will have to participate in a strange and fascinating experiment in which he must interact with the world's first true artificial intelligence, housed in the body of a beautiful robot girl.", | ||
release_date: "2015-01-21", | ||
original_title: "Ex Machina", | ||
genre_ids: [18, 878], | ||
id: 264660, | ||
backdrop_path: "/udkrGMA9hsEGkQpmZ31rGpQQKp8.jpg", | ||
genre_ids: [28, 9648, 878, 53], | ||
id: 198663, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Ex Machina", | ||
backdrop_path: "/9X3cDZb4GYGQeOnZHLwMcCFz2Ro.jpg", | ||
popularity: 5.279412, | ||
vote_count: 2397, | ||
original_title: "The Maze Runner", | ||
overview: | ||
"Set in a post-apocalyptic world, young Thomas is deposited in a community of boys after his memory is erased, soon learning they're all trapped in a maze that will require him to join forces with fellow “runners” for a shot at escape.", | ||
poster_path: "/ode14q7WtDugFDp78fo9lCsmay9.jpg", | ||
release_date: "2014-09-10", | ||
title: "The Maze Runner", | ||
video: false, | ||
vote_average: 7.59, | ||
vote_average: 7.2, | ||
vote_count: 14254, | ||
}, | ||
{ | ||
poster_path: "/5ttOaThDVmTpV8iragbrhdfxEep.jpg", | ||
adult: false, | ||
overview: | ||
"At the height of the Cold War, a mysterious criminal organization plans to use nuclear weapons and technology to upset the fragile balance of power between the United States and Soviet Union. CIA agent Napoleon Solo and KGB agent Illya Kuryakin are forced to put aside their hostilities and work together to stop the evildoers in their tracks. The duo's only lead is the daughter of a missing German scientist, whom they must find soon to prevent a global catastrophe.", | ||
release_date: "2015-08-13", | ||
original_title: "The Man from U.N.C.L.E.", | ||
genre_ids: [35, 28, 12], | ||
id: 203801, | ||
backdrop_path: "/7C921eWK06n12c1miRXnYoEu5Yv.jpg", | ||
genre_ids: [12, 28, 14], | ||
id: 166426, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Man from U.N.C.L.E.", | ||
backdrop_path: "/bKxcCNv2xq8M3GD5iSrv9bMGDVa.jpg", | ||
popularity: 6.033553, | ||
vote_count: 1351, | ||
original_title: "Pirates of the Caribbean: Dead Men Tell No Tales", | ||
overview: | ||
"Thrust into an all-new adventure, a down-on-his-luck Capt. Jack Sparrow feels the winds of ill-fortune blowing even more strongly when deadly ghost sailors led by his old nemesis, the evil Capt. Salazar, escape from the Devil's Triangle. Jack's only hope of survival lies in seeking out the legendary Trident of Poseidon, but to find it, he must forge an uneasy alliance with a brilliant and beautiful astronomer and a headstrong young man in the British navy.", | ||
poster_path: "/qwoGfcg6YUS55nUweKGujHE54Wy.jpg", | ||
release_date: "2017-05-23", | ||
title: "Pirates of the Caribbean: Dead Men Tell No Tales", | ||
video: false, | ||
vote_average: 6.98, | ||
vote_average: 6.6, | ||
vote_count: 9838, | ||
}, | ||
{ | ||
poster_path: "/seWQ6UKCrhGH0eP7dFZvmIBQtKF.jpg", | ||
adult: false, | ||
overview: | ||
"When Gerda Wegener asks her husband Einar to fill in as a portrait model, Einar discovers the person she's meant to be and begins living her life as Lili Elbe. Having realized her true self and with Gerda's love and support, Lili embarks on a groundbreaking journey as a transgender pioneer.", | ||
release_date: "2015-11-27", | ||
original_title: "The Danish Girl", | ||
genre_ids: [18], | ||
id: 306819, | ||
backdrop_path: "/4mcOCiR06dqQ5eoEJcG3zvonjOa.jpg", | ||
genre_ids: [878, 28, 53, 12], | ||
id: 294254, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Danish Girl", | ||
backdrop_path: "/oXRoRYROJdoi7so8H9cHzS9jp6K.jpg", | ||
popularity: 3.395735, | ||
vote_count: 655, | ||
original_title: "Maze Runner: The Scorch Trials", | ||
overview: | ||
"Thomas and his fellow Gladers face their greatest challenge yet: searching for clues about the mysterious and powerful organization known as WCKD. Their journey takes them to the Scorch, a desolate landscape filled with unimaginable obstacles. Teaming up with resistance fighters, the Gladers take on WCKD’s vastly superior forces and uncover its shocking plans for them all.", | ||
poster_path: "/mYw7ZyejqSCPFlrT2jHZOESZDU3.jpg", | ||
release_date: "2015-09-09", | ||
title: "Maze Runner: The Scorch Trials", | ||
video: false, | ||
vote_average: 7.18, | ||
vote_average: 6.7, | ||
vote_count: 8657, | ||
}, | ||
], | ||
name: "Alicia Vikander", | ||
popularity: 17.66672, | ||
known_for_department: "Acting", | ||
name: "Kaya Scodelario", | ||
popularity: 72.177, | ||
profile_path: "/oKsGrXKGrcVoQJQ6pbjZDPOQJcM.jpg", | ||
}, | ||
{ | ||
profile_path: "/7wbHIn7GziFlJLPl8Zu1XVl24EG.jpg", | ||
adult: false, | ||
id: 1892, | ||
gender: 2, | ||
id: 6384, | ||
known_for: [ | ||
{ | ||
poster_path: "/nBNZadXqJSdt05SHLqgT0HuC5Gm.jpg", | ||
adult: false, | ||
overview: | ||
"Interstellar chronicles the adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.", | ||
release_date: "2014-11-05", | ||
original_title: "Interstellar", | ||
genre_ids: [12, 18, 878], | ||
id: 157336, | ||
backdrop_path: "/ncEsesgOJDNrTUED89hYbA117wo.jpg", | ||
genre_ids: [28, 878], | ||
id: 603, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Interstellar", | ||
backdrop_path: "/xu9zaAevzQ5nnrsXN6JcahLnG4i.jpg", | ||
popularity: 12.481061, | ||
vote_count: 5600, | ||
original_title: "The Matrix", | ||
overview: | ||
"Set in the 22nd century, The Matrix tells the story of a computer hacker who joins a group of underground insurgents fighting the vast and powerful computers who now rule the earth.", | ||
poster_path: "/f89U3ADr1oiB1s9GkdPOEpXUk5H.jpg", | ||
release_date: "1999-03-30", | ||
title: "The Matrix", | ||
video: false, | ||
vote_average: 8.12, | ||
vote_average: 8.2, | ||
vote_count: 20915, | ||
}, | ||
{ | ||
poster_path: "/5aGhaIHYuQbqlHWvWYqMCnj40y2.jpg", | ||
adult: false, | ||
overview: | ||
"During a manned mission to Mars, Astronaut Mark Watney is presumed dead after a fierce storm and left behind by his crew. But Watney has survived and finds himself stranded and alone on the hostile planet. With only meager supplies, he must draw upon his ingenuity, wit and spirit to subsist and find a way to signal to Earth that he is alive.", | ||
release_date: "2015-09-30", | ||
original_title: "The Martian", | ||
genre_ids: [18, 12, 878], | ||
id: 286217, | ||
backdrop_path: "/7dzngS8pLkGJpyeskCFcjPO9qLF.jpg", | ||
genre_ids: [28, 53], | ||
id: 245891, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Martian", | ||
backdrop_path: "/sy3e2e4JwdAtd2oZGA2uUilZe8j.jpg", | ||
popularity: 9.539478, | ||
vote_count: 3946, | ||
original_title: "John Wick", | ||
overview: | ||
"Ex-hitman John Wick comes out of retirement to track down the gangsters that took everything from him.", | ||
poster_path: "/fZPSd91yGE9fCcCe6OoQr6E3Bev.jpg", | ||
release_date: "2014-10-22", | ||
title: "John Wick", | ||
video: false, | ||
vote_average: 7.6, | ||
vote_average: 7.4, | ||
vote_count: 15247, | ||
}, | ||
{ | ||
poster_path: "/gc7IN6bWNaWXv4vI6cxSmeB7PeO.jpg", | ||
adult: false, | ||
overview: | ||
"As U.S. troops storm the beaches of Normandy, three brothers lie dead on the battlefield, with a fourth trapped behind enemy lines. Ranger captain John Miller and seven men are tasked with penetrating German-held territory and bringing the boy home.", | ||
release_date: "1998-07-24", | ||
original_title: "Saving Private Ryan", | ||
genre_ids: [18, 36, 10752], | ||
id: 857, | ||
backdrop_path: "/r17jFHAemzcWPPtoO0UxjIX0xas.jpg", | ||
genre_ids: [53, 28, 80], | ||
id: 324552, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Saving Private Ryan", | ||
backdrop_path: "/gRtLcCQOpYUI9ThdVzi4VUP8QO3.jpg", | ||
popularity: 4.108465, | ||
vote_count: 3058, | ||
original_title: "John Wick: Chapter 2", | ||
overview: | ||
"John Wick is forced out of retirement by a former associate looking to seize control of a shadowy international assassins’ guild. Bound by a blood oath to aid him, Wick travels to Rome and does battle against some of the world’s most dangerous killers.", | ||
poster_path: "/hXWBc0ioZP3cN4zCu6SN3YHXZVO.jpg", | ||
release_date: "2017-02-08", | ||
title: "John Wick: Chapter 2", | ||
video: false, | ||
vote_average: 7.65, | ||
vote_average: 7.3, | ||
vote_count: 9853, | ||
}, | ||
], | ||
name: "Matt Damon", | ||
popularity: 16.612174, | ||
known_for_department: "Acting", | ||
name: "Keanu Reeves", | ||
popularity: 71.185, | ||
profile_path: "/rRdru6REr9i3WIHv2mntpcgxnoY.jpg", | ||
}, | ||
{ | ||
profile_path: "/wjeugSO0XY6zak76s9V7hhLOPNS.jpg", | ||
adult: false, | ||
id: 3293, | ||
gender: 1, | ||
id: 17832, | ||
known_for: [ | ||
{ | ||
poster_path: "/7qzLIcYR7ev7iXngY8NKHBZHwwT.jpg", | ||
adult: false, | ||
overview: | ||
"Oscar Diggs, a small-time circus illusionist and con-artist, is whisked from Kansas to the Land of Oz where the inhabitants assume he's the great wizard of prophecy, there to save Oz from the clutches of evil.", | ||
release_date: "2013-03-07", | ||
original_title: "Oz: The Great and Powerful", | ||
genre_ids: [14, 12, 10751], | ||
id: 68728, | ||
backdrop_path: "/mX3WOJPBzzl4kj4xU5lL7qfD6C3.jpg", | ||
genre_ids: [28, 12, 14], | ||
id: 209112, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "Oz: The Great and Powerful", | ||
backdrop_path: "/4jv4TsBccZt60ltlPYmL8vaG8cu.jpg", | ||
popularity: 3.438461, | ||
vote_count: 2744, | ||
original_title: "Batman v Superman: Dawn of Justice", | ||
overview: | ||
"Fearing the actions of a god-like Super Hero left unchecked, Gotham City’s own formidable, forceful vigilante takes on Metropolis’s most revered, modern-day savior, while the world wrestles with what sort of hero it really needs. And with Batman and Superman at war with one another, a new threat quickly arises, putting mankind in greater danger than it’s ever known before.", | ||
poster_path: "/5UsK3grJvtQrtzEgqNlDljJW96w.jpg", | ||
release_date: "2016-03-23", | ||
title: "Batman v Superman: Dawn of Justice", | ||
video: false, | ||
vote_average: 5.62, | ||
vote_average: 5.9, | ||
vote_count: 15458, | ||
}, | ||
{ | ||
poster_path: "/AnKnLsybNhnibvA3mba1ct9Nnb6.jpg", | ||
adult: false, | ||
overview: | ||
"The fourth installment of the highly successful Bourne series sidelines main character Jason Bourne in order to focus on a fellow estranged assassin Aaron Cross. The story centers on new CIA operative, Aaron Cross as he experiences life-or-death stakes that have been triggered by the previous actions of Jason Bourne.", | ||
release_date: "2012-08-08", | ||
original_title: "The Bourne Legacy", | ||
genre_ids: [28, 53], | ||
id: 49040, | ||
backdrop_path: "/69EFgWWPFWbRNHmQgYdSnyJ94Ge.jpg", | ||
genre_ids: [28, 12, 14, 878], | ||
id: 49521, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Bourne Legacy", | ||
backdrop_path: "/8kdXppXTbg50prSXsnLJikithmT.jpg", | ||
popularity: 4.976063, | ||
vote_count: 1972, | ||
original_title: "Man of Steel", | ||
overview: | ||
"A young boy learns that he has extraordinary powers and is not of this earth. As a young man, he journeys to discover where he came from and what he was sent here to do. But the hero in him must emerge if he is to save the world from annihilation and become the symbol of hope for all mankind.", | ||
poster_path: "/8GFtkImmK0K1VaUChR0n9O61CFU.jpg", | ||
release_date: "2013-06-12", | ||
title: "Man of Steel", | ||
video: false, | ||
vote_average: 5.88, | ||
vote_average: 6.6, | ||
vote_count: 12792, | ||
}, | ||
{ | ||
poster_path: "/cftmDzVCWKynKMfY9oyFj7igFqJ.jpg", | ||
adult: false, | ||
overview: | ||
"Dashing legionnaire Rick O'Connell and Beni, his weasel of a companion, stumble upon the hidden ruins of Hamunaptra while in the midst of a battle in 1923, 3,000 years after Imhotep has suffered a fate worse than death; his body will remain undead for all eternity as a punishment for a forbidden love.", | ||
release_date: "1999-05-06", | ||
original_title: "The Mummy", | ||
genre_ids: [12, 14, 27, 28, 53], | ||
id: 564, | ||
backdrop_path: "/rwcPe582tfTSVLwQzbO25InW3Hi.jpg", | ||
genre_ids: [28, 12, 35, 10751, 14], | ||
id: 1593, | ||
media_type: "movie", | ||
original_language: "en", | ||
title: "The Mummy", | ||
backdrop_path: "/3qthpSSyBY6Efeu1sqkO8L1Eyyb.jpg", | ||
popularity: 3.271678, | ||
vote_count: 1400, | ||
original_title: "Night at the Museum", | ||
overview: | ||
"Chaos reigns at the natural history museum when night watchman Larry Daley accidentally stirs up an ancient curse, awakening Attila the Hun, an army of gladiators, a Tyrannosaurus rex and other exhibits.", | ||
poster_path: "/uY9k8t2FQkMj60obnAnsPKLxHCE.jpg", | ||
release_date: "2006-10-20", | ||
title: "Night at the Museum", | ||
video: false, | ||
vote_average: 6.21, | ||
vote_average: 6.6, | ||
vote_count: 8396, | ||
}, | ||
], | ||
name: "Rachel Weisz", | ||
popularity: 16.458675, | ||
known_for_department: "Acting", | ||
name: "Carla Gugino", | ||
popularity: 69.11, | ||
profile_path: "/7lSH5LOexOHwvt9lOTsLTbXdU1G.jpg", | ||
}, | ||
], | ||
total_results: 19671, | ||
total_pages: 984, | ||
total_pages: 500, | ||
total_results: 10000, | ||
} |
@@ -1,2 +0,2 @@ | ||
import { Region } from "~/tmdb/region" | ||
import { Country } from "~/configuration/countries" | ||
@@ -11,3 +11,3 @@ export interface WatchProvider { | ||
export type WatchProviderResults = { | ||
[key in Region]?: { | ||
[key in Country]?: { | ||
link: string | ||
@@ -14,0 +14,0 @@ flatrate: WatchProvider[] |
@@ -9,2 +9,4 @@ { | ||
"skipLibCheck": true, | ||
"outDir": "./lib", | ||
"declaration": true, | ||
"baseUrl": ".", | ||
@@ -14,3 +16,5 @@ "paths": { | ||
} | ||
} | ||
}, | ||
"include": ["src"], | ||
"exclude": ["node_modules", "coverage", "src/__snapshots__"] | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
720746
81
20649