Popular
curl --request GET \
--url 'https://api.themoviedb.org/3/person/popular?%7B%7Bkey%7D%7D='import requests
url = "https://api.themoviedb.org/3/person/popular?%7B%7Bkey%7D%7D="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/person/popular?%7B%7Bkey%7D%7D=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.themoviedb.org/3/person/popular?%7B%7Bkey%7D%7D=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.themoviedb.org/3/person/popular?%7B%7Bkey%7D%7D="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.themoviedb.org/3/person/popular?%7B%7Bkey%7D%7D=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/person/popular?%7B%7Bkey%7D%7D=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"page": 1,
"results": [
{
"adult": false,
"gender": 0,
"id": 3724154,
"known_for": [
{
"adult": false,
"backdrop_path": "/3HaqAPZ0C8n6Hd5T86U53yJlBAN.jpg",
"genre_ids": [
18,
10751
],
"id": 1232449,
"media_type": "movie",
"original_language": "nl",
"original_title": "Young Hearts",
"overview": "Fourteen-year-old Elias increasingly feels like an outsider in his village. When he meets his new neighbour of the same age, Alexander, Elias is confronted with his burgeoning sexuality.",
"popularity": 168.625,
"poster_path": "/vJDvAdRfUL6NR9VG1YVamAS105a.jpg",
"release_date": "2024-10-26",
"title": "Young Hearts",
"video": false,
"vote_average": 8,
"vote_count": 11
},
{
"adult": false,
"backdrop_path": "/xbb0AzHP1B7vJ2LiN7ARLNe3RwZ.jpg",
"first_air_date": "2023-08-18",
"genre_ids": [
35
],
"id": 229685,
"media_type": "tv",
"name": "Boomer",
"origin_country": [
"BE"
],
"original_language": "nl",
"original_name": "Boomer",
"overview": "",
"popularity": 12.545,
"poster_path": "/bZAKLGZk3gqCbdBhcfrnBp0LuwS.jpg",
"vote_average": 10,
"vote_count": 1
},
{
"adult": false,
"backdrop_path": "/xANGcChEgQJLHMdiLwOLxWebvbs.jpg",
"genre_ids": [
18
],
"id": 1030955,
"media_type": "movie",
"original_language": "nl",
"original_title": "Alleen Ik",
"overview": "Longing for acceptance, a neurodivergent boy taunts the boundaries of his best friend: his brother.",
"popularity": 16.236,
"poster_path": "/qUzwUif6WybmpH6t4MA26hkdUI5.jpg",
"release_date": "2022-11-05",
"title": "Alleen Ik (Only me, me alone)",
"video": false,
"vote_average": 0,
"vote_count": 0
}
],
"known_for_department": "Acting",
"name": "Lou Goossens",
"original_name": "Lou Goossens",
"popularity": 301.655,
"profile_path": "/kY8eifhCPvjTE6JJclrrWO7Zr9L.jpg"
},
{
"adult": false,
"gender": 1,
"id": 64439,
"known_for": [
{
"adult": false,
"backdrop_path": "/8Z0cv337TY8fA5LnKRQmlwDvTlE.jpg",
"genre_ids": [
28,
12,
878
],
"id": 127585,
"media_type": "movie",
"original_language": "en",
"original_title": "X-Men: Days of Future Past",
"overview": "The ultimate X-Men ensemble fights a war for the survival of the species across two time periods as they join forces with their younger selves in an epic battle that must change the past – to save our future.",
"popularity": 60.054,
"poster_path": "/tYfijzolzgoMOtegh1Y7j2Enorg.jpg",
"release_date": "2014-05-15",
"title": "X-Men: Days of Future Past",
"video": false,
"vote_average": 7.531,
"vote_count": 15274
},
{
"adult": false,
"backdrop_path": "/tAl5nVeZe7Glx0LN93SxQDphl7Z.jpg",
"genre_ids": [
28,
35,
53,
9648
],
"id": 270774,
"media_type": "movie",
"original_language": "en",
"original_title": "Skiptrace",
"overview": "A detective from Hong Kong teams up with an American gambler to battle against a notorious Chinese criminal.",
"popularity": 22.239,
"poster_path": "/yepKO0bbXL2FSUoq93c7lkp0op1.jpg",
"release_date": "2016-07-21",
"title": "Skiptrace",
"video": false,
"vote_average": 5.697,
"vote_count": 690
},
{
"adult": false,
"backdrop_path": "/dEE5tjmrxf4xrKrTnyghLsPSt6f.jpg",
"genre_ids": [
28,
12,
53
],
"id": 522016,
"media_type": "movie",
"original_language": "en",
"original_title": "The 355",
"overview": "A group of top female agents from American, British, Chinese, Colombian, and German government agencies are drawn together to try and stop an organization from acquiring a deadly weapon to send the world into chaos.",
"popularity": 40.071,
"poster_path": "/zxizwEPE8jhpbMgrFbwCztgvh2m.jpg",
"release_date": "2022-01-05",
"title": "The 355",
"video": false,
"vote_average": 6.059,
"vote_count": 1002
}
],
"known_for_department": "Acting",
"name": "Fan Bingbing",
"original_name": "范冰冰",
"popularity": 271.174,
"profile_path": "/pV2wYJiiPd6cgHK580PKD0GM4Dc.jpg"
},
{
"adult": false,
"gender": 1,
"id": 1815065,
"known_for": [
{
"adult": false,
"backdrop_path": "/qVu5MC7DiDOrlcKNZsb9rEJJ1UI.jpg",
"first_air_date": "2016-04-01",
"genre_ids": [
10759,
10765,
37
],
"id": 65988,
"media_type": "tv",
"name": "Wynonna Earp",
"origin_country": [
"CA",
"US"
],
"original_language": "en",
"original_name": "Wynonna Earp",
"overview": "Wyatt Earp's great granddaughter Wynonna battles demons and other creatures with her unique abilities and a posse of dysfunctional allies - the only thing that can bring the paranormal to justice.",
"popularity": 64.007,
"poster_path": "/qnIaDelA81dmFaXrhpz6M6dpGSD.jpg",
"vote_average": 7.879,
"vote_count": 759
},
{
"adult": false,
"backdrop_path": "/9voL03zuWH6kUYmcLWAebVYQk27.jpg",
"genre_ids": [
10770,
35,
10749
],
"id": 1038773,
"media_type": "movie",
"original_language": "en",
"original_title": "Dream Wedding",
"overview": "Sisters Kate and Megan attend their local wedding fair they jokingly enter a dream wedding package even though they are not getting married. Surprise the sisters win and now must put on a show or be mortified by their champagne decisions.",
"popularity": 4.888,
"poster_path": "/w5z2t02FKJtHfpbtZPpVleltiB0.jpg",
"release_date": "2023-04-01",
"title": "Dream Wedding",
"video": false,
"vote_average": 6.8,
"vote_count": 6
},
{
"adult": false,
"backdrop_path": "/vKjcGYGONld7jXAWACgYDMYzygi.jpg",
"genre_ids": [
10749,
35,
10770
],
"id": 1150521,
"media_type": "movie",
"original_language": "en",
"original_title": "Christmas on Windmill Way",
"overview": "Mia Meijer gets ready for the Christmas Market Dutch Bake-Off and suspects that her grandmother, Ann, will walk away with the cherished Golden Rolling Pin thanks to her Kerststol, a traditional Dutch fruited Christmas bread. But Mia's world is rocked when she learns that Ann was having financial troubles and had to sell the land deed to the Windmill Way property in her family for generations. Making matters worse, the buyer is Mia's former boyfriend, property developer Brady Schaltz, who must let Mia and Ann know the Meijer family-owned heritage Dutch sawmill, renowned for the past 90 years for its fine millwork and beautiful wooden furniture, will be torn down to put up a luxurious resort.",
"popularity": 89.611,
"poster_path": "/bRDWHhiVLllPWBU2ADV61acyqT7.jpg",
"release_date": "2023-12-02",
"title": "Christmas on Windmill Way",
"video": false,
"vote_average": 6.1,
"vote_count": 26
}
],
"known_for_department": "Acting",
"name": "Christa Taylor Brown",
"original_name": "Christa Taylor Brown",
"popularity": 234.091,
"profile_path": "/uUgiI5y8aHA6bxYxzqzFQmgs6H6.jpg"
},
{
"adult": false,
"gender": 1,
"id": 2475737,
"known_for": [
{
"adult": false,
"backdrop_path": "/h9DIlghaiTxbQbt1FIwKNbQvEL.jpg",
"genre_ids": [
28,
12,
53
],
"id": 581387,
"media_type": "movie",
"original_language": "ko",
"original_title": "백두산",
"overview": "A group of unlikely heroes from across the Korean peninsula try to save the day after a volcano erupts on the mythical and majestic Baekdu Mountain.",
"popularity": 24.589,
"poster_path": "/gCZ0RHifBxZGedde7WPWSgjpyZt.jpg",
"release_date": "2019-12-19",
"title": "Ashfall",
"video": false,
"vote_average": 6.807,
"vote_count": 570
},
{
"adult": false,
"backdrop_path": "/6EO11KoiMMG29ISaQrm2G5DCe1X.jpg",
"genre_ids": [
9648,
27,
53
],
"id": 838209,
"media_type": "movie",
"original_language": "ko",
"original_title": "파묘",
"overview": "After tracing the origin of a disturbing supernatural affliction to a wealthy family's ancestral gravesite, a team of paranormal experts relocates the remains—and soon discovers what happens to those who dare to mess with the wrong grave.",
"popularity": 66.313,
"poster_path": "/m4xzX3yuroKerFOltY1yY05nqcQ.jpg",
"release_date": "2024-02-22",
"title": "Exhuma",
"video": false,
"vote_average": 7.6,
"vote_count": 390
},
{
"adult": false,
"backdrop_path": "/f5xCw22fOR6DgDRCpDFGkPbKbmY.jpg",
"genre_ids": [
14,
35,
28
],
"id": 560527,
"media_type": "movie",
"original_language": "ko",
"original_title": "내안의 그놈",
"overview": "Dong-hyun is a high school student. One day, he falls from the rooftop and bumps into Pan-soo who is a passerby. Pan-soo is a member of a criminal organization. When the two men wake up in the hospital, they discover that they have switched bodies.",
"popularity": 21.078,
"poster_path": "/3H97tUK5UmgOpjCh6Q7XZ4HW1cG.jpg",
"release_date": "2019-01-09",
"title": "The Dude in Me",
"video": false,
"vote_average": 7.8,
"vote_count": 134
}
],
"known_for_department": "Acting",
"name": "Jung Yun-ha",
"original_name": "정윤하",
"popularity": 130.702,
"profile_path": "/j9JxgFjiDhuO98eWjYULoZMLt94.jpg"
},
{
"adult": false,
"gender": 1,
"id": 129700,
"known_for": [
{
"adult": false,
"backdrop_path": "/8byxFCldQ2PEXKP9eF41X2Lgcjb.jpg",
"genre_ids": [
18,
10749
],
"id": 43635,
"media_type": "movie",
"original_language": "ja",
"original_title": "天使の恋",
"overview": "Because of her past, 17-year-old Rio lives her days filling the emptiness in her heart with money--until one day, she meets a university professor named Kouki and falls in love.",
"popularity": 11.319,
"poster_path": "/z6ZIjEs81jJp2CleidgPsfLq1eA.jpg",
"release_date": "2009-11-07",
"title": "My Rainy Days",
"video": false,
"vote_average": 7.5,
"vote_count": 130
},
{
"adult": false,
"backdrop_path": "/8v7CBqnCIyaQejMV8rh87NjX5sE.jpg",
"genre_ids": [
27
],
"id": 259233,
"media_type": "movie",
"original_language": "ja",
"original_title": "呪怨-終わりの始まり-",
"overview": "A school teacher visits the home of a boy who's been absent from school for a long period of time, unaware of the horrific tragedy which occurred in the boy's household many years ago.",
"popularity": 7.084,
"poster_path": "/oiKAkQNE61HBirBxpVVET1jBAUD.jpg",
"release_date": "2014-06-28",
"title": "Ju-on: The Beginning of the End",
"video": false,
"vote_average": 6,
"vote_count": 68
},
{
"adult": false,
"backdrop_path": "/s0z0PZjDvYchE1cGn9iHjzeoYdz.jpg",
"first_air_date": "2010-07-09",
"genre_ids": [
16,
18,
10765,
9648
],
"id": 36581,
"media_type": "tv",
"name": "Shiki",
"origin_country": [
"JP"
],
"original_language": "ja",
"original_name": "屍鬼",
"overview": "Sotobamura is a small village with around 1300 residents; so small the village isn't even connected to a single highway. An isolated village in which old customs, such as the burial of the dead, are still practiced. One day, the bodies of three people are found dead. Although Ozaki Toshio, the village's lone doctor, feels uncertain, he treats the deaths as a normal occurrence. However, in the days following, the villagers start to die one after the other.",
"popularity": 30.738,
"poster_path": "/8goy2DZJ1bZdLJ64pFBsKmAlOF1.jpg",
"vote_average": 8.041,
"vote_count": 194
}
],
"known_for_department": "Acting",
"name": "Nozomi Sasaki",
"original_name": "佐々木希",
"popularity": 180.823,
"profile_path": "/k5WCvK8Zrakp6uPizXYxPoPrxIq.jpg"
},
{
"adult": false,
"gender": 1,
"id": 141801,
"known_for": [
{
"adult": false,
"backdrop_path": "/bfrYtYXaMlaxfpbBsmKcp6xCKR4.jpg",
"genre_ids": [
14,
18,
35,
10751
],
"id": 11395,
"media_type": "movie",
"original_language": "en",
"original_title": "The Santa Clause",
"overview": "On Christmas Eve, divorced dad Scott Calvin and his son discover Santa Claus has fallen off their roof. When Scott takes the reins of the magical sleigh, he finds he is now the new Santa, and must convince a world of disbelievers, including himself.",
"popularity": 59.546,
"poster_path": "/2yqaR8HJUQowx8agxEjWVmyBIqo.jpg",
"release_date": "1994-11-11",
"title": "The Santa Clause",
"video": false,
"vote_average": 6.493,
"vote_count": 2046
},
{
"adult": false,
"backdrop_path": "/uyB27Tx3KtczuSo4tDfmiXhfuCp.jpg",
"first_air_date": "1990-09-10",
"genre_ids": [
35,
10751
],
"id": 1892,
"media_type": "tv",
"name": "The Fresh Prince of Bel-Air",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "The Fresh Prince of Bel-Air",
"overview": "Will, a street-smart teenager, moves from the tough streets of West Philly to posh Bel-Air to live with his Uncle Philip, Aunt Vivian, his cousins — spoiled Hilary, preppy Carlton and young Ashley — and their sophisticated British butler, Geoffrey. Though Will’s antics and upbringing contrast greatly with the upper-class lifestyle of his extended relatives, he soon finds himself right at home as a loved part of the family.",
"popularity": 68.101,
"poster_path": "/yAyfo1FvWdXK6NzlKobeTIVGmNK.jpg",
"vote_average": 7.942,
"vote_count": 2247
},
{
"adult": false,
"backdrop_path": "/bG9GfEN24IMSieaiNNcxIUyTHRh.jpg",
"genre_ids": [
27
],
"id": 58093,
"media_type": "movie",
"original_language": "en",
"original_title": "Milo",
"overview": "Four young grade-school girls witness the murder of one of their classmates during what they thought was just an innocent game. The killer is a strange young boy named Milo Jeeder. Sixteen years later, the four survivors of the event re-unite under happier circumstances in the same town where it happened. They believe that Milo drowned in a river shortly after the murder, but soon learn that the demonic killer Milo has also returned, still a young boy, unchanged even after almost two decades.",
"popularity": 3.423,
"poster_path": "/lNKffmpdUqz7IDV0ly1t7vx0kYI.jpg",
"release_date": "1998-10-06",
"title": "Milo",
"video": false,
"vote_average": 4.3,
"vote_count": 22
}
],
"known_for_department": "Acting",
"name": "Paige Tamada",
"original_name": "Paige Tamada",
"popularity": 187.709,
"profile_path": "/pORrZ9gppePMsZBHhwRHvNogFU7.jpg"
},
{
"adult": false,
"gender": 2,
"id": 64,
"known_for": [
{
"adult": false,
"backdrop_path": "/y2DB71C4nyIdMrANijz8mzvQtk6.jpg",
"genre_ids": [
28,
80,
18,
53
],
"id": 49026,
"media_type": "movie",
"original_language": "en",
"original_title": "The Dark Knight Rises",
"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.",
"popularity": 88.934,
"poster_path": "/hr0L2aueqlP2BYUblTTjmtn0hw4.jpg",
"release_date": "2012-07-17",
"title": "The Dark Knight Rises",
"video": false,
"vote_average": 7.781,
"vote_count": 22729
},
{
"adult": false,
"backdrop_path": "/oOv2oUXcAaNXakRqUPxYq5lJURz.jpg",
"genre_ids": [
18,
28,
80,
53
],
"id": 155,
"media_type": "movie",
"original_language": "en",
"original_title": "The Dark Knight",
"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.",
"popularity": 139.009,
"poster_path": "/qJ2tW6WMUDux911r6m7haRef0WH.jpg",
"release_date": "2008-07-16",
"title": "The Dark Knight",
"video": false,
"vote_average": 8.517,
"vote_count": 32982
},
{
"adult": false,
"backdrop_path": "/tyBkBHKDrJyVUeCs550kMr61jnq.jpg",
"genre_ids": [
10749,
27
],
"id": 6114,
"media_type": "movie",
"original_language": "en",
"original_title": "Bram Stoker's Dracula",
"overview": "In 19th century England, Count Dracula travels to London and meets Mina Harker, a young woman who appears as the reincarnation of his lost love.",
"popularity": 37.916,
"poster_path": "/scFDS0U5uYAjcVTyjNc7GmcZw1q.jpg",
"release_date": "1992-11-13",
"title": "Bram Stoker's Dracula",
"video": false,
"vote_average": 7.45,
"vote_count": 5109
}
],
"known_for_department": "Acting",
"name": "Gary Oldman",
"original_name": "Gary Oldman",
"popularity": 225.51,
"profile_path": "/2v9FVVBUrrkW2m3QOcYkuhq9A6o.jpg"
},
{
"adult": false,
"gender": 0,
"id": 4504024,
"known_for": [
{
"adult": false,
"backdrop_path": "/3HaqAPZ0C8n6Hd5T86U53yJlBAN.jpg",
"genre_ids": [
18,
10751
],
"id": 1232449,
"media_type": "movie",
"original_language": "nl",
"original_title": "Young Hearts",
"overview": "Fourteen-year-old Elias increasingly feels like an outsider in his village. When he meets his new neighbour of the same age, Alexander, Elias is confronted with his burgeoning sexuality.",
"popularity": 168.625,
"poster_path": "/vJDvAdRfUL6NR9VG1YVamAS105a.jpg",
"release_date": "2024-10-26",
"title": "Young Hearts",
"video": false,
"vote_average": 8,
"vote_count": 11
}
],
"known_for_department": "Acting",
"name": "Marius De Saeger",
"original_name": "Marius De Saeger",
"popularity": 159.003,
"profile_path": "/7fQpRl1MWprGgQ0RKStmmGs386s.jpg"
},
{
"adult": false,
"gender": 1,
"id": 115440,
"known_for": [
{
"adult": false,
"backdrop_path": "/9KnIzPCv9XpWA0MqmwiKBZvV1Sj.jpg",
"first_air_date": "2019-06-16",
"genre_ids": [
18
],
"id": 85552,
"media_type": "tv",
"name": "Euphoria",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Euphoria",
"overview": "A group of high school students navigate love and friendships in a world of drugs, sex, trauma, and social media.",
"popularity": 256.817,
"poster_path": "/3Q0hd3heuWwDWpwcDkhQOA6TYWI.jpg",
"vote_average": 8.3,
"vote_count": 9790
},
{
"adult": false,
"backdrop_path": "/j9eOeLlTGoHoM8BNUJVNyWmIvCi.jpg",
"genre_ids": [
10749,
35
],
"id": 1072790,
"media_type": "movie",
"original_language": "en",
"original_title": "Anyone But You",
"overview": "After an amazing first date, Bea and Ben’s fiery attraction turns ice cold — until they find themselves unexpectedly reunited at a destination wedding in Australia. So they do what any two mature adults would do: pretend to be a couple.",
"popularity": 85.988,
"poster_path": "/5qHoazZiaLe7oFBok7XlUhg96f2.jpg",
"release_date": "2023-12-21",
"title": "Anyone But You",
"video": false,
"vote_average": 6.944,
"vote_count": 2236
},
{
"adult": false,
"backdrop_path": "/6bGmHzPEq2n6g17moqWwDpJBEom.jpg",
"genre_ids": [
27,
9648,
53
],
"id": 1041613,
"media_type": "movie",
"original_language": "en",
"original_title": "Immaculate",
"overview": "An American nun embarks on a new journey when she joins a remote convent in the Italian countryside. However, her warm welcome quickly turns into a living nightmare when she discovers her new home harbours a sinister secret and unspeakable horrors.",
"popularity": 63.746,
"poster_path": "/fdZpvODTX5wwkD0ikZNaClE4AoW.jpg",
"release_date": "2024-03-20",
"title": "Immaculate",
"video": false,
"vote_average": 6.258,
"vote_count": 1245
}
],
"known_for_department": "Acting",
"name": "Sydney Sweeney",
"original_name": "Sydney Sweeney",
"popularity": 134.878,
"profile_path": "/qYiaSl0Eb7G3VaxOg8PxExCFwon.jpg"
},
{
"adult": false,
"gender": 1,
"id": 92614,
"known_for": [
{
"adult": false,
"backdrop_path": "/s3FDBLH4qc1IcjexB05Qvbn3wxO.jpg",
"genre_ids": [
28,
80,
53
],
"id": 449443,
"media_type": "movie",
"original_language": "en",
"original_title": "Den of Thieves",
"overview": "A gritty crime saga which follows the lives of an elite unit of the LA County Sheriff's Dept. and the state's most successful bank robbery crew as the outlaws plan a seemingly impossible heist on the Federal Reserve Bank.",
"popularity": 47.529,
"poster_path": "/dAP5NpkrMMczir5dUPjRR6ywqgz.jpg",
"release_date": "2018-01-18",
"title": "Den of Thieves",
"video": false,
"vote_average": 6.814,
"vote_count": 2845
},
{
"adult": false,
"backdrop_path": "/hu4psJoKxDYezvvS4GlLF531fom.jpg",
"genre_ids": [
14,
28,
53
],
"id": 400106,
"media_type": "movie",
"original_language": "en",
"original_title": "Bright",
"overview": "In an alternate present-day where magical creatures live among us, two L.A. cops become embroiled in a prophesied turf battle.",
"popularity": 19.54,
"poster_path": "/whkT53Sv2vKAUiknQ13pqcWaPXB.jpg",
"release_date": "2017-12-22",
"title": "Bright",
"video": false,
"vote_average": 6.152,
"vote_count": 5621
},
{
"adult": false,
"backdrop_path": "/mXmvN6drkdU1PWFF92AGklEVIa3.jpg",
"genre_ids": [
14,
28,
12,
27
],
"id": 274854,
"media_type": "movie",
"original_language": "en",
"original_title": "The Last Witch Hunter",
"overview": "The modern world holds many secrets, but by far the most astounding is that witches still live among us; vicious supernatural creatures intent on unleashing the Black Death upon the world and putting an end to the human race once and for all. Armies of witch hunters have battled this unnatural enemy for centuries, including Kaulder, a valiant warrior who many years ago slayed the all-powerful Witch Queen, decimating her followers in the process. In the moments right before her death, the Queen cursed Kaulder with immortality, forever separating him from his beloved wife and daughter. Today, Kaulder is the last living hunter who has spent his immortal life tracking down rogue witches, all the while yearning for his long-lost family.",
"popularity": 29.91,
"poster_path": "/qXvOpA2nhK5HQ6I95sN3nnMtfjH.jpg",
"release_date": "2015-10-21",
"title": "The Last Witch Hunter",
"video": false,
"vote_average": 5.974,
"vote_count": 3581
}
],
"known_for_department": "Acting",
"name": "Dawn Olivieri",
"original_name": "Dawn Olivieri",
"popularity": 119.072,
"profile_path": "/tet7ZVbzhLWwT44m9j94folyl5N.jpg"
},
{
"adult": false,
"gender": 1,
"id": 4103293,
"known_for": [
{
"adult": false,
"backdrop_path": "/mBc6RB7VajfykLqGx0ue7qatXky.jpg",
"genre_ids": [
18
],
"id": 1266990,
"media_type": "movie",
"original_language": "tl",
"original_title": "Kulong",
"overview": "Vivamax beauties Jenn Rosa, Caris Manzano and Aica Veloso come together as friends who lock themselves in at a resort to write a sexy screenplay for a contest. But how can they write a sexy screenplay when none of them has had any sex for quite some time?",
"popularity": 14.791,
"poster_path": "/AnzrE2WHg3DtZrtmB9AnEbAh17m.jpg",
"release_date": "2024-05-24",
"title": "Kulong",
"video": false,
"vote_average": 5.5,
"vote_count": 2
},
{
"adult": false,
"backdrop_path": "/qSVIlRv80dFtIcmb6CAT7WDtlHZ.jpg",
"genre_ids": [
18
],
"id": 1241755,
"media_type": "movie",
"original_language": "tl",
"original_title": "TL",
"overview": "Brenda, a top agent in a BPO company, is always overlooked for promotion. But not this time; as she gets more than intimate with her TL. Is her long awaited position within her reach? Or did she just put herself in a bad situation?",
"popularity": 14.124,
"poster_path": "/sze10NcTe4gAL7q7Fr8nORRh78Y.jpg",
"release_date": "2024-03-30",
"title": "TL",
"video": false,
"vote_average": 7,
"vote_count": 1
},
{
"adult": false,
"backdrop_path": "/qFRqnJ4oSnl2mqx6XyPClbwB2Tu.jpg",
"genre_ids": [
18
],
"id": 1137843,
"media_type": "movie",
"original_language": "tl",
"original_title": "Bisyo!",
"overview": "James wants his way out of a syndicate and dreams to start his own business. But his dreams turn to nightmare because getting out of the group will never be easy.",
"popularity": 1.102,
"poster_path": "/8H33dN7Xmd6OmkRwfsWHwRKIF53.jpg",
"release_date": "2023-07-21",
"title": "Bisyo!",
"video": false,
"vote_average": 2.7,
"vote_count": 3
}
],
"known_for_department": "Acting",
"name": "Jenn Rosa",
"original_name": "Jenn Rosa",
"popularity": 116.533,
"profile_path": "/f2EItX0kOXJjDzZFZSFmGOVS8HB.jpg"
},
{
"adult": false,
"gender": 1,
"id": 1831272,
"known_for": [
{
"adult": false,
"backdrop_path": "/Z1JeznJExodyj0iUbL1wgkts88.jpg",
"genre_ids": [
18,
80,
53
],
"id": 505192,
"media_type": "movie",
"original_language": "ja",
"original_title": "万引き家族",
"overview": "After one of their shoplifting sessions, Osamu and his son come across a little girl in the freezing cold. At first reluctant to shelter the girl, Osamu’s wife agrees to take care of her after learning of the hardships she faces. Although the family is poor, barely making enough money to survive through petty crime, they seem to live happily together until an unforeseen incident reveals hidden secrets, testing the bonds that unite them.",
"popularity": 22.358,
"poster_path": "/4nfRUOv3LX5zLn98WS1WqVBk9E9.jpg",
"release_date": "2018-06-02",
"title": "Shoplifters",
"video": false,
"vote_average": 7.852,
"vote_count": 2039
},
{
"adult": false,
"backdrop_path": "/vLGFd5s72tdmokwKRiKhwFHO9UC.jpg",
"genre_ids": [
27,
53
],
"id": 481899,
"media_type": "movie",
"original_language": "ja",
"original_title": "劇場版 屍囚獄 結ノ篇",
"overview": "They thought they were coming to study a mysterious town hidden in the mountains of Japan. Instead, they’ve discovered that their Professor brought them to Yasaka for a much darker purpose. Now Mikoto and the other girls are trapped in a monstrous nightmare. As the villagers become increasingly more insane, the college students find themselves at the center of arcane rituals focused on blood and rotting flesh. Their only chance is to escape, but their captors are far too numerous and know the lay of the local land far too well.",
"popularity": 8.934,
"poster_path": "/bAUjXSpnizDkSg4qa08PWuesrVV.jpg",
"release_date": "2017-06-10",
"title": "Corpse Prison: Part 2",
"video": false,
"vote_average": 6.4,
"vote_count": 25
},
{
"adult": false,
"backdrop_path": "/68afPR6EPV5wkE85whdO6al7FUx.jpg",
"genre_ids": [
28
],
"id": 1061990,
"media_type": "movie",
"original_language": "ja",
"original_title": "シティーハンター",
"overview": "An exceptional marksman and hopeless playboy, private eye Ryo Saeba reluctantly forms an alliance with his late partner's sister to investigate his death.",
"popularity": 34.494,
"poster_path": "/cjQzJ9xFdaN9KAwu7HUImIgbc2Y.jpg",
"release_date": "2024-04-24",
"title": "City Hunter",
"video": false,
"vote_average": 6.503,
"vote_count": 194
}
],
"known_for_department": "Acting",
"name": "Moemi Katayama",
"original_name": "片山萌美",
"popularity": 131.302,
"profile_path": "/nQQQhq9cjk6VgfoarD9AnUyRbK6.jpg"
},
{
"adult": false,
"gender": 2,
"id": 81866,
"known_for": [
{
"adult": false,
"backdrop_path": "/1RKrqGz2TwOEPNMpTMIMnG5kLJk.jpg",
"genre_ids": [
14,
16,
10751
],
"id": 8392,
"media_type": "movie",
"original_language": "ja",
"original_title": "となりのトトロ",
"overview": "Two sisters move to the country with their father in order to be closer to their hospitalized mother, and discover the surrounding trees are inhabited by Totoros, magical spirits of the forest. When the youngest runs away from home, the older sister seeks help from the spirits to find her.",
"popularity": 53.014,
"poster_path": "/rtGDOeG9LzoerkDGZF9dnVeLppL.jpg",
"release_date": "1988-04-16",
"title": "My Neighbor Totoro",
"video": false,
"vote_average": 8.069,
"vote_count": 7971
},
{
"adult": false,
"backdrop_path": "/z0YhJvomqedHF85bplUJEotkN5l.jpg",
"first_air_date": "2007-02-15",
"genre_ids": [
16,
10759,
10765
],
"id": 31910,
"media_type": "tv",
"name": "Naruto Shippūden",
"origin_country": [
"JP"
],
"original_language": "ja",
"original_name": "ナルト 疾風伝",
"overview": "After 2 and a half years Naruto finally returns to his village of Konoha, and sets about putting his ambitions to work. It will not be easy though as he has amassed a few more dangerous enemies, in the likes of the shinobi organization; Akatsuki.",
"popularity": 241.305,
"poster_path": "/kV27j3Nz4d5z8u6mN3EJw9RiLg2.jpg",
"vote_average": 8.5,
"vote_count": 8143
},
{
"adult": false,
"backdrop_path": "/sDSdbBG0W5dJ74V3zFI4v68umFn.jpg",
"first_air_date": "2007-04-01",
"genre_ids": [
16,
10759,
10765
],
"id": 21729,
"media_type": "tv",
"name": "Gurren Lagann",
"origin_country": [
"JP"
],
"original_language": "ja",
"original_name": "天元突破グレンラガン",
"overview": "In the distant future, mankind has lived quietly and restlessly underground for hundreds of years, subject to earthquakes and cave-ins. Living in one such village are 2 young men: one named Simon who is shy and naïve, and the other named Kamina who believes in the existence of a “surface” world above their heads.",
"popularity": 72.806,
"poster_path": "/jLSe0OgbpXsHl5gUMF2iU3H4Rrq.jpg",
"vote_average": 8.173,
"vote_count": 493
}
],
"known_for_department": "Acting",
"name": "Daiki Nakamura",
"original_name": "中村大樹",
"popularity": 142.111,
"profile_path": "/c4mmhN3Sq8YYFT2CuOpgBP0pCPb.jpg"
},
{
"adult": false,
"gender": 1,
"id": 572043,
"known_for": [
{
"adult": false,
"backdrop_path": "/tkuVd1LYyltRdiWO50kJ5lc4J9V.jpg",
"genre_ids": [
14,
28,
12,
18
],
"id": 611698,
"media_type": "movie",
"original_language": "zh",
"original_title": "刺杀小说家",
"overview": "Kongwen Lu is the author of a fantasy novel series following a heroic teenager, also named Kongwen, on a quest to end the tyrannical rule of Lord Redmane, under the guidance of a Black Armor. But through a strange twist of fate, the fantasy world of the novel begins to impact life in the real world, leading Guan Ning to accept a mission from Tu Ling to kill the author.",
"popularity": 20.841,
"poster_path": "/7hEhhmAF8Tr7g95fkbuxDpeR27b.jpg",
"release_date": "2021-02-12",
"title": "A Writer's Odyssey",
"video": false,
"vote_average": 7.115,
"vote_count": 299
},
{
"adult": false,
"backdrop_path": "/lKilKeX1rlIhRcY4xQPP4bmuct9.jpg",
"genre_ids": [
16,
14,
18,
878
],
"id": 369552,
"media_type": "movie",
"original_language": "zh",
"original_title": "爵迹",
"overview": "Based on the novel of the same name, the film depicts the endless battles of four kingdoms as they fight for power and domination of the one ultimate realm.Based on his 2 beloved fantasy novels with 6 million copies sold, L.O.R.D is acclaimed writer and director Guo Jingming’s follow up to his Tiny Times films. The action-adventure odyssey is set in a world of warring Sorcerers, Lords and Beasts. The first CGI Film to come from China",
"popularity": 10.194,
"poster_path": "/qIUDi1XDAREkarkwNzOOBgUzqyC.jpg",
"release_date": "2016-09-29",
"title": "L.O.R.D: Legend of Ravaging Dynasties",
"video": false,
"vote_average": 6.981,
"vote_count": 132
},
{
"adult": false,
"backdrop_path": "/f2fWG89GPSe31ymp6pqJANfjbit.jpg",
"genre_ids": [
28,
878
],
"id": 457832,
"media_type": "movie",
"original_language": "zh",
"original_title": "逆时营救",
"overview": "In 2025, a scientist on the verge of making a major discovery related to time travel is suddenly put in peril when a rival kidnaps her young son and demands a hefty ransom: her entire research.",
"popularity": 9.822,
"poster_path": "/zwTonDtQstoMQHYEBCz8x8RvBJJ.jpg",
"release_date": "2017-06-28",
"title": "Reset",
"video": false,
"vote_average": 7.01,
"vote_count": 102
}
],
"known_for_department": "Acting",
"name": "Yang Mi",
"original_name": "杨幂",
"popularity": 160.191,
"profile_path": "/6RezRxlQBsYmlotybR3q7riSrvV.jpg"
},
{
"adult": false,
"gender": 2,
"id": 3103725,
"known_for": [
{
"adult": false,
"backdrop_path": "/yYQDu8yX2zZaCa1hUWD24jq3JRu.jpg",
"genre_ids": [
35,
14
],
"id": 1097870,
"media_type": "movie",
"original_language": "en",
"original_title": "Dear Santa",
"overview": "Likeable 6th grader Liam writes to Santa asking him to prove that he's real. But Liam is dyslexic and accidentally sends his letter to Satan instead, who shows up at Liam's house, excited to have his first fanboy letter and wanting a little of Liam's soul.",
"popularity": 374.634,
"poster_path": "/fRbDHbGBXg6kwQYr3CRYeKPJW5q.jpg",
"release_date": "2024-11-24",
"title": "Dear Santa",
"video": false,
"vote_average": 6.616,
"vote_count": 125
},
{
"adult": false,
"backdrop_path": "/66kNCeI5ApO0XAuyDqmdPIyQHkY.jpg",
"genre_ids": [
35,
28,
80
],
"id": 877817,
"media_type": "movie",
"original_language": "en",
"original_title": "Wolfs",
"overview": "Hired to cover up a high-profile crime, a fixer soon finds his night spiralling out of control when he's forced to work with an unexpected counterpart.",
"popularity": 109.516,
"poster_path": "/vOX1Zng472PC2KnS0B9nRfM8aaZ.jpg",
"release_date": "2024-09-20",
"title": "Wolfs",
"video": false,
"vote_average": 6.6,
"vote_count": 785
},
{
"adult": false,
"backdrop_path": "/6E0hbesJfpekAqL2AeHYukkHcbD.jpg",
"first_air_date": "2024-12-02",
"genre_ids": [
10759,
10765
],
"id": 202879,
"media_type": "tv",
"name": "Star Wars: Skeleton Crew",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Star Wars: Skeleton Crew",
"overview": "Four ordinary kids search for their home planet after getting lost in the Star Wars galaxy.",
"popularity": 598.285,
"poster_path": "/srQbJhLRKoAwRrNN5ga7webPHbC.jpg",
"vote_average": 7.2,
"vote_count": 79
}
],
"known_for_department": "Acting",
"name": "Robert Timothy Smith",
"original_name": "Robert Timothy Smith",
"popularity": 106.298,
"profile_path": "/7Qq9fqLQGbMxYjw5tVGYEuYW7Ye.jpg"
},
{
"adult": false,
"gender": 1,
"id": 4095744,
"known_for": [
{
"adult": false,
"backdrop_path": "/7B72d6f09eIifSgkpCkzwkv8fle.jpg",
"genre_ids": [
18,
10749
],
"id": 1002398,
"media_type": "movie",
"original_language": "tl",
"original_title": "Donselya",
"overview": "Iris, an 18-year old virgin marries Joaquin, a rich widower, because of money. However, when he learns that Iris is not really a virgin, their honeymoon turns to a bloodbath.",
"popularity": 23.131,
"poster_path": "/iVS3ZiPsKy8Hhc5Dipqgrjmoj2b.jpg",
"release_date": "2024-10-29",
"title": "Donselya",
"video": false,
"vote_average": 6.2,
"vote_count": 10
},
{
"adult": false,
"backdrop_path": "/uUJuPiZh1QfIeTa1GeLWqnEkaP2.jpg",
"genre_ids": [
18
],
"id": 1302011,
"media_type": "movie",
"original_language": "tl",
"original_title": "Init",
"overview": "When a young barrio lass moves in to the city to study, she lives in a boarding house with other college students. Unknown to them, behind her shy and timid personality is a woman with insatiable hunger for sex.",
"popularity": 32.24,
"poster_path": "/fGY13rtdRzFqTkDMi5JayUWg6vL.jpg",
"release_date": "2024-07-30",
"title": "Init",
"video": false,
"vote_average": 5,
"vote_count": 4
},
{
"adult": false,
"backdrop_path": "/4GHPT4glMQHPCke2DNigRqZ6KqH.jpg",
"genre_ids": [
18
],
"id": 1226299,
"media_type": "movie",
"original_language": "tl",
"original_title": "Dilig",
"overview": "About to get married to an old, wealthy businessman, Resa enlists the help of gardener Otso to seduce her fiancé’s daughter, Katelyn, and record his sexploits with her in order to get her disowned.",
"popularity": 19.846,
"poster_path": "/lDn02aAZFUb7JpM7l7iuHdbWEHH.jpg",
"release_date": "2024-01-30",
"title": "Dilig",
"video": false,
"vote_average": 4.3,
"vote_count": 3
}
],
"known_for_department": "Acting",
"name": "Dyessa Garcia",
"original_name": "Dyessa Garcia",
"popularity": 89.074,
"profile_path": "/xak9L0fkIOkjSwJpz3SWLl94tVP.jpg"
},
{
"adult": false,
"gender": 1,
"id": 224513,
"known_for": [
{
"adult": false,
"backdrop_path": "/ilRyazdMJwN05exqhwK4tMKBYZs.jpg",
"genre_ids": [
878,
18
],
"id": 335984,
"media_type": "movie",
"original_language": "en",
"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.",
"popularity": 112.281,
"poster_path": "/gajva2L0rPYkEWjzgFlBXCAVBE5.jpg",
"release_date": "2017-10-04",
"title": "Blade Runner 2049",
"video": false,
"vote_average": 7.57,
"vote_count": 13654
},
{
"adult": false,
"backdrop_path": "/4HWAQu28e2yaWrtupFPGFkdNU7V.jpg",
"genre_ids": [
35,
80,
9648
],
"id": 546554,
"media_type": "movie",
"original_language": "en",
"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.",
"popularity": 52.928,
"poster_path": "/pThyQovXQrw2m0s9x82twj48Jq4.jpg",
"release_date": "2019-11-27",
"title": "Knives Out",
"video": false,
"vote_average": 7.846,
"vote_count": 12386
},
{
"adult": false,
"backdrop_path": "/oNoprEND25zXR6Fns8cIZUkuoMc.jpg",
"genre_ids": [
35,
80,
18
],
"id": 308266,
"media_type": "movie",
"original_language": "en",
"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.",
"popularity": 37.98,
"poster_path": "/mDcPRjZC1bb6LavFU3gwsWdVfCM.jpg",
"release_date": "2016-08-18",
"title": "War Dogs",
"video": false,
"vote_average": 6.922,
"vote_count": 4900
}
],
"known_for_department": "Acting",
"name": "Ana de Armas",
"original_name": "Ana de Armas",
"popularity": 122.272,
"profile_path": "/5Qne374OM0ewMM7uSN9eq9jNrWq.jpg"
},
{
"adult": false,
"gender": 2,
"id": 81350,
"known_for": [
{
"adult": false,
"backdrop_path": "/cDyYWcavuvNKtf7VpNR86nWh5XF.jpg",
"genre_ids": [
878,
12,
9648
],
"id": 36683,
"media_type": "movie",
"original_language": "ja",
"original_title": "20世紀少年 -第1章- 終わりの始まり",
"overview": "In 1969, Kenji, an elementary school kid and his friends built a secret base during their summer holidays. They fantasized that they had to fight villains who were out to conquer the world and wrote them in the Book of Prophecies. Years later in 1997, Kenji becomes a convenience store manager and leads a regular life after giving up his dreams to become a rock star. His boring life is suddenly turned upside down when his old classmate dies mysteriously and an entire family in the neighbourhood disappears. At the same time, a religious cult and its mysterious leader, Friend emerges and a strange chain of events duplicating exactly the events described in the Book of Prophecies follow. Is this the beginning of the end of the world? Who is Friend?",
"popularity": 10.678,
"poster_path": "/nb1fd4nZyBLUhkjnAQx5607aBMq.jpg",
"release_date": "2008-08-19",
"title": "20th Century Boys: Beginning of the End",
"video": false,
"vote_average": 6.7,
"vote_count": 96
},
{
"adult": false,
"backdrop_path": "/Ad1D9qkQqICgWrnTFEmciQAgOY6.jpg",
"genre_ids": [
878,
12,
9648
],
"id": 25114,
"media_type": "movie",
"original_language": "ja",
"original_title": "20世紀少年 第2章 最後の希望",
"overview": "Set 15 years after \"Twentieth Century Boys,\" Kanna (Airi Taira) reunites with several main characters from the first film in an attempt to stop Friend's increasing influence over the world and continued plans to eliminate humanity, as detailed in the New Book of Prophecy.",
"popularity": 6.817,
"poster_path": "/ej5rGwbyybno1pKDqqTLy7Gwc1T.jpg",
"release_date": "2009-01-30",
"title": "20th Century Boys 2: The Last Hope",
"video": false,
"vote_average": 6.6,
"vote_count": 66
},
{
"adult": false,
"backdrop_path": "/7QtKvkNypPoVSi1n4FNmxluOLB4.jpg",
"genre_ids": [
12,
9648,
878
],
"id": 39123,
"media_type": "movie",
"original_language": "ja",
"original_title": "20世紀少年 ぼくらの旗",
"overview": "The final showdown, and the final reveal. who is Friend? How can he be stopped?",
"popularity": 8.55,
"poster_path": "/zf5wTUqciMcSEUjPF5E9O8fBNo9.jpg",
"release_date": "2009-08-19",
"title": "20th Century Boys 3: Redemption",
"video": false,
"vote_average": 6.7,
"vote_count": 60
}
],
"known_for_department": "Acting",
"name": "Toshiaki Karasawa",
"original_name": "唐沢寿明",
"popularity": 118.235,
"profile_path": "/vB73o5XHjSHLpCwxRl83uFNAicP.jpg"
},
{
"adult": false,
"gender": 1,
"id": 2113005,
"known_for": [
{
"adult": false,
"backdrop_path": "/wIrqeoJHYtZmneqIufPtcOHMjOg.jpg",
"genre_ids": [
878,
28,
18
],
"id": 535167,
"media_type": "movie",
"original_language": "zh",
"original_title": "流浪地球",
"overview": "When the Sun begins to expand in such a way that it will inevitably engulf and destroy the Earth in a hundred years, united mankind finds a way to avoid extinction by propelling the planet out of the Solar System using gigantic engines, moving it to a new home located four light years away, an epic journey that will last thousands of years.",
"popularity": 20.842,
"poster_path": "/AtWfsYZGW69YcCYOaVZ0EKNN14v.jpg",
"release_date": "2019-02-05",
"title": "The Wandering Earth",
"video": false,
"vote_average": 6.61,
"vote_count": 957
},
{
"adult": false,
"backdrop_path": "/wNYUv8u5Z0AI4dkyxGyet7eLEWm.jpg",
"genre_ids": [
18
],
"id": 945675,
"media_type": "movie",
"original_language": "zh",
"original_title": "一周的朋友",
"overview": "A high school student suffers from a strange amnesia, causing her memories to only last a week. After she befriends a new student, his kindness and persistence make her gradually open up.",
"popularity": 49.029,
"poster_path": "/wjYcNLVwFpSAGAPKgo0NIwhfWJS.jpg",
"release_date": "2022-06-18",
"title": "One Week Friends",
"video": false,
"vote_average": 5.776,
"vote_count": 114
},
{
"adult": false,
"backdrop_path": "/diTz0umqocpeFa0g4Q4DiMw84DF.jpg",
"first_air_date": "2022-01-11",
"genre_ids": [
18,
9648
],
"id": 155441,
"media_type": "tv",
"name": "Reset",
"origin_country": [
"CN"
],
"original_language": "zh",
"original_name": "开端",
"overview": "The lives of a college student and a video game designer are kept being reset after an explosion on a bus. During each reset, they have to work together to find out what the reason for the explosion is. Will these two be able to save themselves and their fellow passengers? Will they be able to close the time-loop?",
"popularity": 19.29,
"poster_path": "/t95T31wxF0ElSwUE4U8AnOSAmF3.jpg",
"vote_average": 8.058,
"vote_count": 95
}
],
"known_for_department": "Acting",
"name": "Zhao Jinmai",
"original_name": "赵今麦",
"popularity": 144.176,
"profile_path": "/obAzDuyEUa5Yq4byYhRzziI7W5c.jpg"
},
{
"adult": false,
"gender": 2,
"id": 3032312,
"known_for": [
{
"adult": false,
"backdrop_path": "/gCp0teY59mPiWMIRrPkeyCZt6H3.jpg",
"first_air_date": "2022-01-07",
"genre_ids": [
10764
],
"id": 124031,
"media_type": "tv",
"name": "Hype House",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Hype House",
"overview": "From humble beginnings to overnight fame, these are the stories of the most popular personalities on social media as they come into their own, fall in love and tackle new chapters in their lives.",
"popularity": 4.393,
"poster_path": "/sIppViBWffdcN2m6ffOsl0NKhHw.jpg",
"vote_average": 4.8,
"vote_count": 11
},
{
"adult": false,
"backdrop_path": "/68xjylXPOclGga7SJ6vhEIHv0ZL.jpg",
"first_air_date": "2021-09-03",
"genre_ids": [
10764
],
"id": 130392,
"media_type": "tv",
"name": "The D'Amelio Show",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "The D'Amelio Show",
"overview": "From relative obscurity and a seemingly normal life, to overnight success and thrust into the Hollywood limelight overnight, the D’Amelios are faced with new challenges and opportunities they could not have imagined.",
"popularity": 12.911,
"poster_path": "/1TMOWefVY5854oxEI0I6yLLMwlR.jpg",
"vote_average": 5,
"vote_count": 681
},
{
"adult": false,
"backdrop_path": "/xjxKYSGycoUQWZ9OUr2Ou6kyIhy.jpg",
"first_air_date": "2021-09-08",
"genre_ids": [
18,
10751,
35
],
"id": 130372,
"media_type": "tv",
"name": "Doogie Kamealoha, M.D.",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Doogie Kamealoha, M.D.",
"overview": "Lahela 'Doogie' Kamealoha, a 16-year-old prodigy juggles a budding medical career and life as a teenager. With the support of her caring and comical 'ohana (family) and friends, Lahela is determined to make the most of her teenage years and forge her own path.",
"popularity": 28.007,
"poster_path": "/qS9NwCJDPnHWtJbgiFmpc8T90tP.jpg",
"vote_average": 7.7,
"vote_count": 189
}
],
"known_for_department": "Acting",
"name": "Noah Beck",
"original_name": "Noah Beck",
"popularity": 110.952,
"profile_path": "/67BJ1o03CpMbRj40jjiAG13TqPe.jpg"
}
],
"total_pages": 188202,
"total_results": 3764022
}People Lists
Popular
This endpoint is used to get a list of people ordered by popularity.
GET
/
3
/
person
/
popular
Popular
curl --request GET \
--url 'https://api.themoviedb.org/3/person/popular?%7B%7Bkey%7D%7D='import requests
url = "https://api.themoviedb.org/3/person/popular?%7B%7Bkey%7D%7D="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/person/popular?%7B%7Bkey%7D%7D=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.themoviedb.org/3/person/popular?%7B%7Bkey%7D%7D=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.themoviedb.org/3/person/popular?%7B%7Bkey%7D%7D="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.themoviedb.org/3/person/popular?%7B%7Bkey%7D%7D=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/person/popular?%7B%7Bkey%7D%7D=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"page": 1,
"results": [
{
"adult": false,
"gender": 0,
"id": 3724154,
"known_for": [
{
"adult": false,
"backdrop_path": "/3HaqAPZ0C8n6Hd5T86U53yJlBAN.jpg",
"genre_ids": [
18,
10751
],
"id": 1232449,
"media_type": "movie",
"original_language": "nl",
"original_title": "Young Hearts",
"overview": "Fourteen-year-old Elias increasingly feels like an outsider in his village. When he meets his new neighbour of the same age, Alexander, Elias is confronted with his burgeoning sexuality.",
"popularity": 168.625,
"poster_path": "/vJDvAdRfUL6NR9VG1YVamAS105a.jpg",
"release_date": "2024-10-26",
"title": "Young Hearts",
"video": false,
"vote_average": 8,
"vote_count": 11
},
{
"adult": false,
"backdrop_path": "/xbb0AzHP1B7vJ2LiN7ARLNe3RwZ.jpg",
"first_air_date": "2023-08-18",
"genre_ids": [
35
],
"id": 229685,
"media_type": "tv",
"name": "Boomer",
"origin_country": [
"BE"
],
"original_language": "nl",
"original_name": "Boomer",
"overview": "",
"popularity": 12.545,
"poster_path": "/bZAKLGZk3gqCbdBhcfrnBp0LuwS.jpg",
"vote_average": 10,
"vote_count": 1
},
{
"adult": false,
"backdrop_path": "/xANGcChEgQJLHMdiLwOLxWebvbs.jpg",
"genre_ids": [
18
],
"id": 1030955,
"media_type": "movie",
"original_language": "nl",
"original_title": "Alleen Ik",
"overview": "Longing for acceptance, a neurodivergent boy taunts the boundaries of his best friend: his brother.",
"popularity": 16.236,
"poster_path": "/qUzwUif6WybmpH6t4MA26hkdUI5.jpg",
"release_date": "2022-11-05",
"title": "Alleen Ik (Only me, me alone)",
"video": false,
"vote_average": 0,
"vote_count": 0
}
],
"known_for_department": "Acting",
"name": "Lou Goossens",
"original_name": "Lou Goossens",
"popularity": 301.655,
"profile_path": "/kY8eifhCPvjTE6JJclrrWO7Zr9L.jpg"
},
{
"adult": false,
"gender": 1,
"id": 64439,
"known_for": [
{
"adult": false,
"backdrop_path": "/8Z0cv337TY8fA5LnKRQmlwDvTlE.jpg",
"genre_ids": [
28,
12,
878
],
"id": 127585,
"media_type": "movie",
"original_language": "en",
"original_title": "X-Men: Days of Future Past",
"overview": "The ultimate X-Men ensemble fights a war for the survival of the species across two time periods as they join forces with their younger selves in an epic battle that must change the past – to save our future.",
"popularity": 60.054,
"poster_path": "/tYfijzolzgoMOtegh1Y7j2Enorg.jpg",
"release_date": "2014-05-15",
"title": "X-Men: Days of Future Past",
"video": false,
"vote_average": 7.531,
"vote_count": 15274
},
{
"adult": false,
"backdrop_path": "/tAl5nVeZe7Glx0LN93SxQDphl7Z.jpg",
"genre_ids": [
28,
35,
53,
9648
],
"id": 270774,
"media_type": "movie",
"original_language": "en",
"original_title": "Skiptrace",
"overview": "A detective from Hong Kong teams up with an American gambler to battle against a notorious Chinese criminal.",
"popularity": 22.239,
"poster_path": "/yepKO0bbXL2FSUoq93c7lkp0op1.jpg",
"release_date": "2016-07-21",
"title": "Skiptrace",
"video": false,
"vote_average": 5.697,
"vote_count": 690
},
{
"adult": false,
"backdrop_path": "/dEE5tjmrxf4xrKrTnyghLsPSt6f.jpg",
"genre_ids": [
28,
12,
53
],
"id": 522016,
"media_type": "movie",
"original_language": "en",
"original_title": "The 355",
"overview": "A group of top female agents from American, British, Chinese, Colombian, and German government agencies are drawn together to try and stop an organization from acquiring a deadly weapon to send the world into chaos.",
"popularity": 40.071,
"poster_path": "/zxizwEPE8jhpbMgrFbwCztgvh2m.jpg",
"release_date": "2022-01-05",
"title": "The 355",
"video": false,
"vote_average": 6.059,
"vote_count": 1002
}
],
"known_for_department": "Acting",
"name": "Fan Bingbing",
"original_name": "范冰冰",
"popularity": 271.174,
"profile_path": "/pV2wYJiiPd6cgHK580PKD0GM4Dc.jpg"
},
{
"adult": false,
"gender": 1,
"id": 1815065,
"known_for": [
{
"adult": false,
"backdrop_path": "/qVu5MC7DiDOrlcKNZsb9rEJJ1UI.jpg",
"first_air_date": "2016-04-01",
"genre_ids": [
10759,
10765,
37
],
"id": 65988,
"media_type": "tv",
"name": "Wynonna Earp",
"origin_country": [
"CA",
"US"
],
"original_language": "en",
"original_name": "Wynonna Earp",
"overview": "Wyatt Earp's great granddaughter Wynonna battles demons and other creatures with her unique abilities and a posse of dysfunctional allies - the only thing that can bring the paranormal to justice.",
"popularity": 64.007,
"poster_path": "/qnIaDelA81dmFaXrhpz6M6dpGSD.jpg",
"vote_average": 7.879,
"vote_count": 759
},
{
"adult": false,
"backdrop_path": "/9voL03zuWH6kUYmcLWAebVYQk27.jpg",
"genre_ids": [
10770,
35,
10749
],
"id": 1038773,
"media_type": "movie",
"original_language": "en",
"original_title": "Dream Wedding",
"overview": "Sisters Kate and Megan attend their local wedding fair they jokingly enter a dream wedding package even though they are not getting married. Surprise the sisters win and now must put on a show or be mortified by their champagne decisions.",
"popularity": 4.888,
"poster_path": "/w5z2t02FKJtHfpbtZPpVleltiB0.jpg",
"release_date": "2023-04-01",
"title": "Dream Wedding",
"video": false,
"vote_average": 6.8,
"vote_count": 6
},
{
"adult": false,
"backdrop_path": "/vKjcGYGONld7jXAWACgYDMYzygi.jpg",
"genre_ids": [
10749,
35,
10770
],
"id": 1150521,
"media_type": "movie",
"original_language": "en",
"original_title": "Christmas on Windmill Way",
"overview": "Mia Meijer gets ready for the Christmas Market Dutch Bake-Off and suspects that her grandmother, Ann, will walk away with the cherished Golden Rolling Pin thanks to her Kerststol, a traditional Dutch fruited Christmas bread. But Mia's world is rocked when she learns that Ann was having financial troubles and had to sell the land deed to the Windmill Way property in her family for generations. Making matters worse, the buyer is Mia's former boyfriend, property developer Brady Schaltz, who must let Mia and Ann know the Meijer family-owned heritage Dutch sawmill, renowned for the past 90 years for its fine millwork and beautiful wooden furniture, will be torn down to put up a luxurious resort.",
"popularity": 89.611,
"poster_path": "/bRDWHhiVLllPWBU2ADV61acyqT7.jpg",
"release_date": "2023-12-02",
"title": "Christmas on Windmill Way",
"video": false,
"vote_average": 6.1,
"vote_count": 26
}
],
"known_for_department": "Acting",
"name": "Christa Taylor Brown",
"original_name": "Christa Taylor Brown",
"popularity": 234.091,
"profile_path": "/uUgiI5y8aHA6bxYxzqzFQmgs6H6.jpg"
},
{
"adult": false,
"gender": 1,
"id": 2475737,
"known_for": [
{
"adult": false,
"backdrop_path": "/h9DIlghaiTxbQbt1FIwKNbQvEL.jpg",
"genre_ids": [
28,
12,
53
],
"id": 581387,
"media_type": "movie",
"original_language": "ko",
"original_title": "백두산",
"overview": "A group of unlikely heroes from across the Korean peninsula try to save the day after a volcano erupts on the mythical and majestic Baekdu Mountain.",
"popularity": 24.589,
"poster_path": "/gCZ0RHifBxZGedde7WPWSgjpyZt.jpg",
"release_date": "2019-12-19",
"title": "Ashfall",
"video": false,
"vote_average": 6.807,
"vote_count": 570
},
{
"adult": false,
"backdrop_path": "/6EO11KoiMMG29ISaQrm2G5DCe1X.jpg",
"genre_ids": [
9648,
27,
53
],
"id": 838209,
"media_type": "movie",
"original_language": "ko",
"original_title": "파묘",
"overview": "After tracing the origin of a disturbing supernatural affliction to a wealthy family's ancestral gravesite, a team of paranormal experts relocates the remains—and soon discovers what happens to those who dare to mess with the wrong grave.",
"popularity": 66.313,
"poster_path": "/m4xzX3yuroKerFOltY1yY05nqcQ.jpg",
"release_date": "2024-02-22",
"title": "Exhuma",
"video": false,
"vote_average": 7.6,
"vote_count": 390
},
{
"adult": false,
"backdrop_path": "/f5xCw22fOR6DgDRCpDFGkPbKbmY.jpg",
"genre_ids": [
14,
35,
28
],
"id": 560527,
"media_type": "movie",
"original_language": "ko",
"original_title": "내안의 그놈",
"overview": "Dong-hyun is a high school student. One day, he falls from the rooftop and bumps into Pan-soo who is a passerby. Pan-soo is a member of a criminal organization. When the two men wake up in the hospital, they discover that they have switched bodies.",
"popularity": 21.078,
"poster_path": "/3H97tUK5UmgOpjCh6Q7XZ4HW1cG.jpg",
"release_date": "2019-01-09",
"title": "The Dude in Me",
"video": false,
"vote_average": 7.8,
"vote_count": 134
}
],
"known_for_department": "Acting",
"name": "Jung Yun-ha",
"original_name": "정윤하",
"popularity": 130.702,
"profile_path": "/j9JxgFjiDhuO98eWjYULoZMLt94.jpg"
},
{
"adult": false,
"gender": 1,
"id": 129700,
"known_for": [
{
"adult": false,
"backdrop_path": "/8byxFCldQ2PEXKP9eF41X2Lgcjb.jpg",
"genre_ids": [
18,
10749
],
"id": 43635,
"media_type": "movie",
"original_language": "ja",
"original_title": "天使の恋",
"overview": "Because of her past, 17-year-old Rio lives her days filling the emptiness in her heart with money--until one day, she meets a university professor named Kouki and falls in love.",
"popularity": 11.319,
"poster_path": "/z6ZIjEs81jJp2CleidgPsfLq1eA.jpg",
"release_date": "2009-11-07",
"title": "My Rainy Days",
"video": false,
"vote_average": 7.5,
"vote_count": 130
},
{
"adult": false,
"backdrop_path": "/8v7CBqnCIyaQejMV8rh87NjX5sE.jpg",
"genre_ids": [
27
],
"id": 259233,
"media_type": "movie",
"original_language": "ja",
"original_title": "呪怨-終わりの始まり-",
"overview": "A school teacher visits the home of a boy who's been absent from school for a long period of time, unaware of the horrific tragedy which occurred in the boy's household many years ago.",
"popularity": 7.084,
"poster_path": "/oiKAkQNE61HBirBxpVVET1jBAUD.jpg",
"release_date": "2014-06-28",
"title": "Ju-on: The Beginning of the End",
"video": false,
"vote_average": 6,
"vote_count": 68
},
{
"adult": false,
"backdrop_path": "/s0z0PZjDvYchE1cGn9iHjzeoYdz.jpg",
"first_air_date": "2010-07-09",
"genre_ids": [
16,
18,
10765,
9648
],
"id": 36581,
"media_type": "tv",
"name": "Shiki",
"origin_country": [
"JP"
],
"original_language": "ja",
"original_name": "屍鬼",
"overview": "Sotobamura is a small village with around 1300 residents; so small the village isn't even connected to a single highway. An isolated village in which old customs, such as the burial of the dead, are still practiced. One day, the bodies of three people are found dead. Although Ozaki Toshio, the village's lone doctor, feels uncertain, he treats the deaths as a normal occurrence. However, in the days following, the villagers start to die one after the other.",
"popularity": 30.738,
"poster_path": "/8goy2DZJ1bZdLJ64pFBsKmAlOF1.jpg",
"vote_average": 8.041,
"vote_count": 194
}
],
"known_for_department": "Acting",
"name": "Nozomi Sasaki",
"original_name": "佐々木希",
"popularity": 180.823,
"profile_path": "/k5WCvK8Zrakp6uPizXYxPoPrxIq.jpg"
},
{
"adult": false,
"gender": 1,
"id": 141801,
"known_for": [
{
"adult": false,
"backdrop_path": "/bfrYtYXaMlaxfpbBsmKcp6xCKR4.jpg",
"genre_ids": [
14,
18,
35,
10751
],
"id": 11395,
"media_type": "movie",
"original_language": "en",
"original_title": "The Santa Clause",
"overview": "On Christmas Eve, divorced dad Scott Calvin and his son discover Santa Claus has fallen off their roof. When Scott takes the reins of the magical sleigh, he finds he is now the new Santa, and must convince a world of disbelievers, including himself.",
"popularity": 59.546,
"poster_path": "/2yqaR8HJUQowx8agxEjWVmyBIqo.jpg",
"release_date": "1994-11-11",
"title": "The Santa Clause",
"video": false,
"vote_average": 6.493,
"vote_count": 2046
},
{
"adult": false,
"backdrop_path": "/uyB27Tx3KtczuSo4tDfmiXhfuCp.jpg",
"first_air_date": "1990-09-10",
"genre_ids": [
35,
10751
],
"id": 1892,
"media_type": "tv",
"name": "The Fresh Prince of Bel-Air",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "The Fresh Prince of Bel-Air",
"overview": "Will, a street-smart teenager, moves from the tough streets of West Philly to posh Bel-Air to live with his Uncle Philip, Aunt Vivian, his cousins — spoiled Hilary, preppy Carlton and young Ashley — and their sophisticated British butler, Geoffrey. Though Will’s antics and upbringing contrast greatly with the upper-class lifestyle of his extended relatives, he soon finds himself right at home as a loved part of the family.",
"popularity": 68.101,
"poster_path": "/yAyfo1FvWdXK6NzlKobeTIVGmNK.jpg",
"vote_average": 7.942,
"vote_count": 2247
},
{
"adult": false,
"backdrop_path": "/bG9GfEN24IMSieaiNNcxIUyTHRh.jpg",
"genre_ids": [
27
],
"id": 58093,
"media_type": "movie",
"original_language": "en",
"original_title": "Milo",
"overview": "Four young grade-school girls witness the murder of one of their classmates during what they thought was just an innocent game. The killer is a strange young boy named Milo Jeeder. Sixteen years later, the four survivors of the event re-unite under happier circumstances in the same town where it happened. They believe that Milo drowned in a river shortly after the murder, but soon learn that the demonic killer Milo has also returned, still a young boy, unchanged even after almost two decades.",
"popularity": 3.423,
"poster_path": "/lNKffmpdUqz7IDV0ly1t7vx0kYI.jpg",
"release_date": "1998-10-06",
"title": "Milo",
"video": false,
"vote_average": 4.3,
"vote_count": 22
}
],
"known_for_department": "Acting",
"name": "Paige Tamada",
"original_name": "Paige Tamada",
"popularity": 187.709,
"profile_path": "/pORrZ9gppePMsZBHhwRHvNogFU7.jpg"
},
{
"adult": false,
"gender": 2,
"id": 64,
"known_for": [
{
"adult": false,
"backdrop_path": "/y2DB71C4nyIdMrANijz8mzvQtk6.jpg",
"genre_ids": [
28,
80,
18,
53
],
"id": 49026,
"media_type": "movie",
"original_language": "en",
"original_title": "The Dark Knight Rises",
"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.",
"popularity": 88.934,
"poster_path": "/hr0L2aueqlP2BYUblTTjmtn0hw4.jpg",
"release_date": "2012-07-17",
"title": "The Dark Knight Rises",
"video": false,
"vote_average": 7.781,
"vote_count": 22729
},
{
"adult": false,
"backdrop_path": "/oOv2oUXcAaNXakRqUPxYq5lJURz.jpg",
"genre_ids": [
18,
28,
80,
53
],
"id": 155,
"media_type": "movie",
"original_language": "en",
"original_title": "The Dark Knight",
"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.",
"popularity": 139.009,
"poster_path": "/qJ2tW6WMUDux911r6m7haRef0WH.jpg",
"release_date": "2008-07-16",
"title": "The Dark Knight",
"video": false,
"vote_average": 8.517,
"vote_count": 32982
},
{
"adult": false,
"backdrop_path": "/tyBkBHKDrJyVUeCs550kMr61jnq.jpg",
"genre_ids": [
10749,
27
],
"id": 6114,
"media_type": "movie",
"original_language": "en",
"original_title": "Bram Stoker's Dracula",
"overview": "In 19th century England, Count Dracula travels to London and meets Mina Harker, a young woman who appears as the reincarnation of his lost love.",
"popularity": 37.916,
"poster_path": "/scFDS0U5uYAjcVTyjNc7GmcZw1q.jpg",
"release_date": "1992-11-13",
"title": "Bram Stoker's Dracula",
"video": false,
"vote_average": 7.45,
"vote_count": 5109
}
],
"known_for_department": "Acting",
"name": "Gary Oldman",
"original_name": "Gary Oldman",
"popularity": 225.51,
"profile_path": "/2v9FVVBUrrkW2m3QOcYkuhq9A6o.jpg"
},
{
"adult": false,
"gender": 0,
"id": 4504024,
"known_for": [
{
"adult": false,
"backdrop_path": "/3HaqAPZ0C8n6Hd5T86U53yJlBAN.jpg",
"genre_ids": [
18,
10751
],
"id": 1232449,
"media_type": "movie",
"original_language": "nl",
"original_title": "Young Hearts",
"overview": "Fourteen-year-old Elias increasingly feels like an outsider in his village. When he meets his new neighbour of the same age, Alexander, Elias is confronted with his burgeoning sexuality.",
"popularity": 168.625,
"poster_path": "/vJDvAdRfUL6NR9VG1YVamAS105a.jpg",
"release_date": "2024-10-26",
"title": "Young Hearts",
"video": false,
"vote_average": 8,
"vote_count": 11
}
],
"known_for_department": "Acting",
"name": "Marius De Saeger",
"original_name": "Marius De Saeger",
"popularity": 159.003,
"profile_path": "/7fQpRl1MWprGgQ0RKStmmGs386s.jpg"
},
{
"adult": false,
"gender": 1,
"id": 115440,
"known_for": [
{
"adult": false,
"backdrop_path": "/9KnIzPCv9XpWA0MqmwiKBZvV1Sj.jpg",
"first_air_date": "2019-06-16",
"genre_ids": [
18
],
"id": 85552,
"media_type": "tv",
"name": "Euphoria",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Euphoria",
"overview": "A group of high school students navigate love and friendships in a world of drugs, sex, trauma, and social media.",
"popularity": 256.817,
"poster_path": "/3Q0hd3heuWwDWpwcDkhQOA6TYWI.jpg",
"vote_average": 8.3,
"vote_count": 9790
},
{
"adult": false,
"backdrop_path": "/j9eOeLlTGoHoM8BNUJVNyWmIvCi.jpg",
"genre_ids": [
10749,
35
],
"id": 1072790,
"media_type": "movie",
"original_language": "en",
"original_title": "Anyone But You",
"overview": "After an amazing first date, Bea and Ben’s fiery attraction turns ice cold — until they find themselves unexpectedly reunited at a destination wedding in Australia. So they do what any two mature adults would do: pretend to be a couple.",
"popularity": 85.988,
"poster_path": "/5qHoazZiaLe7oFBok7XlUhg96f2.jpg",
"release_date": "2023-12-21",
"title": "Anyone But You",
"video": false,
"vote_average": 6.944,
"vote_count": 2236
},
{
"adult": false,
"backdrop_path": "/6bGmHzPEq2n6g17moqWwDpJBEom.jpg",
"genre_ids": [
27,
9648,
53
],
"id": 1041613,
"media_type": "movie",
"original_language": "en",
"original_title": "Immaculate",
"overview": "An American nun embarks on a new journey when she joins a remote convent in the Italian countryside. However, her warm welcome quickly turns into a living nightmare when she discovers her new home harbours a sinister secret and unspeakable horrors.",
"popularity": 63.746,
"poster_path": "/fdZpvODTX5wwkD0ikZNaClE4AoW.jpg",
"release_date": "2024-03-20",
"title": "Immaculate",
"video": false,
"vote_average": 6.258,
"vote_count": 1245
}
],
"known_for_department": "Acting",
"name": "Sydney Sweeney",
"original_name": "Sydney Sweeney",
"popularity": 134.878,
"profile_path": "/qYiaSl0Eb7G3VaxOg8PxExCFwon.jpg"
},
{
"adult": false,
"gender": 1,
"id": 92614,
"known_for": [
{
"adult": false,
"backdrop_path": "/s3FDBLH4qc1IcjexB05Qvbn3wxO.jpg",
"genre_ids": [
28,
80,
53
],
"id": 449443,
"media_type": "movie",
"original_language": "en",
"original_title": "Den of Thieves",
"overview": "A gritty crime saga which follows the lives of an elite unit of the LA County Sheriff's Dept. and the state's most successful bank robbery crew as the outlaws plan a seemingly impossible heist on the Federal Reserve Bank.",
"popularity": 47.529,
"poster_path": "/dAP5NpkrMMczir5dUPjRR6ywqgz.jpg",
"release_date": "2018-01-18",
"title": "Den of Thieves",
"video": false,
"vote_average": 6.814,
"vote_count": 2845
},
{
"adult": false,
"backdrop_path": "/hu4psJoKxDYezvvS4GlLF531fom.jpg",
"genre_ids": [
14,
28,
53
],
"id": 400106,
"media_type": "movie",
"original_language": "en",
"original_title": "Bright",
"overview": "In an alternate present-day where magical creatures live among us, two L.A. cops become embroiled in a prophesied turf battle.",
"popularity": 19.54,
"poster_path": "/whkT53Sv2vKAUiknQ13pqcWaPXB.jpg",
"release_date": "2017-12-22",
"title": "Bright",
"video": false,
"vote_average": 6.152,
"vote_count": 5621
},
{
"adult": false,
"backdrop_path": "/mXmvN6drkdU1PWFF92AGklEVIa3.jpg",
"genre_ids": [
14,
28,
12,
27
],
"id": 274854,
"media_type": "movie",
"original_language": "en",
"original_title": "The Last Witch Hunter",
"overview": "The modern world holds many secrets, but by far the most astounding is that witches still live among us; vicious supernatural creatures intent on unleashing the Black Death upon the world and putting an end to the human race once and for all. Armies of witch hunters have battled this unnatural enemy for centuries, including Kaulder, a valiant warrior who many years ago slayed the all-powerful Witch Queen, decimating her followers in the process. In the moments right before her death, the Queen cursed Kaulder with immortality, forever separating him from his beloved wife and daughter. Today, Kaulder is the last living hunter who has spent his immortal life tracking down rogue witches, all the while yearning for his long-lost family.",
"popularity": 29.91,
"poster_path": "/qXvOpA2nhK5HQ6I95sN3nnMtfjH.jpg",
"release_date": "2015-10-21",
"title": "The Last Witch Hunter",
"video": false,
"vote_average": 5.974,
"vote_count": 3581
}
],
"known_for_department": "Acting",
"name": "Dawn Olivieri",
"original_name": "Dawn Olivieri",
"popularity": 119.072,
"profile_path": "/tet7ZVbzhLWwT44m9j94folyl5N.jpg"
},
{
"adult": false,
"gender": 1,
"id": 4103293,
"known_for": [
{
"adult": false,
"backdrop_path": "/mBc6RB7VajfykLqGx0ue7qatXky.jpg",
"genre_ids": [
18
],
"id": 1266990,
"media_type": "movie",
"original_language": "tl",
"original_title": "Kulong",
"overview": "Vivamax beauties Jenn Rosa, Caris Manzano and Aica Veloso come together as friends who lock themselves in at a resort to write a sexy screenplay for a contest. But how can they write a sexy screenplay when none of them has had any sex for quite some time?",
"popularity": 14.791,
"poster_path": "/AnzrE2WHg3DtZrtmB9AnEbAh17m.jpg",
"release_date": "2024-05-24",
"title": "Kulong",
"video": false,
"vote_average": 5.5,
"vote_count": 2
},
{
"adult": false,
"backdrop_path": "/qSVIlRv80dFtIcmb6CAT7WDtlHZ.jpg",
"genre_ids": [
18
],
"id": 1241755,
"media_type": "movie",
"original_language": "tl",
"original_title": "TL",
"overview": "Brenda, a top agent in a BPO company, is always overlooked for promotion. But not this time; as she gets more than intimate with her TL. Is her long awaited position within her reach? Or did she just put herself in a bad situation?",
"popularity": 14.124,
"poster_path": "/sze10NcTe4gAL7q7Fr8nORRh78Y.jpg",
"release_date": "2024-03-30",
"title": "TL",
"video": false,
"vote_average": 7,
"vote_count": 1
},
{
"adult": false,
"backdrop_path": "/qFRqnJ4oSnl2mqx6XyPClbwB2Tu.jpg",
"genre_ids": [
18
],
"id": 1137843,
"media_type": "movie",
"original_language": "tl",
"original_title": "Bisyo!",
"overview": "James wants his way out of a syndicate and dreams to start his own business. But his dreams turn to nightmare because getting out of the group will never be easy.",
"popularity": 1.102,
"poster_path": "/8H33dN7Xmd6OmkRwfsWHwRKIF53.jpg",
"release_date": "2023-07-21",
"title": "Bisyo!",
"video": false,
"vote_average": 2.7,
"vote_count": 3
}
],
"known_for_department": "Acting",
"name": "Jenn Rosa",
"original_name": "Jenn Rosa",
"popularity": 116.533,
"profile_path": "/f2EItX0kOXJjDzZFZSFmGOVS8HB.jpg"
},
{
"adult": false,
"gender": 1,
"id": 1831272,
"known_for": [
{
"adult": false,
"backdrop_path": "/Z1JeznJExodyj0iUbL1wgkts88.jpg",
"genre_ids": [
18,
80,
53
],
"id": 505192,
"media_type": "movie",
"original_language": "ja",
"original_title": "万引き家族",
"overview": "After one of their shoplifting sessions, Osamu and his son come across a little girl in the freezing cold. At first reluctant to shelter the girl, Osamu’s wife agrees to take care of her after learning of the hardships she faces. Although the family is poor, barely making enough money to survive through petty crime, they seem to live happily together until an unforeseen incident reveals hidden secrets, testing the bonds that unite them.",
"popularity": 22.358,
"poster_path": "/4nfRUOv3LX5zLn98WS1WqVBk9E9.jpg",
"release_date": "2018-06-02",
"title": "Shoplifters",
"video": false,
"vote_average": 7.852,
"vote_count": 2039
},
{
"adult": false,
"backdrop_path": "/vLGFd5s72tdmokwKRiKhwFHO9UC.jpg",
"genre_ids": [
27,
53
],
"id": 481899,
"media_type": "movie",
"original_language": "ja",
"original_title": "劇場版 屍囚獄 結ノ篇",
"overview": "They thought they were coming to study a mysterious town hidden in the mountains of Japan. Instead, they’ve discovered that their Professor brought them to Yasaka for a much darker purpose. Now Mikoto and the other girls are trapped in a monstrous nightmare. As the villagers become increasingly more insane, the college students find themselves at the center of arcane rituals focused on blood and rotting flesh. Their only chance is to escape, but their captors are far too numerous and know the lay of the local land far too well.",
"popularity": 8.934,
"poster_path": "/bAUjXSpnizDkSg4qa08PWuesrVV.jpg",
"release_date": "2017-06-10",
"title": "Corpse Prison: Part 2",
"video": false,
"vote_average": 6.4,
"vote_count": 25
},
{
"adult": false,
"backdrop_path": "/68afPR6EPV5wkE85whdO6al7FUx.jpg",
"genre_ids": [
28
],
"id": 1061990,
"media_type": "movie",
"original_language": "ja",
"original_title": "シティーハンター",
"overview": "An exceptional marksman and hopeless playboy, private eye Ryo Saeba reluctantly forms an alliance with his late partner's sister to investigate his death.",
"popularity": 34.494,
"poster_path": "/cjQzJ9xFdaN9KAwu7HUImIgbc2Y.jpg",
"release_date": "2024-04-24",
"title": "City Hunter",
"video": false,
"vote_average": 6.503,
"vote_count": 194
}
],
"known_for_department": "Acting",
"name": "Moemi Katayama",
"original_name": "片山萌美",
"popularity": 131.302,
"profile_path": "/nQQQhq9cjk6VgfoarD9AnUyRbK6.jpg"
},
{
"adult": false,
"gender": 2,
"id": 81866,
"known_for": [
{
"adult": false,
"backdrop_path": "/1RKrqGz2TwOEPNMpTMIMnG5kLJk.jpg",
"genre_ids": [
14,
16,
10751
],
"id": 8392,
"media_type": "movie",
"original_language": "ja",
"original_title": "となりのトトロ",
"overview": "Two sisters move to the country with their father in order to be closer to their hospitalized mother, and discover the surrounding trees are inhabited by Totoros, magical spirits of the forest. When the youngest runs away from home, the older sister seeks help from the spirits to find her.",
"popularity": 53.014,
"poster_path": "/rtGDOeG9LzoerkDGZF9dnVeLppL.jpg",
"release_date": "1988-04-16",
"title": "My Neighbor Totoro",
"video": false,
"vote_average": 8.069,
"vote_count": 7971
},
{
"adult": false,
"backdrop_path": "/z0YhJvomqedHF85bplUJEotkN5l.jpg",
"first_air_date": "2007-02-15",
"genre_ids": [
16,
10759,
10765
],
"id": 31910,
"media_type": "tv",
"name": "Naruto Shippūden",
"origin_country": [
"JP"
],
"original_language": "ja",
"original_name": "ナルト 疾風伝",
"overview": "After 2 and a half years Naruto finally returns to his village of Konoha, and sets about putting his ambitions to work. It will not be easy though as he has amassed a few more dangerous enemies, in the likes of the shinobi organization; Akatsuki.",
"popularity": 241.305,
"poster_path": "/kV27j3Nz4d5z8u6mN3EJw9RiLg2.jpg",
"vote_average": 8.5,
"vote_count": 8143
},
{
"adult": false,
"backdrop_path": "/sDSdbBG0W5dJ74V3zFI4v68umFn.jpg",
"first_air_date": "2007-04-01",
"genre_ids": [
16,
10759,
10765
],
"id": 21729,
"media_type": "tv",
"name": "Gurren Lagann",
"origin_country": [
"JP"
],
"original_language": "ja",
"original_name": "天元突破グレンラガン",
"overview": "In the distant future, mankind has lived quietly and restlessly underground for hundreds of years, subject to earthquakes and cave-ins. Living in one such village are 2 young men: one named Simon who is shy and naïve, and the other named Kamina who believes in the existence of a “surface” world above their heads.",
"popularity": 72.806,
"poster_path": "/jLSe0OgbpXsHl5gUMF2iU3H4Rrq.jpg",
"vote_average": 8.173,
"vote_count": 493
}
],
"known_for_department": "Acting",
"name": "Daiki Nakamura",
"original_name": "中村大樹",
"popularity": 142.111,
"profile_path": "/c4mmhN3Sq8YYFT2CuOpgBP0pCPb.jpg"
},
{
"adult": false,
"gender": 1,
"id": 572043,
"known_for": [
{
"adult": false,
"backdrop_path": "/tkuVd1LYyltRdiWO50kJ5lc4J9V.jpg",
"genre_ids": [
14,
28,
12,
18
],
"id": 611698,
"media_type": "movie",
"original_language": "zh",
"original_title": "刺杀小说家",
"overview": "Kongwen Lu is the author of a fantasy novel series following a heroic teenager, also named Kongwen, on a quest to end the tyrannical rule of Lord Redmane, under the guidance of a Black Armor. But through a strange twist of fate, the fantasy world of the novel begins to impact life in the real world, leading Guan Ning to accept a mission from Tu Ling to kill the author.",
"popularity": 20.841,
"poster_path": "/7hEhhmAF8Tr7g95fkbuxDpeR27b.jpg",
"release_date": "2021-02-12",
"title": "A Writer's Odyssey",
"video": false,
"vote_average": 7.115,
"vote_count": 299
},
{
"adult": false,
"backdrop_path": "/lKilKeX1rlIhRcY4xQPP4bmuct9.jpg",
"genre_ids": [
16,
14,
18,
878
],
"id": 369552,
"media_type": "movie",
"original_language": "zh",
"original_title": "爵迹",
"overview": "Based on the novel of the same name, the film depicts the endless battles of four kingdoms as they fight for power and domination of the one ultimate realm.Based on his 2 beloved fantasy novels with 6 million copies sold, L.O.R.D is acclaimed writer and director Guo Jingming’s follow up to his Tiny Times films. The action-adventure odyssey is set in a world of warring Sorcerers, Lords and Beasts. The first CGI Film to come from China",
"popularity": 10.194,
"poster_path": "/qIUDi1XDAREkarkwNzOOBgUzqyC.jpg",
"release_date": "2016-09-29",
"title": "L.O.R.D: Legend of Ravaging Dynasties",
"video": false,
"vote_average": 6.981,
"vote_count": 132
},
{
"adult": false,
"backdrop_path": "/f2fWG89GPSe31ymp6pqJANfjbit.jpg",
"genre_ids": [
28,
878
],
"id": 457832,
"media_type": "movie",
"original_language": "zh",
"original_title": "逆时营救",
"overview": "In 2025, a scientist on the verge of making a major discovery related to time travel is suddenly put in peril when a rival kidnaps her young son and demands a hefty ransom: her entire research.",
"popularity": 9.822,
"poster_path": "/zwTonDtQstoMQHYEBCz8x8RvBJJ.jpg",
"release_date": "2017-06-28",
"title": "Reset",
"video": false,
"vote_average": 7.01,
"vote_count": 102
}
],
"known_for_department": "Acting",
"name": "Yang Mi",
"original_name": "杨幂",
"popularity": 160.191,
"profile_path": "/6RezRxlQBsYmlotybR3q7riSrvV.jpg"
},
{
"adult": false,
"gender": 2,
"id": 3103725,
"known_for": [
{
"adult": false,
"backdrop_path": "/yYQDu8yX2zZaCa1hUWD24jq3JRu.jpg",
"genre_ids": [
35,
14
],
"id": 1097870,
"media_type": "movie",
"original_language": "en",
"original_title": "Dear Santa",
"overview": "Likeable 6th grader Liam writes to Santa asking him to prove that he's real. But Liam is dyslexic and accidentally sends his letter to Satan instead, who shows up at Liam's house, excited to have his first fanboy letter and wanting a little of Liam's soul.",
"popularity": 374.634,
"poster_path": "/fRbDHbGBXg6kwQYr3CRYeKPJW5q.jpg",
"release_date": "2024-11-24",
"title": "Dear Santa",
"video": false,
"vote_average": 6.616,
"vote_count": 125
},
{
"adult": false,
"backdrop_path": "/66kNCeI5ApO0XAuyDqmdPIyQHkY.jpg",
"genre_ids": [
35,
28,
80
],
"id": 877817,
"media_type": "movie",
"original_language": "en",
"original_title": "Wolfs",
"overview": "Hired to cover up a high-profile crime, a fixer soon finds his night spiralling out of control when he's forced to work with an unexpected counterpart.",
"popularity": 109.516,
"poster_path": "/vOX1Zng472PC2KnS0B9nRfM8aaZ.jpg",
"release_date": "2024-09-20",
"title": "Wolfs",
"video": false,
"vote_average": 6.6,
"vote_count": 785
},
{
"adult": false,
"backdrop_path": "/6E0hbesJfpekAqL2AeHYukkHcbD.jpg",
"first_air_date": "2024-12-02",
"genre_ids": [
10759,
10765
],
"id": 202879,
"media_type": "tv",
"name": "Star Wars: Skeleton Crew",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Star Wars: Skeleton Crew",
"overview": "Four ordinary kids search for their home planet after getting lost in the Star Wars galaxy.",
"popularity": 598.285,
"poster_path": "/srQbJhLRKoAwRrNN5ga7webPHbC.jpg",
"vote_average": 7.2,
"vote_count": 79
}
],
"known_for_department": "Acting",
"name": "Robert Timothy Smith",
"original_name": "Robert Timothy Smith",
"popularity": 106.298,
"profile_path": "/7Qq9fqLQGbMxYjw5tVGYEuYW7Ye.jpg"
},
{
"adult": false,
"gender": 1,
"id": 4095744,
"known_for": [
{
"adult": false,
"backdrop_path": "/7B72d6f09eIifSgkpCkzwkv8fle.jpg",
"genre_ids": [
18,
10749
],
"id": 1002398,
"media_type": "movie",
"original_language": "tl",
"original_title": "Donselya",
"overview": "Iris, an 18-year old virgin marries Joaquin, a rich widower, because of money. However, when he learns that Iris is not really a virgin, their honeymoon turns to a bloodbath.",
"popularity": 23.131,
"poster_path": "/iVS3ZiPsKy8Hhc5Dipqgrjmoj2b.jpg",
"release_date": "2024-10-29",
"title": "Donselya",
"video": false,
"vote_average": 6.2,
"vote_count": 10
},
{
"adult": false,
"backdrop_path": "/uUJuPiZh1QfIeTa1GeLWqnEkaP2.jpg",
"genre_ids": [
18
],
"id": 1302011,
"media_type": "movie",
"original_language": "tl",
"original_title": "Init",
"overview": "When a young barrio lass moves in to the city to study, she lives in a boarding house with other college students. Unknown to them, behind her shy and timid personality is a woman with insatiable hunger for sex.",
"popularity": 32.24,
"poster_path": "/fGY13rtdRzFqTkDMi5JayUWg6vL.jpg",
"release_date": "2024-07-30",
"title": "Init",
"video": false,
"vote_average": 5,
"vote_count": 4
},
{
"adult": false,
"backdrop_path": "/4GHPT4glMQHPCke2DNigRqZ6KqH.jpg",
"genre_ids": [
18
],
"id": 1226299,
"media_type": "movie",
"original_language": "tl",
"original_title": "Dilig",
"overview": "About to get married to an old, wealthy businessman, Resa enlists the help of gardener Otso to seduce her fiancé’s daughter, Katelyn, and record his sexploits with her in order to get her disowned.",
"popularity": 19.846,
"poster_path": "/lDn02aAZFUb7JpM7l7iuHdbWEHH.jpg",
"release_date": "2024-01-30",
"title": "Dilig",
"video": false,
"vote_average": 4.3,
"vote_count": 3
}
],
"known_for_department": "Acting",
"name": "Dyessa Garcia",
"original_name": "Dyessa Garcia",
"popularity": 89.074,
"profile_path": "/xak9L0fkIOkjSwJpz3SWLl94tVP.jpg"
},
{
"adult": false,
"gender": 1,
"id": 224513,
"known_for": [
{
"adult": false,
"backdrop_path": "/ilRyazdMJwN05exqhwK4tMKBYZs.jpg",
"genre_ids": [
878,
18
],
"id": 335984,
"media_type": "movie",
"original_language": "en",
"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.",
"popularity": 112.281,
"poster_path": "/gajva2L0rPYkEWjzgFlBXCAVBE5.jpg",
"release_date": "2017-10-04",
"title": "Blade Runner 2049",
"video": false,
"vote_average": 7.57,
"vote_count": 13654
},
{
"adult": false,
"backdrop_path": "/4HWAQu28e2yaWrtupFPGFkdNU7V.jpg",
"genre_ids": [
35,
80,
9648
],
"id": 546554,
"media_type": "movie",
"original_language": "en",
"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.",
"popularity": 52.928,
"poster_path": "/pThyQovXQrw2m0s9x82twj48Jq4.jpg",
"release_date": "2019-11-27",
"title": "Knives Out",
"video": false,
"vote_average": 7.846,
"vote_count": 12386
},
{
"adult": false,
"backdrop_path": "/oNoprEND25zXR6Fns8cIZUkuoMc.jpg",
"genre_ids": [
35,
80,
18
],
"id": 308266,
"media_type": "movie",
"original_language": "en",
"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.",
"popularity": 37.98,
"poster_path": "/mDcPRjZC1bb6LavFU3gwsWdVfCM.jpg",
"release_date": "2016-08-18",
"title": "War Dogs",
"video": false,
"vote_average": 6.922,
"vote_count": 4900
}
],
"known_for_department": "Acting",
"name": "Ana de Armas",
"original_name": "Ana de Armas",
"popularity": 122.272,
"profile_path": "/5Qne374OM0ewMM7uSN9eq9jNrWq.jpg"
},
{
"adult": false,
"gender": 2,
"id": 81350,
"known_for": [
{
"adult": false,
"backdrop_path": "/cDyYWcavuvNKtf7VpNR86nWh5XF.jpg",
"genre_ids": [
878,
12,
9648
],
"id": 36683,
"media_type": "movie",
"original_language": "ja",
"original_title": "20世紀少年 -第1章- 終わりの始まり",
"overview": "In 1969, Kenji, an elementary school kid and his friends built a secret base during their summer holidays. They fantasized that they had to fight villains who were out to conquer the world and wrote them in the Book of Prophecies. Years later in 1997, Kenji becomes a convenience store manager and leads a regular life after giving up his dreams to become a rock star. His boring life is suddenly turned upside down when his old classmate dies mysteriously and an entire family in the neighbourhood disappears. At the same time, a religious cult and its mysterious leader, Friend emerges and a strange chain of events duplicating exactly the events described in the Book of Prophecies follow. Is this the beginning of the end of the world? Who is Friend?",
"popularity": 10.678,
"poster_path": "/nb1fd4nZyBLUhkjnAQx5607aBMq.jpg",
"release_date": "2008-08-19",
"title": "20th Century Boys: Beginning of the End",
"video": false,
"vote_average": 6.7,
"vote_count": 96
},
{
"adult": false,
"backdrop_path": "/Ad1D9qkQqICgWrnTFEmciQAgOY6.jpg",
"genre_ids": [
878,
12,
9648
],
"id": 25114,
"media_type": "movie",
"original_language": "ja",
"original_title": "20世紀少年 第2章 最後の希望",
"overview": "Set 15 years after \"Twentieth Century Boys,\" Kanna (Airi Taira) reunites with several main characters from the first film in an attempt to stop Friend's increasing influence over the world and continued plans to eliminate humanity, as detailed in the New Book of Prophecy.",
"popularity": 6.817,
"poster_path": "/ej5rGwbyybno1pKDqqTLy7Gwc1T.jpg",
"release_date": "2009-01-30",
"title": "20th Century Boys 2: The Last Hope",
"video": false,
"vote_average": 6.6,
"vote_count": 66
},
{
"adult": false,
"backdrop_path": "/7QtKvkNypPoVSi1n4FNmxluOLB4.jpg",
"genre_ids": [
12,
9648,
878
],
"id": 39123,
"media_type": "movie",
"original_language": "ja",
"original_title": "20世紀少年 ぼくらの旗",
"overview": "The final showdown, and the final reveal. who is Friend? How can he be stopped?",
"popularity": 8.55,
"poster_path": "/zf5wTUqciMcSEUjPF5E9O8fBNo9.jpg",
"release_date": "2009-08-19",
"title": "20th Century Boys 3: Redemption",
"video": false,
"vote_average": 6.7,
"vote_count": 60
}
],
"known_for_department": "Acting",
"name": "Toshiaki Karasawa",
"original_name": "唐沢寿明",
"popularity": 118.235,
"profile_path": "/vB73o5XHjSHLpCwxRl83uFNAicP.jpg"
},
{
"adult": false,
"gender": 1,
"id": 2113005,
"known_for": [
{
"adult": false,
"backdrop_path": "/wIrqeoJHYtZmneqIufPtcOHMjOg.jpg",
"genre_ids": [
878,
28,
18
],
"id": 535167,
"media_type": "movie",
"original_language": "zh",
"original_title": "流浪地球",
"overview": "When the Sun begins to expand in such a way that it will inevitably engulf and destroy the Earth in a hundred years, united mankind finds a way to avoid extinction by propelling the planet out of the Solar System using gigantic engines, moving it to a new home located four light years away, an epic journey that will last thousands of years.",
"popularity": 20.842,
"poster_path": "/AtWfsYZGW69YcCYOaVZ0EKNN14v.jpg",
"release_date": "2019-02-05",
"title": "The Wandering Earth",
"video": false,
"vote_average": 6.61,
"vote_count": 957
},
{
"adult": false,
"backdrop_path": "/wNYUv8u5Z0AI4dkyxGyet7eLEWm.jpg",
"genre_ids": [
18
],
"id": 945675,
"media_type": "movie",
"original_language": "zh",
"original_title": "一周的朋友",
"overview": "A high school student suffers from a strange amnesia, causing her memories to only last a week. After she befriends a new student, his kindness and persistence make her gradually open up.",
"popularity": 49.029,
"poster_path": "/wjYcNLVwFpSAGAPKgo0NIwhfWJS.jpg",
"release_date": "2022-06-18",
"title": "One Week Friends",
"video": false,
"vote_average": 5.776,
"vote_count": 114
},
{
"adult": false,
"backdrop_path": "/diTz0umqocpeFa0g4Q4DiMw84DF.jpg",
"first_air_date": "2022-01-11",
"genre_ids": [
18,
9648
],
"id": 155441,
"media_type": "tv",
"name": "Reset",
"origin_country": [
"CN"
],
"original_language": "zh",
"original_name": "开端",
"overview": "The lives of a college student and a video game designer are kept being reset after an explosion on a bus. During each reset, they have to work together to find out what the reason for the explosion is. Will these two be able to save themselves and their fellow passengers? Will they be able to close the time-loop?",
"popularity": 19.29,
"poster_path": "/t95T31wxF0ElSwUE4U8AnOSAmF3.jpg",
"vote_average": 8.058,
"vote_count": 95
}
],
"known_for_department": "Acting",
"name": "Zhao Jinmai",
"original_name": "赵今麦",
"popularity": 144.176,
"profile_path": "/obAzDuyEUa5Yq4byYhRzziI7W5c.jpg"
},
{
"adult": false,
"gender": 2,
"id": 3032312,
"known_for": [
{
"adult": false,
"backdrop_path": "/gCp0teY59mPiWMIRrPkeyCZt6H3.jpg",
"first_air_date": "2022-01-07",
"genre_ids": [
10764
],
"id": 124031,
"media_type": "tv",
"name": "Hype House",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Hype House",
"overview": "From humble beginnings to overnight fame, these are the stories of the most popular personalities on social media as they come into their own, fall in love and tackle new chapters in their lives.",
"popularity": 4.393,
"poster_path": "/sIppViBWffdcN2m6ffOsl0NKhHw.jpg",
"vote_average": 4.8,
"vote_count": 11
},
{
"adult": false,
"backdrop_path": "/68xjylXPOclGga7SJ6vhEIHv0ZL.jpg",
"first_air_date": "2021-09-03",
"genre_ids": [
10764
],
"id": 130392,
"media_type": "tv",
"name": "The D'Amelio Show",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "The D'Amelio Show",
"overview": "From relative obscurity and a seemingly normal life, to overnight success and thrust into the Hollywood limelight overnight, the D’Amelios are faced with new challenges and opportunities they could not have imagined.",
"popularity": 12.911,
"poster_path": "/1TMOWefVY5854oxEI0I6yLLMwlR.jpg",
"vote_average": 5,
"vote_count": 681
},
{
"adult": false,
"backdrop_path": "/xjxKYSGycoUQWZ9OUr2Ou6kyIhy.jpg",
"first_air_date": "2021-09-08",
"genre_ids": [
18,
10751,
35
],
"id": 130372,
"media_type": "tv",
"name": "Doogie Kamealoha, M.D.",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Doogie Kamealoha, M.D.",
"overview": "Lahela 'Doogie' Kamealoha, a 16-year-old prodigy juggles a budding medical career and life as a teenager. With the support of her caring and comical 'ohana (family) and friends, Lahela is determined to make the most of her teenage years and forge her own path.",
"popularity": 28.007,
"poster_path": "/qS9NwCJDPnHWtJbgiFmpc8T90tP.jpg",
"vote_average": 7.7,
"vote_count": 189
}
],
"known_for_department": "Acting",
"name": "Noah Beck",
"original_name": "Noah Beck",
"popularity": 110.952,
"profile_path": "/67BJ1o03CpMbRj40jjiAG13TqPe.jpg"
}
],
"total_pages": 188202,
"total_results": 3764022
}Authorizations
Response
200 - application/json
OK
Example:
1
Show child attributes
Show child attributes
Example:
[ { "adult": false, "gender": 0, "id": 3724154, "known_for": [ { "adult": false, "backdrop_path": "/3HaqAPZ0C8n6Hd5T86U53yJlBAN.jpg", "genre_ids": [18, 10751], "id": 1232449, "media_type": "movie", "original_language": "nl", "original_title": "Young Hearts", "overview": "Fourteen-year-old Elias increasingly feels like an outsider in his village. When he meets his new neighbour of the same age, Alexander, Elias is confronted with his burgeoning sexuality.", "popularity": 168.625, "poster_path": "/vJDvAdRfUL6NR9VG1YVamAS105a.jpg", "release_date": "2024-10-26", "title": "Young Hearts", "video": false, "vote_average": 8, "vote_count": 11 }, { "adult": false, "backdrop_path": "/xbb0AzHP1B7vJ2LiN7ARLNe3RwZ.jpg", "first_air_date": "2023-08-18", "genre_ids": [35], "id": 229685, "media_type": "tv", "name": "Boomer", "origin_country": ["BE"], "original_language": "nl", "original_name": "Boomer", "overview": "", "popularity": 12.545, "poster_path": "/bZAKLGZk3gqCbdBhcfrnBp0LuwS.jpg", "vote_average": 10, "vote_count": 1 }, { "adult": false, "backdrop_path": "/xANGcChEgQJLHMdiLwOLxWebvbs.jpg", "genre_ids": [18], "id": 1030955, "media_type": "movie", "original_language": "nl", "original_title": "Alleen Ik", "overview": "Longing for acceptance, a neurodivergent boy taunts the boundaries of his best friend: his brother.", "popularity": 16.236, "poster_path": "/qUzwUif6WybmpH6t4MA26hkdUI5.jpg", "release_date": "2022-11-05", "title": "Alleen Ik (Only me, me alone)", "video": false, "vote_average": 0, "vote_count": 0 } ], "known_for_department": "Acting", "name": "Lou Goossens", "original_name": "Lou Goossens", "popularity": 301.655, "profile_path": "/kY8eifhCPvjTE6JJclrrWO7Zr9L.jpg" }, { "adult": false, "gender": 1, "id": 64439, "known_for": [ { "adult": false, "backdrop_path": "/8Z0cv337TY8fA5LnKRQmlwDvTlE.jpg", "genre_ids": [28, 12, 878], "id": 127585, "media_type": "movie", "original_language": "en", "original_title": "X-Men: Days of Future Past", "overview": "The ultimate X-Men ensemble fights a war for the survival of the species across two time periods as they join forces with their younger selves in an epic battle that must change the past – to save our future.", "popularity": 60.054, "poster_path": "/tYfijzolzgoMOtegh1Y7j2Enorg.jpg", "release_date": "2014-05-15", "title": "X-Men: Days of Future Past", "video": false, "vote_average": 7.531, "vote_count": 15274 }, { "adult": false, "backdrop_path": "/tAl5nVeZe7Glx0LN93SxQDphl7Z.jpg", "genre_ids": [28, 35, 53, 9648], "id": 270774, "media_type": "movie", "original_language": "en", "original_title": "Skiptrace", "overview": "A detective from Hong Kong teams up with an American gambler to battle against a notorious Chinese criminal.", "popularity": 22.239, "poster_path": "/yepKO0bbXL2FSUoq93c7lkp0op1.jpg", "release_date": "2016-07-21", "title": "Skiptrace", "video": false, "vote_average": 5.697, "vote_count": 690 }, { "adult": false, "backdrop_path": "/dEE5tjmrxf4xrKrTnyghLsPSt6f.jpg", "genre_ids": [28, 12, 53], "id": 522016, "media_type": "movie", "original_language": "en", "original_title": "The 355", "overview": "A group of top female agents from American, British, Chinese, Colombian, and German government agencies are drawn together to try and stop an organization from acquiring a deadly weapon to send the world into chaos.", "popularity": 40.071, "poster_path": "/zxizwEPE8jhpbMgrFbwCztgvh2m.jpg", "release_date": "2022-01-05", "title": "The 355", "video": false, "vote_average": 6.059, "vote_count": 1002 } ], "known_for_department": "Acting", "name": "Fan Bingbing", "original_name": "范冰冰", "popularity": 271.174, "profile_path": "/pV2wYJiiPd6cgHK580PKD0GM4Dc.jpg" }, { "adult": false, "gender": 1, "id": 1815065, "known_for": [ { "adult": false, "backdrop_path": "/qVu5MC7DiDOrlcKNZsb9rEJJ1UI.jpg", "first_air_date": "2016-04-01", "genre_ids": [10759, 10765, 37], "id": 65988, "media_type": "tv", "name": "Wynonna Earp", "origin_country": ["CA", "US"], "original_language": "en", "original_name": "Wynonna Earp", "overview": "Wyatt Earp's great granddaughter Wynonna battles demons and other creatures with her unique abilities and a posse of dysfunctional allies - the only thing that can bring the paranormal to justice.", "popularity": 64.007, "poster_path": "/qnIaDelA81dmFaXrhpz6M6dpGSD.jpg", "vote_average": 7.879, "vote_count": 759 }, { "adult": false, "backdrop_path": "/9voL03zuWH6kUYmcLWAebVYQk27.jpg", "genre_ids": [10770, 35, 10749], "id": 1038773, "media_type": "movie", "original_language": "en", "original_title": "Dream Wedding", "overview": "Sisters Kate and Megan attend their local wedding fair they jokingly enter a dream wedding package even though they are not getting married. Surprise the sisters win and now must put on a show or be mortified by their champagne decisions.", "popularity": 4.888, "poster_path": "/w5z2t02FKJtHfpbtZPpVleltiB0.jpg", "release_date": "2023-04-01", "title": "Dream Wedding", "video": false, "vote_average": 6.8, "vote_count": 6 }, { "adult": false, "backdrop_path": "/vKjcGYGONld7jXAWACgYDMYzygi.jpg", "genre_ids": [10749, 35, 10770], "id": 1150521, "media_type": "movie", "original_language": "en", "original_title": "Christmas on Windmill Way", "overview": "Mia Meijer gets ready for the Christmas Market Dutch Bake-Off and suspects that her grandmother, Ann, will walk away with the cherished Golden Rolling Pin thanks to her Kerststol, a traditional Dutch fruited Christmas bread. But Mia's world is rocked when she learns that Ann was having financial troubles and had to sell the land deed to the Windmill Way property in her family for generations. Making matters worse, the buyer is Mia's former boyfriend, property developer Brady Schaltz, who must let Mia and Ann know the Meijer family-owned heritage Dutch sawmill, renowned for the past 90 years for its fine millwork and beautiful wooden furniture, will be torn down to put up a luxurious resort.", "popularity": 89.611, "poster_path": "/bRDWHhiVLllPWBU2ADV61acyqT7.jpg", "release_date": "2023-12-02", "title": "Christmas on Windmill Way", "video": false, "vote_average": 6.1, "vote_count": 26 } ], "known_for_department": "Acting", "name": "Christa Taylor Brown", "original_name": "Christa Taylor Brown", "popularity": 234.091, "profile_path": "/uUgiI5y8aHA6bxYxzqzFQmgs6H6.jpg" }, { "adult": false, "gender": 1, "id": 2475737, "known_for": [ { "adult": false, "backdrop_path": "/h9DIlghaiTxbQbt1FIwKNbQvEL.jpg", "genre_ids": [28, 12, 53], "id": 581387, "media_type": "movie", "original_language": "ko", "original_title": "백두산", "overview": "A group of unlikely heroes from across the Korean peninsula try to save the day after a volcano erupts on the mythical and majestic Baekdu Mountain.", "popularity": 24.589, "poster_path": "/gCZ0RHifBxZGedde7WPWSgjpyZt.jpg", "release_date": "2019-12-19", "title": "Ashfall", "video": false, "vote_average": 6.807, "vote_count": 570 }, { "adult": false, "backdrop_path": "/6EO11KoiMMG29ISaQrm2G5DCe1X.jpg", "genre_ids": [9648, 27, 53], "id": 838209, "media_type": "movie", "original_language": "ko", "original_title": "파묘", "overview": "After tracing the origin of a disturbing supernatural affliction to a wealthy family's ancestral gravesite, a team of paranormal experts relocates the remains—and soon discovers what happens to those who dare to mess with the wrong grave.", "popularity": 66.313, "poster_path": "/m4xzX3yuroKerFOltY1yY05nqcQ.jpg", "release_date": "2024-02-22", "title": "Exhuma", "video": false, "vote_average": 7.6, "vote_count": 390 }, { "adult": false, "backdrop_path": "/f5xCw22fOR6DgDRCpDFGkPbKbmY.jpg", "genre_ids": [14, 35, 28], "id": 560527, "media_type": "movie", "original_language": "ko", "original_title": "내안의 그놈", "overview": "Dong-hyun is a high school student. One day, he falls from the rooftop and bumps into Pan-soo who is a passerby. Pan-soo is a member of a criminal organization. When the two men wake up in the hospital, they discover that they have switched bodies.", "popularity": 21.078, "poster_path": "/3H97tUK5UmgOpjCh6Q7XZ4HW1cG.jpg", "release_date": "2019-01-09", "title": "The Dude in Me", "video": false, "vote_average": 7.8, "vote_count": 134 } ], "known_for_department": "Acting", "name": "Jung Yun-ha", "original_name": "정윤하", "popularity": 130.702, "profile_path": "/j9JxgFjiDhuO98eWjYULoZMLt94.jpg" }, { "adult": false, "gender": 1, "id": 129700, "known_for": [ { "adult": false, "backdrop_path": "/8byxFCldQ2PEXKP9eF41X2Lgcjb.jpg", "genre_ids": [18, 10749], "id": 43635, "media_type": "movie", "original_language": "ja", "original_title": "天使の恋", "overview": "Because of her past, 17-year-old Rio lives her days filling the emptiness in her heart with money--until one day, she meets a university professor named Kouki and falls in love.", "popularity": 11.319, "poster_path": "/z6ZIjEs81jJp2CleidgPsfLq1eA.jpg", "release_date": "2009-11-07", "title": "My Rainy Days", "video": false, "vote_average": 7.5, "vote_count": 130 }, { "adult": false, "backdrop_path": "/8v7CBqnCIyaQejMV8rh87NjX5sE.jpg", "genre_ids": [27], "id": 259233, "media_type": "movie", "original_language": "ja", "original_title": "呪怨-終わりの始まり-", "overview": "A school teacher visits the home of a boy who's been absent from school for a long period of time, unaware of the horrific tragedy which occurred in the boy's household many years ago.", "popularity": 7.084, "poster_path": "/oiKAkQNE61HBirBxpVVET1jBAUD.jpg", "release_date": "2014-06-28", "title": "Ju-on: The Beginning of the End", "video": false, "vote_average": 6, "vote_count": 68 }, { "adult": false, "backdrop_path": "/s0z0PZjDvYchE1cGn9iHjzeoYdz.jpg", "first_air_date": "2010-07-09", "genre_ids": [16, 18, 10765, 9648], "id": 36581, "media_type": "tv", "name": "Shiki", "origin_country": ["JP"], "original_language": "ja", "original_name": "屍鬼", "overview": "Sotobamura is a small village with around 1300 residents; so small the village isn't even connected to a single highway. An isolated village in which old customs, such as the burial of the dead, are still practiced. One day, the bodies of three people are found dead. Although Ozaki Toshio, the village's lone doctor, feels uncertain, he treats the deaths as a normal occurrence. However, in the days following, the villagers start to die one after the other.", "popularity": 30.738, "poster_path": "/8goy2DZJ1bZdLJ64pFBsKmAlOF1.jpg", "vote_average": 8.041, "vote_count": 194 } ], "known_for_department": "Acting", "name": "Nozomi Sasaki", "original_name": "佐々木希", "popularity": 180.823, "profile_path": "/k5WCvK8Zrakp6uPizXYxPoPrxIq.jpg" }, { "adult": false, "gender": 1, "id": 141801, "known_for": [ { "adult": false, "backdrop_path": "/bfrYtYXaMlaxfpbBsmKcp6xCKR4.jpg", "genre_ids": [14, 18, 35, 10751], "id": 11395, "media_type": "movie", "original_language": "en", "original_title": "The Santa Clause", "overview": "On Christmas Eve, divorced dad Scott Calvin and his son discover Santa Claus has fallen off their roof. When Scott takes the reins of the magical sleigh, he finds he is now the new Santa, and must convince a world of disbelievers, including himself.", "popularity": 59.546, "poster_path": "/2yqaR8HJUQowx8agxEjWVmyBIqo.jpg", "release_date": "1994-11-11", "title": "The Santa Clause", "video": false, "vote_average": 6.493, "vote_count": 2046 }, { "adult": false, "backdrop_path": "/uyB27Tx3KtczuSo4tDfmiXhfuCp.jpg", "first_air_date": "1990-09-10", "genre_ids": [35, 10751], "id": 1892, "media_type": "tv", "name": "The Fresh Prince of Bel-Air", "origin_country": ["US"], "original_language": "en", "original_name": "The Fresh Prince of Bel-Air", "overview": "Will, a street-smart teenager, moves from the tough streets of West Philly to posh Bel-Air to live with his Uncle Philip, Aunt Vivian, his cousins — spoiled Hilary, preppy Carlton and young Ashley — and their sophisticated British butler, Geoffrey. Though Will’s antics and upbringing contrast greatly with the upper-class lifestyle of his extended relatives, he soon finds himself right at home as a loved part of the family.", "popularity": 68.101, "poster_path": "/yAyfo1FvWdXK6NzlKobeTIVGmNK.jpg", "vote_average": 7.942, "vote_count": 2247 }, { "adult": false, "backdrop_path": "/bG9GfEN24IMSieaiNNcxIUyTHRh.jpg", "genre_ids": [27], "id": 58093, "media_type": "movie", "original_language": "en", "original_title": "Milo", "overview": "Four young grade-school girls witness the murder of one of their classmates during what they thought was just an innocent game. The killer is a strange young boy named Milo Jeeder. Sixteen years later, the four survivors of the event re-unite under happier circumstances in the same town where it happened. They believe that Milo drowned in a river shortly after the murder, but soon learn that the demonic killer Milo has also returned, still a young boy, unchanged even after almost two decades.", "popularity": 3.423, "poster_path": "/lNKffmpdUqz7IDV0ly1t7vx0kYI.jpg", "release_date": "1998-10-06", "title": "Milo", "video": false, "vote_average": 4.3, "vote_count": 22 } ], "known_for_department": "Acting", "name": "Paige Tamada", "original_name": "Paige Tamada", "popularity": 187.709, "profile_path": "/pORrZ9gppePMsZBHhwRHvNogFU7.jpg" }, { "adult": false, "gender": 2, "id": 64, "known_for": [ { "adult": false, "backdrop_path": "/y2DB71C4nyIdMrANijz8mzvQtk6.jpg", "genre_ids": [28, 80, 18, 53], "id": 49026, "media_type": "movie", "original_language": "en", "original_title": "The Dark Knight Rises", "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.", "popularity": 88.934, "poster_path": "/hr0L2aueqlP2BYUblTTjmtn0hw4.jpg", "release_date": "2012-07-17", "title": "The Dark Knight Rises", "video": false, "vote_average": 7.781, "vote_count": 22729 }, { "adult": false, "backdrop_path": "/oOv2oUXcAaNXakRqUPxYq5lJURz.jpg", "genre_ids": [18, 28, 80, 53], "id": 155, "media_type": "movie", "original_language": "en", "original_title": "The Dark Knight", "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.", "popularity": 139.009, "poster_path": "/qJ2tW6WMUDux911r6m7haRef0WH.jpg", "release_date": "2008-07-16", "title": "The Dark Knight", "video": false, "vote_average": 8.517, "vote_count": 32982 }, { "adult": false, "backdrop_path": "/tyBkBHKDrJyVUeCs550kMr61jnq.jpg", "genre_ids": [10749, 27], "id": 6114, "media_type": "movie", "original_language": "en", "original_title": "Bram Stoker's Dracula", "overview": "In 19th century England, Count Dracula travels to London and meets Mina Harker, a young woman who appears as the reincarnation of his lost love.", "popularity": 37.916, "poster_path": "/scFDS0U5uYAjcVTyjNc7GmcZw1q.jpg", "release_date": "1992-11-13", "title": "Bram Stoker's Dracula", "video": false, "vote_average": 7.45, "vote_count": 5109 } ], "known_for_department": "Acting", "name": "Gary Oldman", "original_name": "Gary Oldman", "popularity": 225.51, "profile_path": "/2v9FVVBUrrkW2m3QOcYkuhq9A6o.jpg" }, { "adult": false, "gender": 0, "id": 4504024, "known_for": [ { "adult": false, "backdrop_path": "/3HaqAPZ0C8n6Hd5T86U53yJlBAN.jpg", "genre_ids": [18, 10751], "id": 1232449, "media_type": "movie", "original_language": "nl", "original_title": "Young Hearts", "overview": "Fourteen-year-old Elias increasingly feels like an outsider in his village. When he meets his new neighbour of the same age, Alexander, Elias is confronted with his burgeoning sexuality.", "popularity": 168.625, "poster_path": "/vJDvAdRfUL6NR9VG1YVamAS105a.jpg", "release_date": "2024-10-26", "title": "Young Hearts", "video": false, "vote_average": 8, "vote_count": 11 } ], "known_for_department": "Acting", "name": "Marius De Saeger", "original_name": "Marius De Saeger", "popularity": 159.003, "profile_path": "/7fQpRl1MWprGgQ0RKStmmGs386s.jpg" }, { "adult": false, "gender": 1, "id": 115440, "known_for": [ { "adult": false, "backdrop_path": "/9KnIzPCv9XpWA0MqmwiKBZvV1Sj.jpg", "first_air_date": "2019-06-16", "genre_ids": [18], "id": 85552, "media_type": "tv", "name": "Euphoria", "origin_country": ["US"], "original_language": "en", "original_name": "Euphoria", "overview": "A group of high school students navigate love and friendships in a world of drugs, sex, trauma, and social media.", "popularity": 256.817, "poster_path": "/3Q0hd3heuWwDWpwcDkhQOA6TYWI.jpg", "vote_average": 8.3, "vote_count": 9790 }, { "adult": false, "backdrop_path": "/j9eOeLlTGoHoM8BNUJVNyWmIvCi.jpg", "genre_ids": [10749, 35], "id": 1072790, "media_type": "movie", "original_language": "en", "original_title": "Anyone But You", "overview": "After an amazing first date, Bea and Ben’s fiery attraction turns ice cold — until they find themselves unexpectedly reunited at a destination wedding in Australia. So they do what any two mature adults would do: pretend to be a couple.", "popularity": 85.988, "poster_path": "/5qHoazZiaLe7oFBok7XlUhg96f2.jpg", "release_date": "2023-12-21", "title": "Anyone But You", "video": false, "vote_average": 6.944, "vote_count": 2236 }, { "adult": false, "backdrop_path": "/6bGmHzPEq2n6g17moqWwDpJBEom.jpg", "genre_ids": [27, 9648, 53], "id": 1041613, "media_type": "movie", "original_language": "en", "original_title": "Immaculate", "overview": "An American nun embarks on a new journey when she joins a remote convent in the Italian countryside. However, her warm welcome quickly turns into a living nightmare when she discovers her new home harbours a sinister secret and unspeakable horrors.", "popularity": 63.746, "poster_path": "/fdZpvODTX5wwkD0ikZNaClE4AoW.jpg", "release_date": "2024-03-20", "title": "Immaculate", "video": false, "vote_average": 6.258, "vote_count": 1245 } ], "known_for_department": "Acting", "name": "Sydney Sweeney", "original_name": "Sydney Sweeney", "popularity": 134.878, "profile_path": "/qYiaSl0Eb7G3VaxOg8PxExCFwon.jpg" }, { "adult": false, "gender": 1, "id": 92614, "known_for": [ { "adult": false, "backdrop_path": "/s3FDBLH4qc1IcjexB05Qvbn3wxO.jpg", "genre_ids": [28, 80, 53], "id": 449443, "media_type": "movie", "original_language": "en", "original_title": "Den of Thieves", "overview": "A gritty crime saga which follows the lives of an elite unit of the LA County Sheriff's Dept. and the state's most successful bank robbery crew as the outlaws plan a seemingly impossible heist on the Federal Reserve Bank.", "popularity": 47.529, "poster_path": "/dAP5NpkrMMczir5dUPjRR6ywqgz.jpg", "release_date": "2018-01-18", "title": "Den of Thieves", "video": false, "vote_average": 6.814, "vote_count": 2845 }, { "adult": false, "backdrop_path": "/hu4psJoKxDYezvvS4GlLF531fom.jpg", "genre_ids": [14, 28, 53], "id": 400106, "media_type": "movie", "original_language": "en", "original_title": "Bright", "overview": "In an alternate present-day where magical creatures live among us, two L.A. cops become embroiled in a prophesied turf battle.", "popularity": 19.54, "poster_path": "/whkT53Sv2vKAUiknQ13pqcWaPXB.jpg", "release_date": "2017-12-22", "title": "Bright", "video": false, "vote_average": 6.152, "vote_count": 5621 }, { "adult": false, "backdrop_path": "/mXmvN6drkdU1PWFF92AGklEVIa3.jpg", "genre_ids": [14, 28, 12, 27], "id": 274854, "media_type": "movie", "original_language": "en", "original_title": "The Last Witch Hunter", "overview": "The modern world holds many secrets, but by far the most astounding is that witches still live among us; vicious supernatural creatures intent on unleashing the Black Death upon the world and putting an end to the human race once and for all. Armies of witch hunters have battled this unnatural enemy for centuries, including Kaulder, a valiant warrior who many years ago slayed the all-powerful Witch Queen, decimating her followers in the process. In the moments right before her death, the Queen cursed Kaulder with immortality, forever separating him from his beloved wife and daughter. Today, Kaulder is the last living hunter who has spent his immortal life tracking down rogue witches, all the while yearning for his long-lost family.", "popularity": 29.91, "poster_path": "/qXvOpA2nhK5HQ6I95sN3nnMtfjH.jpg", "release_date": "2015-10-21", "title": "The Last Witch Hunter", "video": false, "vote_average": 5.974, "vote_count": 3581 } ], "known_for_department": "Acting", "name": "Dawn Olivieri", "original_name": "Dawn Olivieri", "popularity": 119.072, "profile_path": "/tet7ZVbzhLWwT44m9j94folyl5N.jpg" }, { "adult": false, "gender": 1, "id": 4103293, "known_for": [ { "adult": false, "backdrop_path": "/mBc6RB7VajfykLqGx0ue7qatXky.jpg", "genre_ids": [18], "id": 1266990, "media_type": "movie", "original_language": "tl", "original_title": "Kulong", "overview": "Vivamax beauties Jenn Rosa, Caris Manzano and Aica Veloso come together as friends who lock themselves in at a resort to write a sexy screenplay for a contest. But how can they write a sexy screenplay when none of them has had any sex for quite some time?", "popularity": 14.791, "poster_path": "/AnzrE2WHg3DtZrtmB9AnEbAh17m.jpg", "release_date": "2024-05-24", "title": "Kulong", "video": false, "vote_average": 5.5, "vote_count": 2 }, { "adult": false, "backdrop_path": "/qSVIlRv80dFtIcmb6CAT7WDtlHZ.jpg", "genre_ids": [18], "id": 1241755, "media_type": "movie", "original_language": "tl", "original_title": "TL", "overview": "Brenda, a top agent in a BPO company, is always overlooked for promotion. But not this time; as she gets more than intimate with her TL. Is her long awaited position within her reach? Or did she just put herself in a bad situation?", "popularity": 14.124, "poster_path": "/sze10NcTe4gAL7q7Fr8nORRh78Y.jpg", "release_date": "2024-03-30", "title": "TL", "video": false, "vote_average": 7, "vote_count": 1 }, { "adult": false, "backdrop_path": "/qFRqnJ4oSnl2mqx6XyPClbwB2Tu.jpg", "genre_ids": [18], "id": 1137843, "media_type": "movie", "original_language": "tl", "original_title": "Bisyo!", "overview": "James wants his way out of a syndicate and dreams to start his own business. But his dreams turn to nightmare because getting out of the group will never be easy.", "popularity": 1.102, "poster_path": "/8H33dN7Xmd6OmkRwfsWHwRKIF53.jpg", "release_date": "2023-07-21", "title": "Bisyo!", "video": false, "vote_average": 2.7, "vote_count": 3 } ], "known_for_department": "Acting", "name": "Jenn Rosa", "original_name": "Jenn Rosa", "popularity": 116.533, "profile_path": "/f2EItX0kOXJjDzZFZSFmGOVS8HB.jpg" }, { "adult": false, "gender": 1, "id": 1831272, "known_for": [ { "adult": false, "backdrop_path": "/Z1JeznJExodyj0iUbL1wgkts88.jpg", "genre_ids": [18, 80, 53], "id": 505192, "media_type": "movie", "original_language": "ja", "original_title": "万引き家族", "overview": "After one of their shoplifting sessions, Osamu and his son come across a little girl in the freezing cold. At first reluctant to shelter the girl, Osamu’s wife agrees to take care of her after learning of the hardships she faces. Although the family is poor, barely making enough money to survive through petty crime, they seem to live happily together until an unforeseen incident reveals hidden secrets, testing the bonds that unite them.", "popularity": 22.358, "poster_path": "/4nfRUOv3LX5zLn98WS1WqVBk9E9.jpg", "release_date": "2018-06-02", "title": "Shoplifters", "video": false, "vote_average": 7.852, "vote_count": 2039 }, { "adult": false, "backdrop_path": "/vLGFd5s72tdmokwKRiKhwFHO9UC.jpg", "genre_ids": [27, 53], "id": 481899, "media_type": "movie", "original_language": "ja", "original_title": "劇場版 屍囚獄 結ノ篇", "overview": "They thought they were coming to study a mysterious town hidden in the mountains of Japan. Instead, they’ve discovered that their Professor brought them to Yasaka for a much darker purpose. Now Mikoto and the other girls are trapped in a monstrous nightmare. As the villagers become increasingly more insane, the college students find themselves at the center of arcane rituals focused on blood and rotting flesh. Their only chance is to escape, but their captors are far too numerous and know the lay of the local land far too well.", "popularity": 8.934, "poster_path": "/bAUjXSpnizDkSg4qa08PWuesrVV.jpg", "release_date": "2017-06-10", "title": "Corpse Prison: Part 2", "video": false, "vote_average": 6.4, "vote_count": 25 }, { "adult": false, "backdrop_path": "/68afPR6EPV5wkE85whdO6al7FUx.jpg", "genre_ids": [28], "id": 1061990, "media_type": "movie", "original_language": "ja", "original_title": "シティーハンター", "overview": "An exceptional marksman and hopeless playboy, private eye Ryo Saeba reluctantly forms an alliance with his late partner's sister to investigate his death.", "popularity": 34.494, "poster_path": "/cjQzJ9xFdaN9KAwu7HUImIgbc2Y.jpg", "release_date": "2024-04-24", "title": "City Hunter", "video": false, "vote_average": 6.503, "vote_count": 194 } ], "known_for_department": "Acting", "name": "Moemi Katayama", "original_name": "片山萌美", "popularity": 131.302, "profile_path": "/nQQQhq9cjk6VgfoarD9AnUyRbK6.jpg" }, { "adult": false, "gender": 2, "id": 81866, "known_for": [ { "adult": false, "backdrop_path": "/1RKrqGz2TwOEPNMpTMIMnG5kLJk.jpg", "genre_ids": [14, 16, 10751], "id": 8392, "media_type": "movie", "original_language": "ja", "original_title": "となりのトトロ", "overview": "Two sisters move to the country with their father in order to be closer to their hospitalized mother, and discover the surrounding trees are inhabited by Totoros, magical spirits of the forest. When the youngest runs away from home, the older sister seeks help from the spirits to find her.", "popularity": 53.014, "poster_path": "/rtGDOeG9LzoerkDGZF9dnVeLppL.jpg", "release_date": "1988-04-16", "title": "My Neighbor Totoro", "video": false, "vote_average": 8.069, "vote_count": 7971 }, { "adult": false, "backdrop_path": "/z0YhJvomqedHF85bplUJEotkN5l.jpg", "first_air_date": "2007-02-15", "genre_ids": [16, 10759, 10765], "id": 31910, "media_type": "tv", "name": "Naruto Shippūden", "origin_country": ["JP"], "original_language": "ja", "original_name": "ナルト 疾風伝", "overview": "After 2 and a half years Naruto finally returns to his village of Konoha, and sets about putting his ambitions to work. It will not be easy though as he has amassed a few more dangerous enemies, in the likes of the shinobi organization; Akatsuki.", "popularity": 241.305, "poster_path": "/kV27j3Nz4d5z8u6mN3EJw9RiLg2.jpg", "vote_average": 8.5, "vote_count": 8143 }, { "adult": false, "backdrop_path": "/sDSdbBG0W5dJ74V3zFI4v68umFn.jpg", "first_air_date": "2007-04-01", "genre_ids": [16, 10759, 10765], "id": 21729, "media_type": "tv", "name": "Gurren Lagann", "origin_country": ["JP"], "original_language": "ja", "original_name": "天元突破グレンラガン", "overview": "In the distant future, mankind has lived quietly and restlessly underground for hundreds of years, subject to earthquakes and cave-ins. Living in one such village are 2 young men: one named Simon who is shy and naïve, and the other named Kamina who believes in the existence of a “surface” world above their heads.", "popularity": 72.806, "poster_path": "/jLSe0OgbpXsHl5gUMF2iU3H4Rrq.jpg", "vote_average": 8.173, "vote_count": 493 } ], "known_for_department": "Acting", "name": "Daiki Nakamura", "original_name": "中村大樹", "popularity": 142.111, "profile_path": "/c4mmhN3Sq8YYFT2CuOpgBP0pCPb.jpg" }, { "adult": false, "gender": 1, "id": 572043, "known_for": [ { "adult": false, "backdrop_path": "/tkuVd1LYyltRdiWO50kJ5lc4J9V.jpg", "genre_ids": [14, 28, 12, 18], "id": 611698, "media_type": "movie", "original_language": "zh", "original_title": "刺杀小说家", "overview": "Kongwen Lu is the author of a fantasy novel series following a heroic teenager, also named Kongwen, on a quest to end the tyrannical rule of Lord Redmane, under the guidance of a Black Armor. But through a strange twist of fate, the fantasy world of the novel begins to impact life in the real world, leading Guan Ning to accept a mission from Tu Ling to kill the author.", "popularity": 20.841, "poster_path": "/7hEhhmAF8Tr7g95fkbuxDpeR27b.jpg", "release_date": "2021-02-12", "title": "A Writer's Odyssey", "video": false, "vote_average": 7.115, "vote_count": 299 }, { "adult": false, "backdrop_path": "/lKilKeX1rlIhRcY4xQPP4bmuct9.jpg", "genre_ids": [16, 14, 18, 878], "id": 369552, "media_type": "movie", "original_language": "zh", "original_title": "爵迹", "overview": "Based on the novel of the same name, the film depicts the endless battles of four kingdoms as they fight for power and domination of the one ultimate realm.Based on his 2 beloved fantasy novels with 6 million copies sold, L.O.R.D is acclaimed writer and director Guo Jingming’s follow up to his Tiny Times films. The action-adventure odyssey is set in a world of warring Sorcerers, Lords and Beasts. The first CGI Film to come from China", "popularity": 10.194, "poster_path": "/qIUDi1XDAREkarkwNzOOBgUzqyC.jpg", "release_date": "2016-09-29", "title": "L.O.R.D: Legend of Ravaging Dynasties", "video": false, "vote_average": 6.981, "vote_count": 132 }, { "adult": false, "backdrop_path": "/f2fWG89GPSe31ymp6pqJANfjbit.jpg", "genre_ids": [28, 878], "id": 457832, "media_type": "movie", "original_language": "zh", "original_title": "逆时营救", "overview": "In 2025, a scientist on the verge of making a major discovery related to time travel is suddenly put in peril when a rival kidnaps her young son and demands a hefty ransom: her entire research.", "popularity": 9.822, "poster_path": "/zwTonDtQstoMQHYEBCz8x8RvBJJ.jpg", "release_date": "2017-06-28", "title": "Reset", "video": false, "vote_average": 7.01, "vote_count": 102 } ], "known_for_department": "Acting", "name": "Yang Mi", "original_name": "杨幂", "popularity": 160.191, "profile_path": "/6RezRxlQBsYmlotybR3q7riSrvV.jpg" }, { "adult": false, "gender": 2, "id": 3103725, "known_for": [ { "adult": false, "backdrop_path": "/yYQDu8yX2zZaCa1hUWD24jq3JRu.jpg", "genre_ids": [35, 14], "id": 1097870, "media_type": "movie", "original_language": "en", "original_title": "Dear Santa", "overview": "Likeable 6th grader Liam writes to Santa asking him to prove that he's real. But Liam is dyslexic and accidentally sends his letter to Satan instead, who shows up at Liam's house, excited to have his first fanboy letter and wanting a little of Liam's soul.", "popularity": 374.634, "poster_path": "/fRbDHbGBXg6kwQYr3CRYeKPJW5q.jpg", "release_date": "2024-11-24", "title": "Dear Santa", "video": false, "vote_average": 6.616, "vote_count": 125 }, { "adult": false, "backdrop_path": "/66kNCeI5ApO0XAuyDqmdPIyQHkY.jpg", "genre_ids": [35, 28, 80], "id": 877817, "media_type": "movie", "original_language": "en", "original_title": "Wolfs", "overview": "Hired to cover up a high-profile crime, a fixer soon finds his night spiralling out of control when he's forced to work with an unexpected counterpart.", "popularity": 109.516, "poster_path": "/vOX1Zng472PC2KnS0B9nRfM8aaZ.jpg", "release_date": "2024-09-20", "title": "Wolfs", "video": false, "vote_average": 6.6, "vote_count": 785 }, { "adult": false, "backdrop_path": "/6E0hbesJfpekAqL2AeHYukkHcbD.jpg", "first_air_date": "2024-12-02", "genre_ids": [10759, 10765], "id": 202879, "media_type": "tv", "name": "Star Wars: Skeleton Crew", "origin_country": ["US"], "original_language": "en", "original_name": "Star Wars: Skeleton Crew", "overview": "Four ordinary kids search for their home planet after getting lost in the Star Wars galaxy.", "popularity": 598.285, "poster_path": "/srQbJhLRKoAwRrNN5ga7webPHbC.jpg", "vote_average": 7.2, "vote_count": 79 } ], "known_for_department": "Acting", "name": "Robert Timothy Smith", "original_name": "Robert Timothy Smith", "popularity": 106.298, "profile_path": "/7Qq9fqLQGbMxYjw5tVGYEuYW7Ye.jpg" }, { "adult": false, "gender": 1, "id": 4095744, "known_for": [ { "adult": false, "backdrop_path": "/7B72d6f09eIifSgkpCkzwkv8fle.jpg", "genre_ids": [18, 10749], "id": 1002398, "media_type": "movie", "original_language": "tl", "original_title": "Donselya", "overview": "Iris, an 18-year old virgin marries Joaquin, a rich widower, because of money. However, when he learns that Iris is not really a virgin, their honeymoon turns to a bloodbath.", "popularity": 23.131, "poster_path": "/iVS3ZiPsKy8Hhc5Dipqgrjmoj2b.jpg", "release_date": "2024-10-29", "title": "Donselya", "video": false, "vote_average": 6.2, "vote_count": 10 }, { "adult": false, "backdrop_path": "/uUJuPiZh1QfIeTa1GeLWqnEkaP2.jpg", "genre_ids": [18], "id": 1302011, "media_type": "movie", "original_language": "tl", "original_title": "Init", "overview": "When a young barrio lass moves in to the city to study, she lives in a boarding house with other college students. Unknown to them, behind her shy and timid personality is a woman with insatiable hunger for sex.", "popularity": 32.24, "poster_path": "/fGY13rtdRzFqTkDMi5JayUWg6vL.jpg", "release_date": "2024-07-30", "title": "Init", "video": false, "vote_average": 5, "vote_count": 4 }, { "adult": false, "backdrop_path": "/4GHPT4glMQHPCke2DNigRqZ6KqH.jpg", "genre_ids": [18], "id": 1226299, "media_type": "movie", "original_language": "tl", "original_title": "Dilig", "overview": "About to get married to an old, wealthy businessman, Resa enlists the help of gardener Otso to seduce her fiancé’s daughter, Katelyn, and record his sexploits with her in order to get her disowned.", "popularity": 19.846, "poster_path": "/lDn02aAZFUb7JpM7l7iuHdbWEHH.jpg", "release_date": "2024-01-30", "title": "Dilig", "video": false, "vote_average": 4.3, "vote_count": 3 } ], "known_for_department": "Acting", "name": "Dyessa Garcia", "original_name": "Dyessa Garcia", "popularity": 89.074, "profile_path": "/xak9L0fkIOkjSwJpz3SWLl94tVP.jpg" }, { "adult": false, "gender": 1, "id": 224513, "known_for": [ { "adult": false, "backdrop_path": "/ilRyazdMJwN05exqhwK4tMKBYZs.jpg", "genre_ids": [878, 18], "id": 335984, "media_type": "movie", "original_language": "en", "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.", "popularity": 112.281, "poster_path": "/gajva2L0rPYkEWjzgFlBXCAVBE5.jpg", "release_date": "2017-10-04", "title": "Blade Runner 2049", "video": false, "vote_average": 7.57, "vote_count": 13654 }, { "adult": false, "backdrop_path": "/4HWAQu28e2yaWrtupFPGFkdNU7V.jpg", "genre_ids": [35, 80, 9648], "id": 546554, "media_type": "movie", "original_language": "en", "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.", "popularity": 52.928, "poster_path": "/pThyQovXQrw2m0s9x82twj48Jq4.jpg", "release_date": "2019-11-27", "title": "Knives Out", "video": false, "vote_average": 7.846, "vote_count": 12386 }, { "adult": false, "backdrop_path": "/oNoprEND25zXR6Fns8cIZUkuoMc.jpg", "genre_ids": [35, 80, 18], "id": 308266, "media_type": "movie", "original_language": "en", "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.", "popularity": 37.98, "poster_path": "/mDcPRjZC1bb6LavFU3gwsWdVfCM.jpg", "release_date": "2016-08-18", "title": "War Dogs", "video": false, "vote_average": 6.922, "vote_count": 4900 } ], "known_for_department": "Acting", "name": "Ana de Armas", "original_name": "Ana de Armas", "popularity": 122.272, "profile_path": "/5Qne374OM0ewMM7uSN9eq9jNrWq.jpg" }, { "adult": false, "gender": 2, "id": 81350, "known_for": [ { "adult": false, "backdrop_path": "/cDyYWcavuvNKtf7VpNR86nWh5XF.jpg", "genre_ids": [878, 12, 9648], "id": 36683, "media_type": "movie", "original_language": "ja", "original_title": "20世紀少年 -第1章- 終わりの始まり", "overview": "In 1969, Kenji, an elementary school kid and his friends built a secret base during their summer holidays. They fantasized that they had to fight villains who were out to conquer the world and wrote them in the Book of Prophecies. Years later in 1997, Kenji becomes a convenience store manager and leads a regular life after giving up his dreams to become a rock star. His boring life is suddenly turned upside down when his old classmate dies mysteriously and an entire family in the neighbourhood disappears. At the same time, a religious cult and its mysterious leader, Friend emerges and a strange chain of events duplicating exactly the events described in the Book of Prophecies follow. Is this the beginning of the end of the world? Who is Friend?", "popularity": 10.678, "poster_path": "/nb1fd4nZyBLUhkjnAQx5607aBMq.jpg", "release_date": "2008-08-19", "title": "20th Century Boys: Beginning of the End", "video": false, "vote_average": 6.7, "vote_count": 96 }, { "adult": false, "backdrop_path": "/Ad1D9qkQqICgWrnTFEmciQAgOY6.jpg", "genre_ids": [878, 12, 9648], "id": 25114, "media_type": "movie", "original_language": "ja", "original_title": "20世紀少年 第2章 最後の希望", "overview": "Set 15 years after \"Twentieth Century Boys,\" Kanna (Airi Taira) reunites with several main characters from the first film in an attempt to stop Friend's increasing influence over the world and continued plans to eliminate humanity, as detailed in the New Book of Prophecy.", "popularity": 6.817, "poster_path": "/ej5rGwbyybno1pKDqqTLy7Gwc1T.jpg", "release_date": "2009-01-30", "title": "20th Century Boys 2: The Last Hope", "video": false, "vote_average": 6.6, "vote_count": 66 }, { "adult": false, "backdrop_path": "/7QtKvkNypPoVSi1n4FNmxluOLB4.jpg", "genre_ids": [12, 9648, 878], "id": 39123, "media_type": "movie", "original_language": "ja", "original_title": "20世紀少年 ぼくらの旗", "overview": "The final showdown, and the final reveal. who is Friend? How can he be stopped?", "popularity": 8.55, "poster_path": "/zf5wTUqciMcSEUjPF5E9O8fBNo9.jpg", "release_date": "2009-08-19", "title": "20th Century Boys 3: Redemption", "video": false, "vote_average": 6.7, "vote_count": 60 } ], "known_for_department": "Acting", "name": "Toshiaki Karasawa", "original_name": "唐沢寿明", "popularity": 118.235, "profile_path": "/vB73o5XHjSHLpCwxRl83uFNAicP.jpg" }, { "adult": false, "gender": 1, "id": 2113005, "known_for": [ { "adult": false, "backdrop_path": "/wIrqeoJHYtZmneqIufPtcOHMjOg.jpg", "genre_ids": [878, 28, 18], "id": 535167, "media_type": "movie", "original_language": "zh", "original_title": "流浪地球", "overview": "When the Sun begins to expand in such a way that it will inevitably engulf and destroy the Earth in a hundred years, united mankind finds a way to avoid extinction by propelling the planet out of the Solar System using gigantic engines, moving it to a new home located four light years away, an epic journey that will last thousands of years.", "popularity": 20.842, "poster_path": "/AtWfsYZGW69YcCYOaVZ0EKNN14v.jpg", "release_date": "2019-02-05", "title": "The Wandering Earth", "video": false, "vote_average": 6.61, "vote_count": 957 }, { "adult": false, "backdrop_path": "/wNYUv8u5Z0AI4dkyxGyet7eLEWm.jpg", "genre_ids": [18], "id": 945675, "media_type": "movie", "original_language": "zh", "original_title": "一周的朋友", "overview": "A high school student suffers from a strange amnesia, causing her memories to only last a week. After she befriends a new student, his kindness and persistence make her gradually open up.", "popularity": 49.029, "poster_path": "/wjYcNLVwFpSAGAPKgo0NIwhfWJS.jpg", "release_date": "2022-06-18", "title": "One Week Friends", "video": false, "vote_average": 5.776, "vote_count": 114 }, { "adult": false, "backdrop_path": "/diTz0umqocpeFa0g4Q4DiMw84DF.jpg", "first_air_date": "2022-01-11", "genre_ids": [18, 9648], "id": 155441, "media_type": "tv", "name": "Reset", "origin_country": ["CN"], "original_language": "zh", "original_name": "开端", "overview": "The lives of a college student and a video game designer are kept being reset after an explosion on a bus. During each reset, they have to work together to find out what the reason for the explosion is. Will these two be able to save themselves and their fellow passengers? Will they be able to close the time-loop?", "popularity": 19.29, "poster_path": "/t95T31wxF0ElSwUE4U8AnOSAmF3.jpg", "vote_average": 8.058, "vote_count": 95 } ], "known_for_department": "Acting", "name": "Zhao Jinmai", "original_name": "赵今麦", "popularity": 144.176, "profile_path": "/obAzDuyEUa5Yq4byYhRzziI7W5c.jpg" }, { "adult": false, "gender": 2, "id": 3032312, "known_for": [ { "adult": false, "backdrop_path": "/gCp0teY59mPiWMIRrPkeyCZt6H3.jpg", "first_air_date": "2022-01-07", "genre_ids": [10764], "id": 124031, "media_type": "tv", "name": "Hype House", "origin_country": ["US"], "original_language": "en", "original_name": "Hype House", "overview": "From humble beginnings to overnight fame, these are the stories of the most popular personalities on social media as they come into their own, fall in love and tackle new chapters in their lives.", "popularity": 4.393, "poster_path": "/sIppViBWffdcN2m6ffOsl0NKhHw.jpg", "vote_average": 4.8, "vote_count": 11 }, { "adult": false, "backdrop_path": "/68xjylXPOclGga7SJ6vhEIHv0ZL.jpg", "first_air_date": "2021-09-03", "genre_ids": [10764], "id": 130392, "media_type": "tv", "name": "The D'Amelio Show", "origin_country": ["US"], "original_language": "en", "original_name": "The D'Amelio Show", "overview": "From relative obscurity and a seemingly normal life, to overnight success and thrust into the Hollywood limelight overnight, the D’Amelios are faced with new challenges and opportunities they could not have imagined.", "popularity": 12.911, "poster_path": "/1TMOWefVY5854oxEI0I6yLLMwlR.jpg", "vote_average": 5, "vote_count": 681 }, { "adult": false, "backdrop_path": "/xjxKYSGycoUQWZ9OUr2Ou6kyIhy.jpg", "first_air_date": "2021-09-08", "genre_ids": [18, 10751, 35], "id": 130372, "media_type": "tv", "name": "Doogie Kamealoha, M.D.", "origin_country": ["US"], "original_language": "en", "original_name": "Doogie Kamealoha, M.D.", "overview": "Lahela 'Doogie' Kamealoha, a 16-year-old prodigy juggles a budding medical career and life as a teenager. With the support of her caring and comical 'ohana (family) and friends, Lahela is determined to make the most of her teenage years and forge her own path.", "popularity": 28.007, "poster_path": "/qS9NwCJDPnHWtJbgiFmpc8T90tP.jpg", "vote_average": 7.7, "vote_count": 189 } ], "known_for_department": "Acting", "name": "Noah Beck", "original_name": "Noah Beck", "popularity": 110.952, "profile_path": "/67BJ1o03CpMbRj40jjiAG13TqPe.jpg" } ]
Example:
188202
Example:
3764022
Was this page helpful?
⌘I