Recommendations
curl --request GET \
--url 'https://api.themoviedb.org/3/movie/{movie_id}/recommendations?%7B%7Bkey%7D%7D='import requests
url = "https://api.themoviedb.org/3/movie/{movie_id}/recommendations?%7B%7Bkey%7D%7D="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/movie/{movie_id}/recommendations?%7B%7Bkey%7D%7D=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.themoviedb.org/3/movie/{movie_id}/recommendations?%7B%7Bkey%7D%7D=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.themoviedb.org/3/movie/{movie_id}/recommendations?%7B%7Bkey%7D%7D="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.themoviedb.org/3/movie/{movie_id}/recommendations?%7B%7Bkey%7D%7D=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/movie/{movie_id}/recommendations?%7B%7Bkey%7D%7D=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/3V4kLQg0kSqPLctI5ziYWabAZYF.jpg",
"genre_ids": [
28,
878,
12,
53
],
"id": 912649,
"media_type": "movie",
"original_language": "en",
"original_title": "Venom: The Last Dance",
"overview": "Eddie and Venom are on the run. Hunted by both of their worlds and with the net closing in, the duo are forced into a devastating decision that will bring the curtains down on Venom and Eddie's last dance.",
"popularity": 7315.802,
"poster_path": "/aosm8NMQ3UyoBVpSxyimorCQykC.jpg",
"release_date": "2024-10-22",
"title": "Venom: The Last Dance",
"video": false,
"vote_average": 6.776,
"vote_count": 1604
},
{
"adult": false,
"backdrop_path": "/uVlUu174iiKhsUGqnOSy46eIIMU.jpg",
"genre_ids": [
18,
10749,
14
],
"id": 402431,
"media_type": "movie",
"original_language": "en",
"original_title": "Wicked",
"overview": "In the land of Oz, ostracized and misunderstood green-skinned Elphaba is forced to share a room with the popular aristocrat Glinda at Shiz University, and the two's unlikely friendship is tested as they begin to fulfill their respective destinies as Glinda the Good and the Wicked Witch of the West.",
"popularity": 676.311,
"poster_path": "/xDGbZ0JJ3mYaGKy4Nzd9Kph6M9L.jpg",
"release_date": "2024-11-20",
"title": "Wicked",
"video": false,
"vote_average": 7.6,
"vote_count": 556
},
{
"adult": false,
"backdrop_path": "/jl2YIADk391yc6Qjy9JhgCRkHJk.jpg",
"genre_ids": [
16,
18,
35
],
"id": 1064486,
"media_type": "movie",
"original_language": "en",
"original_title": "Memoir of a Snail",
"overview": "In 1970s Australia, Grace's life is troubled by misfortune and loss. After their mother dies during pregnancy, she and her twin brother, Gilbert, are raised by their paraplegic-alcoholic former juggler father, Percy. Despite a life filled with love, tragedy strikes anew when Percy passes away in his sleep. The siblings are forcibly separated and thrust into separate homes.",
"popularity": 36.64,
"poster_path": "/lWh5OlerPR1c1cfn1ZLq0lpqFds.jpg",
"release_date": "2024-10-17",
"title": "Memoir of a Snail",
"video": false,
"vote_average": 7.9,
"vote_count": 44
},
{
"adult": false,
"backdrop_path": "/4ZXzO32rKk5bSoDZA6KpTzVJA.jpg",
"genre_ids": [
16,
14
],
"id": 839033,
"media_type": "movie",
"original_language": "en",
"original_title": "The Lord of the Rings: The War of the Rohirrim",
"overview": "183 years before the events chronicled in the original trilogy, a sudden attack by Wulf, a clever and ruthless Dunlending lord seeking vengeance for the death of his father, forces Helm Hammerhand and his people to make a daring last stand in the ancient stronghold of the Hornburg. Finding herself in an increasingly desperate situation, Héra, the daughter of Helm, must summon the will to lead the resistance against a deadly enemy intent on their total destruction.",
"popularity": 299.293,
"poster_path": "/hE9SAMyMSUGAPsHUGdyl6irv11v.jpg",
"release_date": "2024-12-05",
"title": "The Lord of the Rings: The War of the Rohirrim",
"video": false,
"vote_average": 6.7,
"vote_count": 55
},
{
"adult": false,
"backdrop_path": "/dHk9ZvV12Rr7STgwEpeEYKGFGZM.jpg",
"genre_ids": [
18,
10749
],
"id": 1276703,
"media_type": "movie",
"original_language": "id",
"original_title": "Cinta Tak Seindah Drama Korea",
"overview": "A young woman got a sweet surprise from her boyfriend: a trip to Seoul with her two besties who love K-Dramas much like herself. She had lots of fun, things are going so well. That is until she accidentally reunites with a past lover who never left her heart. Will this be a real-life K-Drama situation in the making?",
"popularity": 7.662,
"poster_path": "/c9zVLJU7R53K8V5WtpNXt7J0Y1X.jpg",
"release_date": "2024-12-05",
"title": "Love Unlike In K-Dramas",
"video": false,
"vote_average": 7.8,
"vote_count": 2
},
{
"adult": false,
"backdrop_path": "/nOoGIymGBNtA7AEN0B6nshSEQ1p.jpg",
"genre_ids": [
28,
80,
53
],
"id": 974453,
"media_type": "movie",
"original_language": "en",
"original_title": "Absolution",
"overview": "An aging ex-boxer gangster working as muscle for a Boston crime boss receives an upsetting diagnosis. Despite a faltering memory, he attempts to rectify the sins of his past and reconnect with his estranged children. He is determined to leave a positive legacy for his grandson, but the criminal underworld isn’t done with him and won’t loosen their grip willingly.",
"popularity": 1362.04,
"poster_path": "/cNtAslrDhk1i3IOZ16vF7df6lMy.jpg",
"release_date": "2024-10-31",
"title": "Absolution",
"video": false,
"vote_average": 6.1,
"vote_count": 133
},
{
"adult": false,
"backdrop_path": "/n4ycOGj2tRLfINTJQ3wl0vNYqpR.jpg",
"genre_ids": [
16,
14,
10751,
12,
35
],
"id": 592983,
"media_type": "movie",
"original_language": "en",
"original_title": "Spellbound",
"overview": "When a powerful spell turns her parents into giant monsters, a teenage princess must journey into the wild to reverse the curse before it's too late.",
"popularity": 374.008,
"poster_path": "/xFSIygDiX70Esp9dheCgGX0Nj77.jpg",
"release_date": "2024-11-22",
"title": "Spellbound",
"video": false,
"vote_average": 6.893,
"vote_count": 149
},
{
"adult": false,
"backdrop_path": "/iR79ciqhtaZ9BE7YFA1HpCHQgX4.jpg",
"genre_ids": [
27,
9648
],
"id": 1100782,
"media_type": "movie",
"original_language": "en",
"original_title": "Smile 2",
"overview": "About to embark on a new world tour, global pop sensation Skye Riley begins experiencing increasingly terrifying and inexplicable events. Overwhelmed by the escalating horrors and the pressures of fame, Skye is forced to face her dark past to regain control of her life before it spirals out of control.",
"popularity": 722.663,
"poster_path": "/ht8Uv9QPv9y7K0RvUyJIaXOZTfd.jpg",
"release_date": "2024-10-16",
"title": "Smile 2",
"video": false,
"vote_average": 6.6,
"vote_count": 940
},
{
"adult": false,
"backdrop_path": "/rWs3Q9bT7zCH6t004z67UGuWUwu.jpg",
"genre_ids": [
16,
35,
10751,
14,
12
],
"id": 645757,
"media_type": "movie",
"original_language": "en",
"original_title": "That Christmas",
"overview": "It's an unforgettable Christmas for the townsfolk of Wellington-on-Sea when the worst snowstorm in history alters everyone's plans — including Santa's.",
"popularity": 1081.812,
"poster_path": "/bX6dx2U4hOk1esI7mYwtD3cEKdC.jpg",
"release_date": "2024-11-27",
"title": "That Christmas",
"video": false,
"vote_average": 7.5,
"vote_count": 134
},
{
"adult": false,
"backdrop_path": "/a5OqX7uXb8MI0WB3HbCyA0Wn3gI.jpg",
"genre_ids": [
10749,
35,
18
],
"id": 1234811,
"media_type": "movie",
"original_language": "en",
"original_title": "Our Little Secret",
"overview": "After discovering their significant others are siblings, two resentful exes must spend Christmas under one roof — while hiding their romantic history.",
"popularity": 145.607,
"poster_path": "/7isqmWUryG2xksrw0E75m3vYTFd.jpg",
"release_date": "2024-11-27",
"title": "Our Little Secret",
"video": false,
"vote_average": 6.3,
"vote_count": 325
},
{
"adult": false,
"backdrop_path": "/v9Du2HC3hlknAvGlWhquRbeifwW.jpg",
"genre_ids": [
28,
12,
53
],
"id": 539972,
"media_type": "movie",
"original_language": "en",
"original_title": "Kraven the Hunter",
"overview": "Kraven Kravinoff's complex relationship with his ruthless gangster father, Nikolai, starts him down a path of vengeance with brutal consequences, motivating him to become not only the greatest hunter in the world, but also one of its most feared.",
"popularity": 1177.335,
"poster_path": "/i47IUSsN126K11JUzqQIOi1Mg1M.jpg",
"release_date": "2024-12-11",
"title": "Kraven the Hunter",
"video": false,
"vote_average": 5.7,
"vote_count": 92
},
{
"adult": false,
"backdrop_path": "/evFChfYeD2LqobEJf8iQsrYcGTw.jpg",
"genre_ids": [
28,
80,
53
],
"id": 1182387,
"media_type": "movie",
"original_language": "en",
"original_title": "Armor",
"overview": "Armored truck security guard James Brody is working with his son Casey transporting millions of dollars between banks when a team of thieves led by Rook orchestrate a takeover of their truck to seize the riches. Following a violent car chase, Rook soon has the armored truck surrounded and James and Casey find themselves cornered onto a decrepit bridge.",
"popularity": 1060.595,
"poster_path": "/pnXLFioDeftqjlCVlRmXvIdMsdP.jpg",
"release_date": "2024-10-30",
"title": "Armor",
"video": false,
"vote_average": 5.507,
"vote_count": 74
},
{
"adult": false,
"backdrop_path": "/8GULo7TCCHAJO18kvUpXtmrov1f.jpg",
"genre_ids": [
35
],
"id": 617932,
"media_type": "movie",
"original_language": "en",
"original_title": "Barbie",
"overview": "Barbie comes home from shopping. She takes her groceries out of the bag and unwraps a little Barbie doll. She fries up the Barbie doll and eats it.",
"popularity": 0.959,
"poster_path": "/A1NvddoqyBjaIfEHDaffIJFGxcM.jpg",
"release_date": "1977-01-01",
"title": "Barbie",
"video": false,
"vote_average": 6.6,
"vote_count": 26
},
{
"adult": false,
"backdrop_path": "/498VjeTVd051iuEducr5MkZYKKf.jpg",
"genre_ids": [
10749,
35,
10770
],
"id": 1100642,
"media_type": "movie",
"original_language": "en",
"original_title": "'Twas the Text Before Christmas",
"overview": "Addie is a New York City chiropractor mistakenly receives a text from “Nana.” The accidental text turns into a loving friendship between the matronly Nana and Addie who now communicate regularly. Nana invites Addie to spend the holiday in Vermont. It is picture-postcard perfect and exactly as Nana described except for one surprise. Nana’s single son, James, a traveling doctor is also home for the holidays. Over three consecutive years, James and Addie are together during the holidays, though it isn’t until they are both single that they begin to see each other in a different light.",
"popularity": 85.049,
"poster_path": "/e1fvQdD63RP2MS9jCB8jzg7fkdr.jpg",
"release_date": "2023-10-21",
"title": "'Twas the Text Before Christmas",
"video": false,
"vote_average": 6.5,
"vote_count": 58
},
{
"adult": false,
"backdrop_path": "/jUYn9ytvxrquviR36OD6n2EqBgW.jpg",
"genre_ids": [
35,
18
],
"id": 1203236,
"media_type": "movie",
"original_language": "en",
"original_title": "Nutcrackers",
"overview": "Just as Mike is on the heels of closing the biggest deal of his career, he's pulled away from his bachelor life in the big city to a farm in rural Ohio in order to help his recently orphaned nephews find a new home.",
"popularity": 153.873,
"poster_path": "/yqKKhbaofSHfqHGNYHz9yqSPvYR.jpg",
"release_date": "2024-09-05",
"title": "Nutcrackers",
"video": false,
"vote_average": 5.7,
"vote_count": 59
},
{
"adult": false,
"backdrop_path": "/kwXycPsLA6SV3KUOagn343TtMOf.jpg",
"genre_ids": [
28,
878,
53
],
"id": 791042,
"media_type": "movie",
"original_language": "en",
"original_title": "Levels",
"overview": "After witnessing his girlfriend's murder, a man risks everything - including reality itself - to discover the truth.",
"popularity": 490.511,
"poster_path": "/y1xm0jMIlx9Oo2a3jWNyLGm43sJ.jpg",
"release_date": "2024-11-01",
"title": "Levels",
"video": false,
"vote_average": 5.8,
"vote_count": 39
},
{
"adult": false,
"backdrop_path": "/us8T8e2bSkyORss8xanwCDZCZxG.jpg",
"genre_ids": [
10749,
35
],
"id": 999890,
"media_type": "movie",
"original_language": "en",
"original_title": "Sweethearts",
"overview": "Two college freshmen who decided to stick with their high school sweethearts have to pull a 'Turkey Dump' and break up with them over 'Drunksgiving' the one chaotic night before Thanksgiving in their hometown that puts their codependent friendship to the test.",
"popularity": 41.776,
"poster_path": "/890UDXYal6i8A9NbMV5TAxZpOzH.jpg",
"release_date": "2024-11-27",
"title": "Sweethearts",
"video": false,
"vote_average": 5.5,
"vote_count": 33
},
{
"adult": false,
"backdrop_path": "/hyvDUr0OK3JSSU27KcnU2Mvpnuw.jpg",
"genre_ids": [
18
],
"id": 995757,
"media_type": "movie",
"original_language": "fr",
"original_title": "Le Ravissement",
"overview": "Lydia, a midwife very invested in her work, is in the middle of a breakup. At the same time, her best friend, Salomé, announces to her that she is pregnant and asks her to follow her pregnancy. The day Lydia meets Milos, a one-night stand, while she is holding her friend's baby in her arms, she sinks into a lie, at the risk of losing everything.",
"popularity": 7.963,
"poster_path": "/evcCra9puM8pkaWUTkYwuCEnb3o.jpg",
"release_date": "2023-10-11",
"title": "The Rapture",
"video": false,
"vote_average": 6.8,
"vote_count": 61
},
{
"adult": false,
"backdrop_path": "/jaRoloTuVFYYvBH5VlRBQnf2egx.jpg",
"genre_ids": [
28,
12,
35
],
"id": 1171462,
"media_type": "movie",
"original_language": "ja",
"original_title": "ゴールデンカムイ",
"overview": "On the Hokkaido frontier, a war veteran and Ainu girl race against misfits and military renegades to find treasure mapped out on tattooed outlaws.",
"popularity": 52.618,
"poster_path": "/sLcRGIJqlJeoGGk88CtA8Ida5aq.jpg",
"release_date": "2024-01-19",
"title": "Golden Kamuy",
"video": false,
"vote_average": 6.7,
"vote_count": 56
},
{
"adult": false,
"backdrop_path": "/qSTulvq8q1fpqQEM15jLdu0Wae0.jpg",
"genre_ids": [
53,
18
],
"id": 1144911,
"media_type": "movie",
"original_language": "en",
"original_title": "Skincare",
"overview": "Famed aesthetician Hope Goldman is about to take her career to the next level by launching her very own skin care line. However, she soon faces a new challenge when a rival opens a boutique directly across from her store. Suspecting that someone is trying to sabotage her, she embarks on a quest to unravel the mystery of who's trying to destroy her life.",
"popularity": 52.83,
"poster_path": "/ikPzv7el0RcBhtXj3ElCoH54icd.jpg",
"release_date": "2024-08-15",
"title": "Skincare",
"video": false,
"vote_average": 5.9,
"vote_count": 49
}
],
"total_pages": 2,
"total_results": 40
}Movies
Recommendations
This endpoint is used to get a list of similar movie recommendations.
GET
/
3
/
movie
/
{movie_id}
/
recommendations
Recommendations
curl --request GET \
--url 'https://api.themoviedb.org/3/movie/{movie_id}/recommendations?%7B%7Bkey%7D%7D='import requests
url = "https://api.themoviedb.org/3/movie/{movie_id}/recommendations?%7B%7Bkey%7D%7D="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/movie/{movie_id}/recommendations?%7B%7Bkey%7D%7D=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.themoviedb.org/3/movie/{movie_id}/recommendations?%7B%7Bkey%7D%7D=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.themoviedb.org/3/movie/{movie_id}/recommendations?%7B%7Bkey%7D%7D="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.themoviedb.org/3/movie/{movie_id}/recommendations?%7B%7Bkey%7D%7D=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/movie/{movie_id}/recommendations?%7B%7Bkey%7D%7D=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/3V4kLQg0kSqPLctI5ziYWabAZYF.jpg",
"genre_ids": [
28,
878,
12,
53
],
"id": 912649,
"media_type": "movie",
"original_language": "en",
"original_title": "Venom: The Last Dance",
"overview": "Eddie and Venom are on the run. Hunted by both of their worlds and with the net closing in, the duo are forced into a devastating decision that will bring the curtains down on Venom and Eddie's last dance.",
"popularity": 7315.802,
"poster_path": "/aosm8NMQ3UyoBVpSxyimorCQykC.jpg",
"release_date": "2024-10-22",
"title": "Venom: The Last Dance",
"video": false,
"vote_average": 6.776,
"vote_count": 1604
},
{
"adult": false,
"backdrop_path": "/uVlUu174iiKhsUGqnOSy46eIIMU.jpg",
"genre_ids": [
18,
10749,
14
],
"id": 402431,
"media_type": "movie",
"original_language": "en",
"original_title": "Wicked",
"overview": "In the land of Oz, ostracized and misunderstood green-skinned Elphaba is forced to share a room with the popular aristocrat Glinda at Shiz University, and the two's unlikely friendship is tested as they begin to fulfill their respective destinies as Glinda the Good and the Wicked Witch of the West.",
"popularity": 676.311,
"poster_path": "/xDGbZ0JJ3mYaGKy4Nzd9Kph6M9L.jpg",
"release_date": "2024-11-20",
"title": "Wicked",
"video": false,
"vote_average": 7.6,
"vote_count": 556
},
{
"adult": false,
"backdrop_path": "/jl2YIADk391yc6Qjy9JhgCRkHJk.jpg",
"genre_ids": [
16,
18,
35
],
"id": 1064486,
"media_type": "movie",
"original_language": "en",
"original_title": "Memoir of a Snail",
"overview": "In 1970s Australia, Grace's life is troubled by misfortune and loss. After their mother dies during pregnancy, she and her twin brother, Gilbert, are raised by their paraplegic-alcoholic former juggler father, Percy. Despite a life filled with love, tragedy strikes anew when Percy passes away in his sleep. The siblings are forcibly separated and thrust into separate homes.",
"popularity": 36.64,
"poster_path": "/lWh5OlerPR1c1cfn1ZLq0lpqFds.jpg",
"release_date": "2024-10-17",
"title": "Memoir of a Snail",
"video": false,
"vote_average": 7.9,
"vote_count": 44
},
{
"adult": false,
"backdrop_path": "/4ZXzO32rKk5bSoDZA6KpTzVJA.jpg",
"genre_ids": [
16,
14
],
"id": 839033,
"media_type": "movie",
"original_language": "en",
"original_title": "The Lord of the Rings: The War of the Rohirrim",
"overview": "183 years before the events chronicled in the original trilogy, a sudden attack by Wulf, a clever and ruthless Dunlending lord seeking vengeance for the death of his father, forces Helm Hammerhand and his people to make a daring last stand in the ancient stronghold of the Hornburg. Finding herself in an increasingly desperate situation, Héra, the daughter of Helm, must summon the will to lead the resistance against a deadly enemy intent on their total destruction.",
"popularity": 299.293,
"poster_path": "/hE9SAMyMSUGAPsHUGdyl6irv11v.jpg",
"release_date": "2024-12-05",
"title": "The Lord of the Rings: The War of the Rohirrim",
"video": false,
"vote_average": 6.7,
"vote_count": 55
},
{
"adult": false,
"backdrop_path": "/dHk9ZvV12Rr7STgwEpeEYKGFGZM.jpg",
"genre_ids": [
18,
10749
],
"id": 1276703,
"media_type": "movie",
"original_language": "id",
"original_title": "Cinta Tak Seindah Drama Korea",
"overview": "A young woman got a sweet surprise from her boyfriend: a trip to Seoul with her two besties who love K-Dramas much like herself. She had lots of fun, things are going so well. That is until she accidentally reunites with a past lover who never left her heart. Will this be a real-life K-Drama situation in the making?",
"popularity": 7.662,
"poster_path": "/c9zVLJU7R53K8V5WtpNXt7J0Y1X.jpg",
"release_date": "2024-12-05",
"title": "Love Unlike In K-Dramas",
"video": false,
"vote_average": 7.8,
"vote_count": 2
},
{
"adult": false,
"backdrop_path": "/nOoGIymGBNtA7AEN0B6nshSEQ1p.jpg",
"genre_ids": [
28,
80,
53
],
"id": 974453,
"media_type": "movie",
"original_language": "en",
"original_title": "Absolution",
"overview": "An aging ex-boxer gangster working as muscle for a Boston crime boss receives an upsetting diagnosis. Despite a faltering memory, he attempts to rectify the sins of his past and reconnect with his estranged children. He is determined to leave a positive legacy for his grandson, but the criminal underworld isn’t done with him and won’t loosen their grip willingly.",
"popularity": 1362.04,
"poster_path": "/cNtAslrDhk1i3IOZ16vF7df6lMy.jpg",
"release_date": "2024-10-31",
"title": "Absolution",
"video": false,
"vote_average": 6.1,
"vote_count": 133
},
{
"adult": false,
"backdrop_path": "/n4ycOGj2tRLfINTJQ3wl0vNYqpR.jpg",
"genre_ids": [
16,
14,
10751,
12,
35
],
"id": 592983,
"media_type": "movie",
"original_language": "en",
"original_title": "Spellbound",
"overview": "When a powerful spell turns her parents into giant monsters, a teenage princess must journey into the wild to reverse the curse before it's too late.",
"popularity": 374.008,
"poster_path": "/xFSIygDiX70Esp9dheCgGX0Nj77.jpg",
"release_date": "2024-11-22",
"title": "Spellbound",
"video": false,
"vote_average": 6.893,
"vote_count": 149
},
{
"adult": false,
"backdrop_path": "/iR79ciqhtaZ9BE7YFA1HpCHQgX4.jpg",
"genre_ids": [
27,
9648
],
"id": 1100782,
"media_type": "movie",
"original_language": "en",
"original_title": "Smile 2",
"overview": "About to embark on a new world tour, global pop sensation Skye Riley begins experiencing increasingly terrifying and inexplicable events. Overwhelmed by the escalating horrors and the pressures of fame, Skye is forced to face her dark past to regain control of her life before it spirals out of control.",
"popularity": 722.663,
"poster_path": "/ht8Uv9QPv9y7K0RvUyJIaXOZTfd.jpg",
"release_date": "2024-10-16",
"title": "Smile 2",
"video": false,
"vote_average": 6.6,
"vote_count": 940
},
{
"adult": false,
"backdrop_path": "/rWs3Q9bT7zCH6t004z67UGuWUwu.jpg",
"genre_ids": [
16,
35,
10751,
14,
12
],
"id": 645757,
"media_type": "movie",
"original_language": "en",
"original_title": "That Christmas",
"overview": "It's an unforgettable Christmas for the townsfolk of Wellington-on-Sea when the worst snowstorm in history alters everyone's plans — including Santa's.",
"popularity": 1081.812,
"poster_path": "/bX6dx2U4hOk1esI7mYwtD3cEKdC.jpg",
"release_date": "2024-11-27",
"title": "That Christmas",
"video": false,
"vote_average": 7.5,
"vote_count": 134
},
{
"adult": false,
"backdrop_path": "/a5OqX7uXb8MI0WB3HbCyA0Wn3gI.jpg",
"genre_ids": [
10749,
35,
18
],
"id": 1234811,
"media_type": "movie",
"original_language": "en",
"original_title": "Our Little Secret",
"overview": "After discovering their significant others are siblings, two resentful exes must spend Christmas under one roof — while hiding their romantic history.",
"popularity": 145.607,
"poster_path": "/7isqmWUryG2xksrw0E75m3vYTFd.jpg",
"release_date": "2024-11-27",
"title": "Our Little Secret",
"video": false,
"vote_average": 6.3,
"vote_count": 325
},
{
"adult": false,
"backdrop_path": "/v9Du2HC3hlknAvGlWhquRbeifwW.jpg",
"genre_ids": [
28,
12,
53
],
"id": 539972,
"media_type": "movie",
"original_language": "en",
"original_title": "Kraven the Hunter",
"overview": "Kraven Kravinoff's complex relationship with his ruthless gangster father, Nikolai, starts him down a path of vengeance with brutal consequences, motivating him to become not only the greatest hunter in the world, but also one of its most feared.",
"popularity": 1177.335,
"poster_path": "/i47IUSsN126K11JUzqQIOi1Mg1M.jpg",
"release_date": "2024-12-11",
"title": "Kraven the Hunter",
"video": false,
"vote_average": 5.7,
"vote_count": 92
},
{
"adult": false,
"backdrop_path": "/evFChfYeD2LqobEJf8iQsrYcGTw.jpg",
"genre_ids": [
28,
80,
53
],
"id": 1182387,
"media_type": "movie",
"original_language": "en",
"original_title": "Armor",
"overview": "Armored truck security guard James Brody is working with his son Casey transporting millions of dollars between banks when a team of thieves led by Rook orchestrate a takeover of their truck to seize the riches. Following a violent car chase, Rook soon has the armored truck surrounded and James and Casey find themselves cornered onto a decrepit bridge.",
"popularity": 1060.595,
"poster_path": "/pnXLFioDeftqjlCVlRmXvIdMsdP.jpg",
"release_date": "2024-10-30",
"title": "Armor",
"video": false,
"vote_average": 5.507,
"vote_count": 74
},
{
"adult": false,
"backdrop_path": "/8GULo7TCCHAJO18kvUpXtmrov1f.jpg",
"genre_ids": [
35
],
"id": 617932,
"media_type": "movie",
"original_language": "en",
"original_title": "Barbie",
"overview": "Barbie comes home from shopping. She takes her groceries out of the bag and unwraps a little Barbie doll. She fries up the Barbie doll and eats it.",
"popularity": 0.959,
"poster_path": "/A1NvddoqyBjaIfEHDaffIJFGxcM.jpg",
"release_date": "1977-01-01",
"title": "Barbie",
"video": false,
"vote_average": 6.6,
"vote_count": 26
},
{
"adult": false,
"backdrop_path": "/498VjeTVd051iuEducr5MkZYKKf.jpg",
"genre_ids": [
10749,
35,
10770
],
"id": 1100642,
"media_type": "movie",
"original_language": "en",
"original_title": "'Twas the Text Before Christmas",
"overview": "Addie is a New York City chiropractor mistakenly receives a text from “Nana.” The accidental text turns into a loving friendship between the matronly Nana and Addie who now communicate regularly. Nana invites Addie to spend the holiday in Vermont. It is picture-postcard perfect and exactly as Nana described except for one surprise. Nana’s single son, James, a traveling doctor is also home for the holidays. Over three consecutive years, James and Addie are together during the holidays, though it isn’t until they are both single that they begin to see each other in a different light.",
"popularity": 85.049,
"poster_path": "/e1fvQdD63RP2MS9jCB8jzg7fkdr.jpg",
"release_date": "2023-10-21",
"title": "'Twas the Text Before Christmas",
"video": false,
"vote_average": 6.5,
"vote_count": 58
},
{
"adult": false,
"backdrop_path": "/jUYn9ytvxrquviR36OD6n2EqBgW.jpg",
"genre_ids": [
35,
18
],
"id": 1203236,
"media_type": "movie",
"original_language": "en",
"original_title": "Nutcrackers",
"overview": "Just as Mike is on the heels of closing the biggest deal of his career, he's pulled away from his bachelor life in the big city to a farm in rural Ohio in order to help his recently orphaned nephews find a new home.",
"popularity": 153.873,
"poster_path": "/yqKKhbaofSHfqHGNYHz9yqSPvYR.jpg",
"release_date": "2024-09-05",
"title": "Nutcrackers",
"video": false,
"vote_average": 5.7,
"vote_count": 59
},
{
"adult": false,
"backdrop_path": "/kwXycPsLA6SV3KUOagn343TtMOf.jpg",
"genre_ids": [
28,
878,
53
],
"id": 791042,
"media_type": "movie",
"original_language": "en",
"original_title": "Levels",
"overview": "After witnessing his girlfriend's murder, a man risks everything - including reality itself - to discover the truth.",
"popularity": 490.511,
"poster_path": "/y1xm0jMIlx9Oo2a3jWNyLGm43sJ.jpg",
"release_date": "2024-11-01",
"title": "Levels",
"video": false,
"vote_average": 5.8,
"vote_count": 39
},
{
"adult": false,
"backdrop_path": "/us8T8e2bSkyORss8xanwCDZCZxG.jpg",
"genre_ids": [
10749,
35
],
"id": 999890,
"media_type": "movie",
"original_language": "en",
"original_title": "Sweethearts",
"overview": "Two college freshmen who decided to stick with their high school sweethearts have to pull a 'Turkey Dump' and break up with them over 'Drunksgiving' the one chaotic night before Thanksgiving in their hometown that puts their codependent friendship to the test.",
"popularity": 41.776,
"poster_path": "/890UDXYal6i8A9NbMV5TAxZpOzH.jpg",
"release_date": "2024-11-27",
"title": "Sweethearts",
"video": false,
"vote_average": 5.5,
"vote_count": 33
},
{
"adult": false,
"backdrop_path": "/hyvDUr0OK3JSSU27KcnU2Mvpnuw.jpg",
"genre_ids": [
18
],
"id": 995757,
"media_type": "movie",
"original_language": "fr",
"original_title": "Le Ravissement",
"overview": "Lydia, a midwife very invested in her work, is in the middle of a breakup. At the same time, her best friend, Salomé, announces to her that she is pregnant and asks her to follow her pregnancy. The day Lydia meets Milos, a one-night stand, while she is holding her friend's baby in her arms, she sinks into a lie, at the risk of losing everything.",
"popularity": 7.963,
"poster_path": "/evcCra9puM8pkaWUTkYwuCEnb3o.jpg",
"release_date": "2023-10-11",
"title": "The Rapture",
"video": false,
"vote_average": 6.8,
"vote_count": 61
},
{
"adult": false,
"backdrop_path": "/jaRoloTuVFYYvBH5VlRBQnf2egx.jpg",
"genre_ids": [
28,
12,
35
],
"id": 1171462,
"media_type": "movie",
"original_language": "ja",
"original_title": "ゴールデンカムイ",
"overview": "On the Hokkaido frontier, a war veteran and Ainu girl race against misfits and military renegades to find treasure mapped out on tattooed outlaws.",
"popularity": 52.618,
"poster_path": "/sLcRGIJqlJeoGGk88CtA8Ida5aq.jpg",
"release_date": "2024-01-19",
"title": "Golden Kamuy",
"video": false,
"vote_average": 6.7,
"vote_count": 56
},
{
"adult": false,
"backdrop_path": "/qSTulvq8q1fpqQEM15jLdu0Wae0.jpg",
"genre_ids": [
53,
18
],
"id": 1144911,
"media_type": "movie",
"original_language": "en",
"original_title": "Skincare",
"overview": "Famed aesthetician Hope Goldman is about to take her career to the next level by launching her very own skin care line. However, she soon faces a new challenge when a rival opens a boutique directly across from her store. Suspecting that someone is trying to sabotage her, she embarks on a quest to unravel the mystery of who's trying to destroy her life.",
"popularity": 52.83,
"poster_path": "/ikPzv7el0RcBhtXj3ElCoH54icd.jpg",
"release_date": "2024-08-15",
"title": "Skincare",
"video": false,
"vote_average": 5.9,
"vote_count": 49
}
],
"total_pages": 2,
"total_results": 40
}Authorizations
Path Parameters
integer
Example:
"1241982"
Response
200 - application/json
OK
Example:
1
Show child attributes
Show child attributes
Example:
[
{
"adult": false,
"backdrop_path": "/3V4kLQg0kSqPLctI5ziYWabAZYF.jpg",
"genre_ids": [28, 878, 12, 53],
"id": 912649,
"media_type": "movie",
"original_language": "en",
"original_title": "Venom: The Last Dance",
"overview": "Eddie and Venom are on the run. Hunted by both of their worlds and with the net closing in, the duo are forced into a devastating decision that will bring the curtains down on Venom and Eddie's last dance.",
"popularity": 7315.802,
"poster_path": "/aosm8NMQ3UyoBVpSxyimorCQykC.jpg",
"release_date": "2024-10-22",
"title": "Venom: The Last Dance",
"video": false,
"vote_average": 6.776,
"vote_count": 1604
},
{
"adult": false,
"backdrop_path": "/uVlUu174iiKhsUGqnOSy46eIIMU.jpg",
"genre_ids": [18, 10749, 14],
"id": 402431,
"media_type": "movie",
"original_language": "en",
"original_title": "Wicked",
"overview": "In the land of Oz, ostracized and misunderstood green-skinned Elphaba is forced to share a room with the popular aristocrat Glinda at Shiz University, and the two's unlikely friendship is tested as they begin to fulfill their respective destinies as Glinda the Good and the Wicked Witch of the West.",
"popularity": 676.311,
"poster_path": "/xDGbZ0JJ3mYaGKy4Nzd9Kph6M9L.jpg",
"release_date": "2024-11-20",
"title": "Wicked",
"video": false,
"vote_average": 7.6,
"vote_count": 556
},
{
"adult": false,
"backdrop_path": "/jl2YIADk391yc6Qjy9JhgCRkHJk.jpg",
"genre_ids": [16, 18, 35],
"id": 1064486,
"media_type": "movie",
"original_language": "en",
"original_title": "Memoir of a Snail",
"overview": "In 1970s Australia, Grace's life is troubled by misfortune and loss. After their mother dies during pregnancy, she and her twin brother, Gilbert, are raised by their paraplegic-alcoholic former juggler father, Percy. Despite a life filled with love, tragedy strikes anew when Percy passes away in his sleep. The siblings are forcibly separated and thrust into separate homes.",
"popularity": 36.64,
"poster_path": "/lWh5OlerPR1c1cfn1ZLq0lpqFds.jpg",
"release_date": "2024-10-17",
"title": "Memoir of a Snail",
"video": false,
"vote_average": 7.9,
"vote_count": 44
},
{
"adult": false,
"backdrop_path": "/4ZXzO32rKk5bSoDZA6KpTzVJA.jpg",
"genre_ids": [16, 14],
"id": 839033,
"media_type": "movie",
"original_language": "en",
"original_title": "The Lord of the Rings: The War of the Rohirrim",
"overview": "183 years before the events chronicled in the original trilogy, a sudden attack by Wulf, a clever and ruthless Dunlending lord seeking vengeance for the death of his father, forces Helm Hammerhand and his people to make a daring last stand in the ancient stronghold of the Hornburg. Finding herself in an increasingly desperate situation, Héra, the daughter of Helm, must summon the will to lead the resistance against a deadly enemy intent on their total destruction.",
"popularity": 299.293,
"poster_path": "/hE9SAMyMSUGAPsHUGdyl6irv11v.jpg",
"release_date": "2024-12-05",
"title": "The Lord of the Rings: The War of the Rohirrim",
"video": false,
"vote_average": 6.7,
"vote_count": 55
},
{
"adult": false,
"backdrop_path": "/dHk9ZvV12Rr7STgwEpeEYKGFGZM.jpg",
"genre_ids": [18, 10749],
"id": 1276703,
"media_type": "movie",
"original_language": "id",
"original_title": "Cinta Tak Seindah Drama Korea",
"overview": "A young woman got a sweet surprise from her boyfriend: a trip to Seoul with her two besties who love K-Dramas much like herself. She had lots of fun, things are going so well. That is until she accidentally reunites with a past lover who never left her heart. Will this be a real-life K-Drama situation in the making?",
"popularity": 7.662,
"poster_path": "/c9zVLJU7R53K8V5WtpNXt7J0Y1X.jpg",
"release_date": "2024-12-05",
"title": "Love Unlike In K-Dramas",
"video": false,
"vote_average": 7.8,
"vote_count": 2
},
{
"adult": false,
"backdrop_path": "/nOoGIymGBNtA7AEN0B6nshSEQ1p.jpg",
"genre_ids": [28, 80, 53],
"id": 974453,
"media_type": "movie",
"original_language": "en",
"original_title": "Absolution",
"overview": "An aging ex-boxer gangster working as muscle for a Boston crime boss receives an upsetting diagnosis. Despite a faltering memory, he attempts to rectify the sins of his past and reconnect with his estranged children. He is determined to leave a positive legacy for his grandson, but the criminal underworld isn’t done with him and won’t loosen their grip willingly.",
"popularity": 1362.04,
"poster_path": "/cNtAslrDhk1i3IOZ16vF7df6lMy.jpg",
"release_date": "2024-10-31",
"title": "Absolution",
"video": false,
"vote_average": 6.1,
"vote_count": 133
},
{
"adult": false,
"backdrop_path": "/n4ycOGj2tRLfINTJQ3wl0vNYqpR.jpg",
"genre_ids": [16, 14, 10751, 12, 35],
"id": 592983,
"media_type": "movie",
"original_language": "en",
"original_title": "Spellbound",
"overview": "When a powerful spell turns her parents into giant monsters, a teenage princess must journey into the wild to reverse the curse before it's too late.",
"popularity": 374.008,
"poster_path": "/xFSIygDiX70Esp9dheCgGX0Nj77.jpg",
"release_date": "2024-11-22",
"title": "Spellbound",
"video": false,
"vote_average": 6.893,
"vote_count": 149
},
{
"adult": false,
"backdrop_path": "/iR79ciqhtaZ9BE7YFA1HpCHQgX4.jpg",
"genre_ids": [27, 9648],
"id": 1100782,
"media_type": "movie",
"original_language": "en",
"original_title": "Smile 2",
"overview": "About to embark on a new world tour, global pop sensation Skye Riley begins experiencing increasingly terrifying and inexplicable events. Overwhelmed by the escalating horrors and the pressures of fame, Skye is forced to face her dark past to regain control of her life before it spirals out of control.",
"popularity": 722.663,
"poster_path": "/ht8Uv9QPv9y7K0RvUyJIaXOZTfd.jpg",
"release_date": "2024-10-16",
"title": "Smile 2",
"video": false,
"vote_average": 6.6,
"vote_count": 940
},
{
"adult": false,
"backdrop_path": "/rWs3Q9bT7zCH6t004z67UGuWUwu.jpg",
"genre_ids": [16, 35, 10751, 14, 12],
"id": 645757,
"media_type": "movie",
"original_language": "en",
"original_title": "That Christmas",
"overview": "It's an unforgettable Christmas for the townsfolk of Wellington-on-Sea when the worst snowstorm in history alters everyone's plans — including Santa's.",
"popularity": 1081.812,
"poster_path": "/bX6dx2U4hOk1esI7mYwtD3cEKdC.jpg",
"release_date": "2024-11-27",
"title": "That Christmas",
"video": false,
"vote_average": 7.5,
"vote_count": 134
},
{
"adult": false,
"backdrop_path": "/a5OqX7uXb8MI0WB3HbCyA0Wn3gI.jpg",
"genre_ids": [10749, 35, 18],
"id": 1234811,
"media_type": "movie",
"original_language": "en",
"original_title": "Our Little Secret",
"overview": "After discovering their significant others are siblings, two resentful exes must spend Christmas under one roof — while hiding their romantic history.",
"popularity": 145.607,
"poster_path": "/7isqmWUryG2xksrw0E75m3vYTFd.jpg",
"release_date": "2024-11-27",
"title": "Our Little Secret",
"video": false,
"vote_average": 6.3,
"vote_count": 325
},
{
"adult": false,
"backdrop_path": "/v9Du2HC3hlknAvGlWhquRbeifwW.jpg",
"genre_ids": [28, 12, 53],
"id": 539972,
"media_type": "movie",
"original_language": "en",
"original_title": "Kraven the Hunter",
"overview": "Kraven Kravinoff's complex relationship with his ruthless gangster father, Nikolai, starts him down a path of vengeance with brutal consequences, motivating him to become not only the greatest hunter in the world, but also one of its most feared.",
"popularity": 1177.335,
"poster_path": "/i47IUSsN126K11JUzqQIOi1Mg1M.jpg",
"release_date": "2024-12-11",
"title": "Kraven the Hunter",
"video": false,
"vote_average": 5.7,
"vote_count": 92
},
{
"adult": false,
"backdrop_path": "/evFChfYeD2LqobEJf8iQsrYcGTw.jpg",
"genre_ids": [28, 80, 53],
"id": 1182387,
"media_type": "movie",
"original_language": "en",
"original_title": "Armor",
"overview": "Armored truck security guard James Brody is working with his son Casey transporting millions of dollars between banks when a team of thieves led by Rook orchestrate a takeover of their truck to seize the riches. Following a violent car chase, Rook soon has the armored truck surrounded and James and Casey find themselves cornered onto a decrepit bridge.",
"popularity": 1060.595,
"poster_path": "/pnXLFioDeftqjlCVlRmXvIdMsdP.jpg",
"release_date": "2024-10-30",
"title": "Armor",
"video": false,
"vote_average": 5.507,
"vote_count": 74
},
{
"adult": false,
"backdrop_path": "/8GULo7TCCHAJO18kvUpXtmrov1f.jpg",
"genre_ids": [35],
"id": 617932,
"media_type": "movie",
"original_language": "en",
"original_title": "Barbie",
"overview": "Barbie comes home from shopping. She takes her groceries out of the bag and unwraps a little Barbie doll. She fries up the Barbie doll and eats it.",
"popularity": 0.959,
"poster_path": "/A1NvddoqyBjaIfEHDaffIJFGxcM.jpg",
"release_date": "1977-01-01",
"title": "Barbie",
"video": false,
"vote_average": 6.6,
"vote_count": 26
},
{
"adult": false,
"backdrop_path": "/498VjeTVd051iuEducr5MkZYKKf.jpg",
"genre_ids": [10749, 35, 10770],
"id": 1100642,
"media_type": "movie",
"original_language": "en",
"original_title": "'Twas the Text Before Christmas",
"overview": "Addie is a New York City chiropractor mistakenly receives a text from “Nana.” The accidental text turns into a loving friendship between the matronly Nana and Addie who now communicate regularly. Nana invites Addie to spend the holiday in Vermont. It is picture-postcard perfect and exactly as Nana described except for one surprise. Nana’s single son, James, a traveling doctor is also home for the holidays. Over three consecutive years, James and Addie are together during the holidays, though it isn’t until they are both single that they begin to see each other in a different light.",
"popularity": 85.049,
"poster_path": "/e1fvQdD63RP2MS9jCB8jzg7fkdr.jpg",
"release_date": "2023-10-21",
"title": "'Twas the Text Before Christmas",
"video": false,
"vote_average": 6.5,
"vote_count": 58
},
{
"adult": false,
"backdrop_path": "/jUYn9ytvxrquviR36OD6n2EqBgW.jpg",
"genre_ids": [35, 18],
"id": 1203236,
"media_type": "movie",
"original_language": "en",
"original_title": "Nutcrackers",
"overview": "Just as Mike is on the heels of closing the biggest deal of his career, he's pulled away from his bachelor life in the big city to a farm in rural Ohio in order to help his recently orphaned nephews find a new home.",
"popularity": 153.873,
"poster_path": "/yqKKhbaofSHfqHGNYHz9yqSPvYR.jpg",
"release_date": "2024-09-05",
"title": "Nutcrackers",
"video": false,
"vote_average": 5.7,
"vote_count": 59
},
{
"adult": false,
"backdrop_path": "/kwXycPsLA6SV3KUOagn343TtMOf.jpg",
"genre_ids": [28, 878, 53],
"id": 791042,
"media_type": "movie",
"original_language": "en",
"original_title": "Levels",
"overview": "After witnessing his girlfriend's murder, a man risks everything - including reality itself - to discover the truth.",
"popularity": 490.511,
"poster_path": "/y1xm0jMIlx9Oo2a3jWNyLGm43sJ.jpg",
"release_date": "2024-11-01",
"title": "Levels",
"video": false,
"vote_average": 5.8,
"vote_count": 39
},
{
"adult": false,
"backdrop_path": "/us8T8e2bSkyORss8xanwCDZCZxG.jpg",
"genre_ids": [10749, 35],
"id": 999890,
"media_type": "movie",
"original_language": "en",
"original_title": "Sweethearts",
"overview": "Two college freshmen who decided to stick with their high school sweethearts have to pull a 'Turkey Dump' and break up with them over 'Drunksgiving' the one chaotic night before Thanksgiving in their hometown that puts their codependent friendship to the test.",
"popularity": 41.776,
"poster_path": "/890UDXYal6i8A9NbMV5TAxZpOzH.jpg",
"release_date": "2024-11-27",
"title": "Sweethearts",
"video": false,
"vote_average": 5.5,
"vote_count": 33
},
{
"adult": false,
"backdrop_path": "/hyvDUr0OK3JSSU27KcnU2Mvpnuw.jpg",
"genre_ids": [18],
"id": 995757,
"media_type": "movie",
"original_language": "fr",
"original_title": "Le Ravissement",
"overview": "Lydia, a midwife very invested in her work, is in the middle of a breakup. At the same time, her best friend, Salomé, announces to her that she is pregnant and asks her to follow her pregnancy. The day Lydia meets Milos, a one-night stand, while she is holding her friend's baby in her arms, she sinks into a lie, at the risk of losing everything.",
"popularity": 7.963,
"poster_path": "/evcCra9puM8pkaWUTkYwuCEnb3o.jpg",
"release_date": "2023-10-11",
"title": "The Rapture",
"video": false,
"vote_average": 6.8,
"vote_count": 61
},
{
"adult": false,
"backdrop_path": "/jaRoloTuVFYYvBH5VlRBQnf2egx.jpg",
"genre_ids": [28, 12, 35],
"id": 1171462,
"media_type": "movie",
"original_language": "ja",
"original_title": "ゴールデンカムイ",
"overview": "On the Hokkaido frontier, a war veteran and Ainu girl race against misfits and military renegades to find treasure mapped out on tattooed outlaws.",
"popularity": 52.618,
"poster_path": "/sLcRGIJqlJeoGGk88CtA8Ida5aq.jpg",
"release_date": "2024-01-19",
"title": "Golden Kamuy",
"video": false,
"vote_average": 6.7,
"vote_count": 56
},
{
"adult": false,
"backdrop_path": "/qSTulvq8q1fpqQEM15jLdu0Wae0.jpg",
"genre_ids": [53, 18],
"id": 1144911,
"media_type": "movie",
"original_language": "en",
"original_title": "Skincare",
"overview": "Famed aesthetician Hope Goldman is about to take her career to the next level by launching her very own skin care line. However, she soon faces a new challenge when a rival opens a boutique directly across from her store. Suspecting that someone is trying to sabotage her, she embarks on a quest to unravel the mystery of who's trying to destroy her life.",
"popularity": 52.83,
"poster_path": "/ikPzv7el0RcBhtXj3ElCoH54icd.jpg",
"release_date": "2024-08-15",
"title": "Skincare",
"video": false,
"vote_average": 5.9,
"vote_count": 49
}
]
Example:
2
Example:
40
Was this page helpful?
⌘I