Images
curl --request GET \
--url 'https://api.themoviedb.org/3/tv/{series_id}/images?%7B%7Bkey%7D%7D='import requests
url = "https://api.themoviedb.org/3/tv/{series_id}/images?%7B%7Bkey%7D%7D="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/tv/{series_id}/images?%7B%7Bkey%7D%7D=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.themoviedb.org/3/tv/{series_id}/images?%7B%7Bkey%7D%7D=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.themoviedb.org/3/tv/{series_id}/images?%7B%7Bkey%7D%7D="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.themoviedb.org/3/tv/{series_id}/images?%7B%7Bkey%7D%7D=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/tv/{series_id}/images?%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{
"backdrops": [
{
"aspect_ratio": 1.778,
"file_path": "/c1aBrG5s5xFa6Tbnihu2Hhj4t2q.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.388,
"vote_count": 4,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/v0r0gHxiD1zOyT7fv6BXOBBRx55.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.312,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/qmcoEOrTm6BcgR4iO7KBQKE9AKT.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.264,
"vote_count": 8,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/6s3ftX4a1kECPCb1Ewq3GLhVFnn.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.246,
"vote_count": 2,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/j4R8I75CYxxHQCHeqiWvFkMkhyR.jpg",
"height": 720,
"iso_639_1": "en",
"vote_average": 5.246,
"vote_count": 2,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/rHKRZCBpDFSNc45kzyf665LJYp3.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.198,
"vote_count": 7,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/4VuCtYBvZGq6Rk3gloigwlsTefE.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.19,
"vote_count": 5,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/bzLWRkpQcobvZSx5j4XqFr5Sj52.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.18,
"vote_count": 3,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/noaplBUaObFWC5zrFgXgzRsHQcJ.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/bE9yoQKtvvvLIi6EnmY1qcbmYzO.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.18,
"vote_count": 3,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/n4LjDhNFMHtCQ2Prjh0ZA1ioL6W.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.18,
"vote_count": 3,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/aNBABKjPSzJY2NlSUOyJD6CDKTR.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.18,
"vote_count": 3,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/euuK8owCrdiz0HMj8iVhhquPhDv.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.18,
"vote_count": 3,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/lM8rTWLQbNr2sCRsD2mUan82kcv.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/cCjwGsBwbFmlM3eir7EV8inKZXg.jpg",
"height": 1620,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 2880
},
{
"aspect_ratio": 1.778,
"file_path": "/siSk7Wr8zMHyRJIMpHqmHhMKKX1.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/iyWRXAywVJk6JtEMVS98nySynfm.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/eEx0r54UPod07R6M3aDat799iwy.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/czWEUMrIcTaOlm56gDE8sD0VRQ9.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/woPeZyLwTZetAYHPTHb3QIa1Vq3.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/v3zyZcaNyBgdAsqknUOuSAvbAXT.jpg",
"height": 720,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/fkKJcLPNqocskaDddoETYWIXiF8.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/htXh57mUS1YinlxZ2nNSb8GFJZG.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/8U90YMrkkAxpDjyxCHrwgVnwHdC.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/ms8XxpJwTPYaUcbwhO2kJS6SGVM.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.128,
"vote_count": 6,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/2ey9kXymyGInFEOQ6hgMHwD70i4.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.118,
"vote_count": 4,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/kVYqvyqTh2Sk3THyX9NiNegkbq4.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.118,
"vote_count": 4,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/5rnL7gIZQvYEKSFTxehqnGcG88u.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.118,
"vote_count": 4,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/plpXmBlNzeSiINQNrpNuKYGgd7k.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/uwB6YRhNcjq7JwXHqtcqWtmnA3E.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/cMgTFiR5CMzXszLaQQcBvwvbDKA.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/yD1R7QCNqrcaf15AxkLbgRLI9Dz.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/tMNvDXbv0YeioKlM955M9adH3ul.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/wsU1R48t2V3cjsbHTj68JoDEo8G.jpg",
"height": 1080,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/949JxBlacQOYqgCK38RaXIe5uvq.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/tU385Qu6yMGptCWGkkDvRT976H4.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/tETyYM6ZtvPBc8VHKyHlty7LZ8S.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/xlBGwQ48WupnEfaXQ1aSVaTX1FT.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/dw7cgoB1intvT7J3Ft0HMG4OeJt.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/ligtQorIbGwJdPw8I4wYUGqe4dQ.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/6fqaFmi1ruY4B3MQNB68DeJbom1.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/iL8fUdkxoptoA6cjGGTGck8xHEy.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/ftltZTp03sG9ajqz8VTrt4vGVKT.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/jG5tS9nqHEyMweVL9xfVhpRfujn.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.779,
"file_path": "/sLddPTQfGXCRjRluAcBWhaluYVU.jpg",
"height": 1536,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 2732
},
{
"aspect_ratio": 1.778,
"file_path": "/aHXliJNFBYKZ6n9dM1XB65TF9sz.jpg",
"height": 1152,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 2048
},
{
"aspect_ratio": 1.778,
"file_path": "/uNt1oIeD1yue3zVWKQSHAH3V7Dd.jpg",
"height": 1620,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 2880
},
{
"aspect_ratio": 1.78,
"file_path": "/uZy2abTIozTa3Fr3TC4SVAMOT1h.jpg",
"height": 1348,
"iso_639_1": "en",
"vote_average": 5.044,
"vote_count": 3,
"width": 2400
},
{
"aspect_ratio": 1.778,
"file_path": "/kNhP4jLvkuKMFYt5BAMUfhZxlBr.jpg",
"height": 810,
"iso_639_1": null,
"vote_average": 4.938,
"vote_count": 7,
"width": 1440
},
{
"aspect_ratio": 1.778,
"file_path": "/bJxWw46wq0ZoEO7wexmgYvekctK.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/fSj6Jk5UVgPwIrp9eGp154ChDk6.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/qBjJWd7OWokLzN0Uvd1D6C09lfX.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/xWRWC5budUW4S2glDMUlpGHYoSx.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/myqSeh2GY3rp1BoLRcUi1W9aN6U.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/68BC0dzmUcWzWaHHT4CMZc19SUJ.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/nn3SuLTO4hum8yAxaY4ql8h6kRk.jpg",
"height": 1620,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2880
},
{
"aspect_ratio": 1.778,
"file_path": "/8hISLF4hfsIX4SAN9535nWSdDqH.jpg",
"height": 1080,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/9XefvO82nLyKUiJGCvJTP8Y9eB.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/bqnX5lAn2fpg3RSttQojM2zOFva.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/2KzCojE9i0vQjdP6uvWZFKohzHu.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/xcNmG5xncjJQ2iXRwxmWVPFPTB8.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
}
],
"id": 4614,
"logos": [
{
"aspect_ratio": 4.07,
"file_path": "/i25t4OpgxgXcoSyFWkf6a4T4p0S.png",
"height": 1045,
"iso_639_1": "en",
"vote_average": 5.312,
"vote_count": 1,
"width": 4253
},
{
"aspect_ratio": 1.115,
"file_path": "/qPPt1TxKmHhyjumbHdIJchBUVdq.png",
"height": 1483,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1654
},
{
"aspect_ratio": 4.082,
"file_path": "/diVB8JTn9xv3OGFCVeTxztWtx0l.svg",
"height": 490,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 4.393,
"file_path": "/1BCTPhZw1onX2E2R0NxJDSKzDjN.png",
"height": 183,
"iso_639_1": "es",
"vote_average": 0,
"vote_count": 0,
"width": 804
},
{
"aspect_ratio": 3.682,
"file_path": "/vhMlNgmqgSba5n0DpGkwS8c61rb.png",
"height": 346,
"iso_639_1": "th",
"vote_average": 0,
"vote_count": 0,
"width": 1274
},
{
"aspect_ratio": 4.458,
"file_path": "/j4eXdYvVpOrYQgHUyQkH90HpwjA.png",
"height": 286,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1275
}
],
"posters": [
{
"aspect_ratio": 0.667,
"file_path": "/mBcu8d6x6zB1el3MPNl7cZQEQ31.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.454,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/2exOHePjOTquUsbThPGhuEjYTyA.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.798,
"vote_count": 17,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/19ht0bW0v1BzQO3WO319R9EXSE6.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.456,
"vote_count": 7,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/oo1GKnEKJuF4iaILFEDhWN1Qimy.jpg",
"height": 3000,
"iso_639_1": "zh",
"vote_average": 5.454,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/lSTchtc26YNdOjdKvZtLs22SokL.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.326,
"vote_count": 7,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/rkWK3hcCiFwtIhLYnTPKjcZwTTN.jpg",
"height": 3000,
"iso_639_1": "es",
"vote_average": 5.312,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/zdRSNQUaMcZpaGKfZDdTXNXATAY.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 5.312,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/3MboAgxRirTfqHx8AI7HU5di2Fz.jpg",
"height": 3000,
"iso_639_1": "zh",
"vote_average": 5.312,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/4YQyYx45DZNwYVgVE3fafpymB6d.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 5.312,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.68,
"file_path": "/mZmMmFw6E1zWRG26cg6FXA2Z3Dg.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.312,
"vote_count": 1,
"width": 680
},
{
"aspect_ratio": 0.667,
"file_path": "/fi8EvaWtL5CvoielOjjVvTr7ux3.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 5.276,
"vote_count": 12,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/qg7riUVREGz2J7050epWwZFNFFm.jpg",
"height": 2250,
"iso_639_1": "en",
"vote_average": 5.264,
"vote_count": 8,
"width": 1500
},
{
"aspect_ratio": 0.667,
"file_path": "/eoj15m14Zpf2bUWXqNIs7itZK9w.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 5.258,
"vote_count": 6,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/wjqzKd664dRoOSZUFn12wzUuVNO.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 5.252,
"vote_count": 4,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/abjNx4jqvaJn5UvsuLaBVRVndyJ.jpg",
"height": 1500,
"iso_639_1": "pt",
"vote_average": 5.246,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/cmtoEreYqO1NR4juZYsYdxTitVH.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 5.246,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/po4ZIt6XI9kyKMLtEipZxjbeYGu.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.206,
"vote_count": 9,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/23ri7fNgny0U862aZavtxzDMdpT.jpg",
"height": 2250,
"iso_639_1": "en",
"vote_average": 5.198,
"vote_count": 7,
"width": 1500
},
{
"aspect_ratio": 0.667,
"file_path": "/7j7bYIfUsfwGJv3ZyitmbSRbTua.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.19,
"vote_count": 5,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/q9TVqJSHfJPsEJGHtxHuBvOdKu9.jpg",
"height": 2250,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 18,
"width": 1500
},
{
"aspect_ratio": 0.667,
"file_path": "/4TlhNaRkwLAQxBkgYERQNulanZq.jpg",
"height": 2250,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 1500
},
{
"aspect_ratio": 0.667,
"file_path": "/hv3gRTZWgsrJIasIt6Gz6GjczfF.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/69qAiuc6AddM0fyV5xR3w03xxP9.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/un9ZQUwuQGJxKu0V035nulEqadP.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/ogENMIitBq6ylxGAQ5Szem60TAB.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/6b68fd3p0OpRXJZfZGLQ9Gs7kzl.jpg",
"height": 2100,
"iso_639_1": "pt",
"vote_average": 5.172,
"vote_count": 1,
"width": 1400
},
{
"aspect_ratio": 0.712,
"file_path": "/lChi53KTdZvj2Ohb2oQ9UsNEQM.jpg",
"height": 1500,
"iso_639_1": "pt",
"vote_average": 5.172,
"vote_count": 1,
"width": 1068
},
{
"aspect_ratio": 0.667,
"file_path": "/okufSToV75PV7QKVP2jDqtZe2iy.jpg",
"height": 1500,
"iso_639_1": "pt",
"vote_average": 5.172,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/11YekasgqE98jRAi1nDY6ojYYup.jpg",
"height": 2550,
"iso_639_1": "pt",
"vote_average": 5.172,
"vote_count": 1,
"width": 1700
},
{
"aspect_ratio": 0.667,
"file_path": "/18ZUYhplwv4akoE2ehqoVDkX2bS.jpg",
"height": 2100,
"iso_639_1": "pt",
"vote_average": 5.172,
"vote_count": 1,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/ge8JYwRQj3LmnkHlP3BWHZrTUUs.jpg",
"height": 2984,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 1990
},
{
"aspect_ratio": 0.667,
"file_path": "/sAqHSEfPbRQtud4gcSBFpe4KrDd.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.666,
"file_path": "/mCA9VTvNNMalJ0WBoUcjxMh4UJV.jpg",
"height": 1763,
"iso_639_1": "it",
"vote_average": 5.172,
"vote_count": 1,
"width": 1175
},
{
"aspect_ratio": 0.667,
"file_path": "/2JuJiJv6sNFQqiGDRku9jNq0tLR.jpg",
"height": 1200,
"iso_639_1": "es",
"vote_average": 5.172,
"vote_count": 1,
"width": 800
},
{
"aspect_ratio": 0.748,
"file_path": "/zS7nlslqXeuVkobhlSpiYvQqnL6.jpg",
"height": 750,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 561
},
{
"aspect_ratio": 0.68,
"file_path": "/tOq9TSbz3HTbpofKkK0YupMe9zS.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 680
},
{
"aspect_ratio": 0.667,
"file_path": "/1umjD6IizxkMzopCy1YEH3w15OE.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/8IgBeMM5Nc1rFTK0WRiFPHpqWhP.jpg",
"height": 3000,
"iso_639_1": "zh",
"vote_average": 5.172,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/32YEHCCaizow02AzY6VnHwqvB32.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.118,
"vote_count": 4,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/w2nomdLWD2PoyHT2eLL4gMLRC7M.jpg",
"height": 1500,
"iso_639_1": "hu",
"vote_average": 5.106,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/6I9sV5MYI9O3jrJDU7zAsvPJ7Ve.jpg",
"height": 1740,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 1160
},
{
"aspect_ratio": 0.68,
"file_path": "/uqO7fvzTzFKbWMZWmT98TfSqWg7.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 680
},
{
"aspect_ratio": 0.68,
"file_path": "/A5hTIFhU4VeTACmfmpfqkJI4Xcf.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 680
},
{
"aspect_ratio": 0.667,
"file_path": "/aQZNM2uCcfcJ4MlMLGWiqfFRhEC.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.68,
"file_path": "/wlCDJOev76m3R8z6zYK4hRGzPVV.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 680
},
{
"aspect_ratio": 0.68,
"file_path": "/an61rOKh5Udo6Gj7wyJ5zIokVuU.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 680
},
{
"aspect_ratio": 0.68,
"file_path": "/9naPmi8qNCWEWpEsloiung42Hwu.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 680
},
{
"aspect_ratio": 0.667,
"file_path": "/9qxToguwcBkEhsneAOx6ze84o20.jpg",
"height": 2562,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1708
},
{
"aspect_ratio": 0.667,
"file_path": "/9oJZplagNPxzPjMxNzFTIxssAqK.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/9Yb5cysImsjOdecFPbdbQ17ZFSE.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.748,
"file_path": "/nTukracLnzJqFS1tQiskMG0GZv9.jpg",
"height": 750,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 561
},
{
"aspect_ratio": 0.748,
"file_path": "/1w2mt47mneK211kzeOPjJfzheOL.jpg",
"height": 750,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 561
},
{
"aspect_ratio": 0.667,
"file_path": "/wF2WFsCA2Os2x88Grh7A82004AN.jpg",
"height": 750,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 500
},
{
"aspect_ratio": 0.667,
"file_path": "/wnDCUHCK9nJOQtTCobM9GCUTHbi.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/4ltafNQAjz9jhZ4xPN3eLGPD5P8.jpg",
"height": 3000,
"iso_639_1": "ru",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.68,
"file_path": "/dzESVxZneQ7w72ylHOS5LWWsS0p.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 680
},
{
"aspect_ratio": 0.71,
"file_path": "/eU9KhtrAZHtVihebeg9zVQSKL4n.jpg",
"height": 2818,
"iso_639_1": "zh",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/o9AuCWG3DINPw4vXWo8CXMJ0v5i.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1400
}
]
}TV Series
Images
This endpoint is used to get the images that belong to a TV series.
GET
/
3
/
tv
/
{series_id}
/
images
Images
curl --request GET \
--url 'https://api.themoviedb.org/3/tv/{series_id}/images?%7B%7Bkey%7D%7D='import requests
url = "https://api.themoviedb.org/3/tv/{series_id}/images?%7B%7Bkey%7D%7D="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/tv/{series_id}/images?%7B%7Bkey%7D%7D=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.themoviedb.org/3/tv/{series_id}/images?%7B%7Bkey%7D%7D=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.themoviedb.org/3/tv/{series_id}/images?%7B%7Bkey%7D%7D="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.themoviedb.org/3/tv/{series_id}/images?%7B%7Bkey%7D%7D=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/tv/{series_id}/images?%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{
"backdrops": [
{
"aspect_ratio": 1.778,
"file_path": "/c1aBrG5s5xFa6Tbnihu2Hhj4t2q.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.388,
"vote_count": 4,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/v0r0gHxiD1zOyT7fv6BXOBBRx55.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.312,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/qmcoEOrTm6BcgR4iO7KBQKE9AKT.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.264,
"vote_count": 8,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/6s3ftX4a1kECPCb1Ewq3GLhVFnn.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.246,
"vote_count": 2,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/j4R8I75CYxxHQCHeqiWvFkMkhyR.jpg",
"height": 720,
"iso_639_1": "en",
"vote_average": 5.246,
"vote_count": 2,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/rHKRZCBpDFSNc45kzyf665LJYp3.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.198,
"vote_count": 7,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/4VuCtYBvZGq6Rk3gloigwlsTefE.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.19,
"vote_count": 5,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/bzLWRkpQcobvZSx5j4XqFr5Sj52.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.18,
"vote_count": 3,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/noaplBUaObFWC5zrFgXgzRsHQcJ.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/bE9yoQKtvvvLIi6EnmY1qcbmYzO.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.18,
"vote_count": 3,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/n4LjDhNFMHtCQ2Prjh0ZA1ioL6W.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.18,
"vote_count": 3,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/aNBABKjPSzJY2NlSUOyJD6CDKTR.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.18,
"vote_count": 3,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/euuK8owCrdiz0HMj8iVhhquPhDv.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.18,
"vote_count": 3,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/lM8rTWLQbNr2sCRsD2mUan82kcv.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/cCjwGsBwbFmlM3eir7EV8inKZXg.jpg",
"height": 1620,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 2880
},
{
"aspect_ratio": 1.778,
"file_path": "/siSk7Wr8zMHyRJIMpHqmHhMKKX1.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/iyWRXAywVJk6JtEMVS98nySynfm.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/eEx0r54UPod07R6M3aDat799iwy.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/czWEUMrIcTaOlm56gDE8sD0VRQ9.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/woPeZyLwTZetAYHPTHb3QIa1Vq3.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/v3zyZcaNyBgdAsqknUOuSAvbAXT.jpg",
"height": 720,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/fkKJcLPNqocskaDddoETYWIXiF8.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/htXh57mUS1YinlxZ2nNSb8GFJZG.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/8U90YMrkkAxpDjyxCHrwgVnwHdC.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/ms8XxpJwTPYaUcbwhO2kJS6SGVM.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.128,
"vote_count": 6,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/2ey9kXymyGInFEOQ6hgMHwD70i4.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.118,
"vote_count": 4,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/kVYqvyqTh2Sk3THyX9NiNegkbq4.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.118,
"vote_count": 4,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/5rnL7gIZQvYEKSFTxehqnGcG88u.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.118,
"vote_count": 4,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/plpXmBlNzeSiINQNrpNuKYGgd7k.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/uwB6YRhNcjq7JwXHqtcqWtmnA3E.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/cMgTFiR5CMzXszLaQQcBvwvbDKA.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/yD1R7QCNqrcaf15AxkLbgRLI9Dz.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/tMNvDXbv0YeioKlM955M9adH3ul.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/wsU1R48t2V3cjsbHTj68JoDEo8G.jpg",
"height": 1080,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/949JxBlacQOYqgCK38RaXIe5uvq.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/tU385Qu6yMGptCWGkkDvRT976H4.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/tETyYM6ZtvPBc8VHKyHlty7LZ8S.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/xlBGwQ48WupnEfaXQ1aSVaTX1FT.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/dw7cgoB1intvT7J3Ft0HMG4OeJt.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/ligtQorIbGwJdPw8I4wYUGqe4dQ.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/6fqaFmi1ruY4B3MQNB68DeJbom1.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/iL8fUdkxoptoA6cjGGTGck8xHEy.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/ftltZTp03sG9ajqz8VTrt4vGVKT.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/jG5tS9nqHEyMweVL9xfVhpRfujn.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.779,
"file_path": "/sLddPTQfGXCRjRluAcBWhaluYVU.jpg",
"height": 1536,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 2732
},
{
"aspect_ratio": 1.778,
"file_path": "/aHXliJNFBYKZ6n9dM1XB65TF9sz.jpg",
"height": 1152,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 2048
},
{
"aspect_ratio": 1.778,
"file_path": "/uNt1oIeD1yue3zVWKQSHAH3V7Dd.jpg",
"height": 1620,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 2880
},
{
"aspect_ratio": 1.78,
"file_path": "/uZy2abTIozTa3Fr3TC4SVAMOT1h.jpg",
"height": 1348,
"iso_639_1": "en",
"vote_average": 5.044,
"vote_count": 3,
"width": 2400
},
{
"aspect_ratio": 1.778,
"file_path": "/kNhP4jLvkuKMFYt5BAMUfhZxlBr.jpg",
"height": 810,
"iso_639_1": null,
"vote_average": 4.938,
"vote_count": 7,
"width": 1440
},
{
"aspect_ratio": 1.778,
"file_path": "/bJxWw46wq0ZoEO7wexmgYvekctK.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/fSj6Jk5UVgPwIrp9eGp154ChDk6.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/qBjJWd7OWokLzN0Uvd1D6C09lfX.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/xWRWC5budUW4S2glDMUlpGHYoSx.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/myqSeh2GY3rp1BoLRcUi1W9aN6U.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/68BC0dzmUcWzWaHHT4CMZc19SUJ.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/nn3SuLTO4hum8yAxaY4ql8h6kRk.jpg",
"height": 1620,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2880
},
{
"aspect_ratio": 1.778,
"file_path": "/8hISLF4hfsIX4SAN9535nWSdDqH.jpg",
"height": 1080,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/9XefvO82nLyKUiJGCvJTP8Y9eB.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/bqnX5lAn2fpg3RSttQojM2zOFva.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/2KzCojE9i0vQjdP6uvWZFKohzHu.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/xcNmG5xncjJQ2iXRwxmWVPFPTB8.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
}
],
"id": 4614,
"logos": [
{
"aspect_ratio": 4.07,
"file_path": "/i25t4OpgxgXcoSyFWkf6a4T4p0S.png",
"height": 1045,
"iso_639_1": "en",
"vote_average": 5.312,
"vote_count": 1,
"width": 4253
},
{
"aspect_ratio": 1.115,
"file_path": "/qPPt1TxKmHhyjumbHdIJchBUVdq.png",
"height": 1483,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1654
},
{
"aspect_ratio": 4.082,
"file_path": "/diVB8JTn9xv3OGFCVeTxztWtx0l.svg",
"height": 490,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 4.393,
"file_path": "/1BCTPhZw1onX2E2R0NxJDSKzDjN.png",
"height": 183,
"iso_639_1": "es",
"vote_average": 0,
"vote_count": 0,
"width": 804
},
{
"aspect_ratio": 3.682,
"file_path": "/vhMlNgmqgSba5n0DpGkwS8c61rb.png",
"height": 346,
"iso_639_1": "th",
"vote_average": 0,
"vote_count": 0,
"width": 1274
},
{
"aspect_ratio": 4.458,
"file_path": "/j4eXdYvVpOrYQgHUyQkH90HpwjA.png",
"height": 286,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1275
}
],
"posters": [
{
"aspect_ratio": 0.667,
"file_path": "/mBcu8d6x6zB1el3MPNl7cZQEQ31.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.454,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/2exOHePjOTquUsbThPGhuEjYTyA.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.798,
"vote_count": 17,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/19ht0bW0v1BzQO3WO319R9EXSE6.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.456,
"vote_count": 7,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/oo1GKnEKJuF4iaILFEDhWN1Qimy.jpg",
"height": 3000,
"iso_639_1": "zh",
"vote_average": 5.454,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/lSTchtc26YNdOjdKvZtLs22SokL.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.326,
"vote_count": 7,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/rkWK3hcCiFwtIhLYnTPKjcZwTTN.jpg",
"height": 3000,
"iso_639_1": "es",
"vote_average": 5.312,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/zdRSNQUaMcZpaGKfZDdTXNXATAY.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 5.312,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/3MboAgxRirTfqHx8AI7HU5di2Fz.jpg",
"height": 3000,
"iso_639_1": "zh",
"vote_average": 5.312,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/4YQyYx45DZNwYVgVE3fafpymB6d.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 5.312,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.68,
"file_path": "/mZmMmFw6E1zWRG26cg6FXA2Z3Dg.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.312,
"vote_count": 1,
"width": 680
},
{
"aspect_ratio": 0.667,
"file_path": "/fi8EvaWtL5CvoielOjjVvTr7ux3.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 5.276,
"vote_count": 12,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/qg7riUVREGz2J7050epWwZFNFFm.jpg",
"height": 2250,
"iso_639_1": "en",
"vote_average": 5.264,
"vote_count": 8,
"width": 1500
},
{
"aspect_ratio": 0.667,
"file_path": "/eoj15m14Zpf2bUWXqNIs7itZK9w.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 5.258,
"vote_count": 6,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/wjqzKd664dRoOSZUFn12wzUuVNO.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 5.252,
"vote_count": 4,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/abjNx4jqvaJn5UvsuLaBVRVndyJ.jpg",
"height": 1500,
"iso_639_1": "pt",
"vote_average": 5.246,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/cmtoEreYqO1NR4juZYsYdxTitVH.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 5.246,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/po4ZIt6XI9kyKMLtEipZxjbeYGu.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.206,
"vote_count": 9,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/23ri7fNgny0U862aZavtxzDMdpT.jpg",
"height": 2250,
"iso_639_1": "en",
"vote_average": 5.198,
"vote_count": 7,
"width": 1500
},
{
"aspect_ratio": 0.667,
"file_path": "/7j7bYIfUsfwGJv3ZyitmbSRbTua.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.19,
"vote_count": 5,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/q9TVqJSHfJPsEJGHtxHuBvOdKu9.jpg",
"height": 2250,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 18,
"width": 1500
},
{
"aspect_ratio": 0.667,
"file_path": "/4TlhNaRkwLAQxBkgYERQNulanZq.jpg",
"height": 2250,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 1500
},
{
"aspect_ratio": 0.667,
"file_path": "/hv3gRTZWgsrJIasIt6Gz6GjczfF.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/69qAiuc6AddM0fyV5xR3w03xxP9.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/un9ZQUwuQGJxKu0V035nulEqadP.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/ogENMIitBq6ylxGAQ5Szem60TAB.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/6b68fd3p0OpRXJZfZGLQ9Gs7kzl.jpg",
"height": 2100,
"iso_639_1": "pt",
"vote_average": 5.172,
"vote_count": 1,
"width": 1400
},
{
"aspect_ratio": 0.712,
"file_path": "/lChi53KTdZvj2Ohb2oQ9UsNEQM.jpg",
"height": 1500,
"iso_639_1": "pt",
"vote_average": 5.172,
"vote_count": 1,
"width": 1068
},
{
"aspect_ratio": 0.667,
"file_path": "/okufSToV75PV7QKVP2jDqtZe2iy.jpg",
"height": 1500,
"iso_639_1": "pt",
"vote_average": 5.172,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/11YekasgqE98jRAi1nDY6ojYYup.jpg",
"height": 2550,
"iso_639_1": "pt",
"vote_average": 5.172,
"vote_count": 1,
"width": 1700
},
{
"aspect_ratio": 0.667,
"file_path": "/18ZUYhplwv4akoE2ehqoVDkX2bS.jpg",
"height": 2100,
"iso_639_1": "pt",
"vote_average": 5.172,
"vote_count": 1,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/ge8JYwRQj3LmnkHlP3BWHZrTUUs.jpg",
"height": 2984,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 1990
},
{
"aspect_ratio": 0.667,
"file_path": "/sAqHSEfPbRQtud4gcSBFpe4KrDd.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.666,
"file_path": "/mCA9VTvNNMalJ0WBoUcjxMh4UJV.jpg",
"height": 1763,
"iso_639_1": "it",
"vote_average": 5.172,
"vote_count": 1,
"width": 1175
},
{
"aspect_ratio": 0.667,
"file_path": "/2JuJiJv6sNFQqiGDRku9jNq0tLR.jpg",
"height": 1200,
"iso_639_1": "es",
"vote_average": 5.172,
"vote_count": 1,
"width": 800
},
{
"aspect_ratio": 0.748,
"file_path": "/zS7nlslqXeuVkobhlSpiYvQqnL6.jpg",
"height": 750,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 561
},
{
"aspect_ratio": 0.68,
"file_path": "/tOq9TSbz3HTbpofKkK0YupMe9zS.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 680
},
{
"aspect_ratio": 0.667,
"file_path": "/1umjD6IizxkMzopCy1YEH3w15OE.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/8IgBeMM5Nc1rFTK0WRiFPHpqWhP.jpg",
"height": 3000,
"iso_639_1": "zh",
"vote_average": 5.172,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/32YEHCCaizow02AzY6VnHwqvB32.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.118,
"vote_count": 4,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/w2nomdLWD2PoyHT2eLL4gMLRC7M.jpg",
"height": 1500,
"iso_639_1": "hu",
"vote_average": 5.106,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/6I9sV5MYI9O3jrJDU7zAsvPJ7Ve.jpg",
"height": 1740,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 1160
},
{
"aspect_ratio": 0.68,
"file_path": "/uqO7fvzTzFKbWMZWmT98TfSqWg7.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 680
},
{
"aspect_ratio": 0.68,
"file_path": "/A5hTIFhU4VeTACmfmpfqkJI4Xcf.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 680
},
{
"aspect_ratio": 0.667,
"file_path": "/aQZNM2uCcfcJ4MlMLGWiqfFRhEC.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.68,
"file_path": "/wlCDJOev76m3R8z6zYK4hRGzPVV.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 680
},
{
"aspect_ratio": 0.68,
"file_path": "/an61rOKh5Udo6Gj7wyJ5zIokVuU.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 680
},
{
"aspect_ratio": 0.68,
"file_path": "/9naPmi8qNCWEWpEsloiung42Hwu.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 680
},
{
"aspect_ratio": 0.667,
"file_path": "/9qxToguwcBkEhsneAOx6ze84o20.jpg",
"height": 2562,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1708
},
{
"aspect_ratio": 0.667,
"file_path": "/9oJZplagNPxzPjMxNzFTIxssAqK.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/9Yb5cysImsjOdecFPbdbQ17ZFSE.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.748,
"file_path": "/nTukracLnzJqFS1tQiskMG0GZv9.jpg",
"height": 750,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 561
},
{
"aspect_ratio": 0.748,
"file_path": "/1w2mt47mneK211kzeOPjJfzheOL.jpg",
"height": 750,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 561
},
{
"aspect_ratio": 0.667,
"file_path": "/wF2WFsCA2Os2x88Grh7A82004AN.jpg",
"height": 750,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 500
},
{
"aspect_ratio": 0.667,
"file_path": "/wnDCUHCK9nJOQtTCobM9GCUTHbi.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/4ltafNQAjz9jhZ4xPN3eLGPD5P8.jpg",
"height": 3000,
"iso_639_1": "ru",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.68,
"file_path": "/dzESVxZneQ7w72ylHOS5LWWsS0p.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 680
},
{
"aspect_ratio": 0.71,
"file_path": "/eU9KhtrAZHtVihebeg9zVQSKL4n.jpg",
"height": 2818,
"iso_639_1": "zh",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/o9AuCWG3DINPw4vXWo8CXMJ0v5i.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1400
}
]
}Authorizations
Path Parameters
integer
Example:
"4614"
Response
200 - application/json
OK
Show child attributes
Show child attributes
Example:
[
{
"aspect_ratio": 1.778,
"file_path": "/c1aBrG5s5xFa6Tbnihu2Hhj4t2q.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.388,
"vote_count": 4,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/v0r0gHxiD1zOyT7fv6BXOBBRx55.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.312,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/qmcoEOrTm6BcgR4iO7KBQKE9AKT.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.264,
"vote_count": 8,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/6s3ftX4a1kECPCb1Ewq3GLhVFnn.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.246,
"vote_count": 2,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/j4R8I75CYxxHQCHeqiWvFkMkhyR.jpg",
"height": 720,
"iso_639_1": "en",
"vote_average": 5.246,
"vote_count": 2,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/rHKRZCBpDFSNc45kzyf665LJYp3.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.198,
"vote_count": 7,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/4VuCtYBvZGq6Rk3gloigwlsTefE.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.19,
"vote_count": 5,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/bzLWRkpQcobvZSx5j4XqFr5Sj52.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.18,
"vote_count": 3,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/noaplBUaObFWC5zrFgXgzRsHQcJ.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/bE9yoQKtvvvLIi6EnmY1qcbmYzO.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.18,
"vote_count": 3,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/n4LjDhNFMHtCQ2Prjh0ZA1ioL6W.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.18,
"vote_count": 3,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/aNBABKjPSzJY2NlSUOyJD6CDKTR.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.18,
"vote_count": 3,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/euuK8owCrdiz0HMj8iVhhquPhDv.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.18,
"vote_count": 3,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/lM8rTWLQbNr2sCRsD2mUan82kcv.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/cCjwGsBwbFmlM3eir7EV8inKZXg.jpg",
"height": 1620,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 2880
},
{
"aspect_ratio": 1.778,
"file_path": "/siSk7Wr8zMHyRJIMpHqmHhMKKX1.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/iyWRXAywVJk6JtEMVS98nySynfm.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/eEx0r54UPod07R6M3aDat799iwy.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/czWEUMrIcTaOlm56gDE8sD0VRQ9.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/woPeZyLwTZetAYHPTHb3QIa1Vq3.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/v3zyZcaNyBgdAsqknUOuSAvbAXT.jpg",
"height": 720,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/fkKJcLPNqocskaDddoETYWIXiF8.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/htXh57mUS1YinlxZ2nNSb8GFJZG.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/8U90YMrkkAxpDjyxCHrwgVnwHdC.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/ms8XxpJwTPYaUcbwhO2kJS6SGVM.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.128,
"vote_count": 6,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/2ey9kXymyGInFEOQ6hgMHwD70i4.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.118,
"vote_count": 4,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/kVYqvyqTh2Sk3THyX9NiNegkbq4.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.118,
"vote_count": 4,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/5rnL7gIZQvYEKSFTxehqnGcG88u.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 5.118,
"vote_count": 4,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/plpXmBlNzeSiINQNrpNuKYGgd7k.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/uwB6YRhNcjq7JwXHqtcqWtmnA3E.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/cMgTFiR5CMzXszLaQQcBvwvbDKA.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/yD1R7QCNqrcaf15AxkLbgRLI9Dz.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/tMNvDXbv0YeioKlM955M9adH3ul.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/wsU1R48t2V3cjsbHTj68JoDEo8G.jpg",
"height": 1080,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/949JxBlacQOYqgCK38RaXIe5uvq.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/tU385Qu6yMGptCWGkkDvRT976H4.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/tETyYM6ZtvPBc8VHKyHlty7LZ8S.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/xlBGwQ48WupnEfaXQ1aSVaTX1FT.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/dw7cgoB1intvT7J3Ft0HMG4OeJt.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/ligtQorIbGwJdPw8I4wYUGqe4dQ.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/6fqaFmi1ruY4B3MQNB68DeJbom1.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/iL8fUdkxoptoA6cjGGTGck8xHEy.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/ftltZTp03sG9ajqz8VTrt4vGVKT.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/jG5tS9nqHEyMweVL9xfVhpRfujn.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.779,
"file_path": "/sLddPTQfGXCRjRluAcBWhaluYVU.jpg",
"height": 1536,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 2732
},
{
"aspect_ratio": 1.778,
"file_path": "/aHXliJNFBYKZ6n9dM1XB65TF9sz.jpg",
"height": 1152,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 2048
},
{
"aspect_ratio": 1.778,
"file_path": "/uNt1oIeD1yue3zVWKQSHAH3V7Dd.jpg",
"height": 1620,
"iso_639_1": null,
"vote_average": 5.106,
"vote_count": 2,
"width": 2880
},
{
"aspect_ratio": 1.78,
"file_path": "/uZy2abTIozTa3Fr3TC4SVAMOT1h.jpg",
"height": 1348,
"iso_639_1": "en",
"vote_average": 5.044,
"vote_count": 3,
"width": 2400
},
{
"aspect_ratio": 1.778,
"file_path": "/kNhP4jLvkuKMFYt5BAMUfhZxlBr.jpg",
"height": 810,
"iso_639_1": null,
"vote_average": 4.938,
"vote_count": 7,
"width": 1440
},
{
"aspect_ratio": 1.778,
"file_path": "/bJxWw46wq0ZoEO7wexmgYvekctK.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/fSj6Jk5UVgPwIrp9eGp154ChDk6.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/qBjJWd7OWokLzN0Uvd1D6C09lfX.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/xWRWC5budUW4S2glDMUlpGHYoSx.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/myqSeh2GY3rp1BoLRcUi1W9aN6U.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/68BC0dzmUcWzWaHHT4CMZc19SUJ.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/nn3SuLTO4hum8yAxaY4ql8h6kRk.jpg",
"height": 1620,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2880
},
{
"aspect_ratio": 1.778,
"file_path": "/8hISLF4hfsIX4SAN9535nWSdDqH.jpg",
"height": 1080,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/9XefvO82nLyKUiJGCvJTP8Y9eB.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/bqnX5lAn2fpg3RSttQojM2zOFva.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/2KzCojE9i0vQjdP6uvWZFKohzHu.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/xcNmG5xncjJQ2iXRwxmWVPFPTB8.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
}
]
Example:
4614
Show child attributes
Show child attributes
Example:
[
{
"aspect_ratio": 4.07,
"file_path": "/i25t4OpgxgXcoSyFWkf6a4T4p0S.png",
"height": 1045,
"iso_639_1": "en",
"vote_average": 5.312,
"vote_count": 1,
"width": 4253
},
{
"aspect_ratio": 1.115,
"file_path": "/qPPt1TxKmHhyjumbHdIJchBUVdq.png",
"height": 1483,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1654
},
{
"aspect_ratio": 4.082,
"file_path": "/diVB8JTn9xv3OGFCVeTxztWtx0l.svg",
"height": 490,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 4.393,
"file_path": "/1BCTPhZw1onX2E2R0NxJDSKzDjN.png",
"height": 183,
"iso_639_1": "es",
"vote_average": 0,
"vote_count": 0,
"width": 804
},
{
"aspect_ratio": 3.682,
"file_path": "/vhMlNgmqgSba5n0DpGkwS8c61rb.png",
"height": 346,
"iso_639_1": "th",
"vote_average": 0,
"vote_count": 0,
"width": 1274
},
{
"aspect_ratio": 4.458,
"file_path": "/j4eXdYvVpOrYQgHUyQkH90HpwjA.png",
"height": 286,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1275
}
]
Show child attributes
Show child attributes
Example:
[
{
"aspect_ratio": 0.667,
"file_path": "/mBcu8d6x6zB1el3MPNl7cZQEQ31.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.454,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/2exOHePjOTquUsbThPGhuEjYTyA.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.798,
"vote_count": 17,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/19ht0bW0v1BzQO3WO319R9EXSE6.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.456,
"vote_count": 7,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/oo1GKnEKJuF4iaILFEDhWN1Qimy.jpg",
"height": 3000,
"iso_639_1": "zh",
"vote_average": 5.454,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/lSTchtc26YNdOjdKvZtLs22SokL.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.326,
"vote_count": 7,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/rkWK3hcCiFwtIhLYnTPKjcZwTTN.jpg",
"height": 3000,
"iso_639_1": "es",
"vote_average": 5.312,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/zdRSNQUaMcZpaGKfZDdTXNXATAY.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 5.312,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/3MboAgxRirTfqHx8AI7HU5di2Fz.jpg",
"height": 3000,
"iso_639_1": "zh",
"vote_average": 5.312,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/4YQyYx45DZNwYVgVE3fafpymB6d.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 5.312,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.68,
"file_path": "/mZmMmFw6E1zWRG26cg6FXA2Z3Dg.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.312,
"vote_count": 1,
"width": 680
},
{
"aspect_ratio": 0.667,
"file_path": "/fi8EvaWtL5CvoielOjjVvTr7ux3.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 5.276,
"vote_count": 12,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/qg7riUVREGz2J7050epWwZFNFFm.jpg",
"height": 2250,
"iso_639_1": "en",
"vote_average": 5.264,
"vote_count": 8,
"width": 1500
},
{
"aspect_ratio": 0.667,
"file_path": "/eoj15m14Zpf2bUWXqNIs7itZK9w.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 5.258,
"vote_count": 6,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/wjqzKd664dRoOSZUFn12wzUuVNO.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 5.252,
"vote_count": 4,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/abjNx4jqvaJn5UvsuLaBVRVndyJ.jpg",
"height": 1500,
"iso_639_1": "pt",
"vote_average": 5.246,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/cmtoEreYqO1NR4juZYsYdxTitVH.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 5.246,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/po4ZIt6XI9kyKMLtEipZxjbeYGu.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.206,
"vote_count": 9,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/23ri7fNgny0U862aZavtxzDMdpT.jpg",
"height": 2250,
"iso_639_1": "en",
"vote_average": 5.198,
"vote_count": 7,
"width": 1500
},
{
"aspect_ratio": 0.667,
"file_path": "/7j7bYIfUsfwGJv3ZyitmbSRbTua.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.19,
"vote_count": 5,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/q9TVqJSHfJPsEJGHtxHuBvOdKu9.jpg",
"height": 2250,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 18,
"width": 1500
},
{
"aspect_ratio": 0.667,
"file_path": "/4TlhNaRkwLAQxBkgYERQNulanZq.jpg",
"height": 2250,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 1500
},
{
"aspect_ratio": 0.667,
"file_path": "/hv3gRTZWgsrJIasIt6Gz6GjczfF.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/69qAiuc6AddM0fyV5xR3w03xxP9.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/un9ZQUwuQGJxKu0V035nulEqadP.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/ogENMIitBq6ylxGAQ5Szem60TAB.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.18,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/6b68fd3p0OpRXJZfZGLQ9Gs7kzl.jpg",
"height": 2100,
"iso_639_1": "pt",
"vote_average": 5.172,
"vote_count": 1,
"width": 1400
},
{
"aspect_ratio": 0.712,
"file_path": "/lChi53KTdZvj2Ohb2oQ9UsNEQM.jpg",
"height": 1500,
"iso_639_1": "pt",
"vote_average": 5.172,
"vote_count": 1,
"width": 1068
},
{
"aspect_ratio": 0.667,
"file_path": "/okufSToV75PV7QKVP2jDqtZe2iy.jpg",
"height": 1500,
"iso_639_1": "pt",
"vote_average": 5.172,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/11YekasgqE98jRAi1nDY6ojYYup.jpg",
"height": 2550,
"iso_639_1": "pt",
"vote_average": 5.172,
"vote_count": 1,
"width": 1700
},
{
"aspect_ratio": 0.667,
"file_path": "/18ZUYhplwv4akoE2ehqoVDkX2bS.jpg",
"height": 2100,
"iso_639_1": "pt",
"vote_average": 5.172,
"vote_count": 1,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/ge8JYwRQj3LmnkHlP3BWHZrTUUs.jpg",
"height": 2984,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 1990
},
{
"aspect_ratio": 0.667,
"file_path": "/sAqHSEfPbRQtud4gcSBFpe4KrDd.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.666,
"file_path": "/mCA9VTvNNMalJ0WBoUcjxMh4UJV.jpg",
"height": 1763,
"iso_639_1": "it",
"vote_average": 5.172,
"vote_count": 1,
"width": 1175
},
{
"aspect_ratio": 0.667,
"file_path": "/2JuJiJv6sNFQqiGDRku9jNq0tLR.jpg",
"height": 1200,
"iso_639_1": "es",
"vote_average": 5.172,
"vote_count": 1,
"width": 800
},
{
"aspect_ratio": 0.748,
"file_path": "/zS7nlslqXeuVkobhlSpiYvQqnL6.jpg",
"height": 750,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 561
},
{
"aspect_ratio": 0.68,
"file_path": "/tOq9TSbz3HTbpofKkK0YupMe9zS.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.172,
"vote_count": 1,
"width": 680
},
{
"aspect_ratio": 0.667,
"file_path": "/1umjD6IizxkMzopCy1YEH3w15OE.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 5.172,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/8IgBeMM5Nc1rFTK0WRiFPHpqWhP.jpg",
"height": 3000,
"iso_639_1": "zh",
"vote_average": 5.172,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/32YEHCCaizow02AzY6VnHwqvB32.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 5.118,
"vote_count": 4,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/w2nomdLWD2PoyHT2eLL4gMLRC7M.jpg",
"height": 1500,
"iso_639_1": "hu",
"vote_average": 5.106,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/6I9sV5MYI9O3jrJDU7zAsvPJ7Ve.jpg",
"height": 1740,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 1160
},
{
"aspect_ratio": 0.68,
"file_path": "/uqO7fvzTzFKbWMZWmT98TfSqWg7.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 680
},
{
"aspect_ratio": 0.68,
"file_path": "/A5hTIFhU4VeTACmfmpfqkJI4Xcf.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 680
},
{
"aspect_ratio": 0.667,
"file_path": "/aQZNM2uCcfcJ4MlMLGWiqfFRhEC.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.68,
"file_path": "/wlCDJOev76m3R8z6zYK4hRGzPVV.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 680
},
{
"aspect_ratio": 0.68,
"file_path": "/an61rOKh5Udo6Gj7wyJ5zIokVuU.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 680
},
{
"aspect_ratio": 0.68,
"file_path": "/9naPmi8qNCWEWpEsloiung42Hwu.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 5.106,
"vote_count": 2,
"width": 680
},
{
"aspect_ratio": 0.667,
"file_path": "/9qxToguwcBkEhsneAOx6ze84o20.jpg",
"height": 2562,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1708
},
{
"aspect_ratio": 0.667,
"file_path": "/9oJZplagNPxzPjMxNzFTIxssAqK.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/9Yb5cysImsjOdecFPbdbQ17ZFSE.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.748,
"file_path": "/nTukracLnzJqFS1tQiskMG0GZv9.jpg",
"height": 750,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 561
},
{
"aspect_ratio": 0.748,
"file_path": "/1w2mt47mneK211kzeOPjJfzheOL.jpg",
"height": 750,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 561
},
{
"aspect_ratio": 0.667,
"file_path": "/wF2WFsCA2Os2x88Grh7A82004AN.jpg",
"height": 750,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 500
},
{
"aspect_ratio": 0.667,
"file_path": "/wnDCUHCK9nJOQtTCobM9GCUTHbi.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/4ltafNQAjz9jhZ4xPN3eLGPD5P8.jpg",
"height": 3000,
"iso_639_1": "ru",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.68,
"file_path": "/dzESVxZneQ7w72ylHOS5LWWsS0p.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 680
},
{
"aspect_ratio": 0.71,
"file_path": "/eU9KhtrAZHtVihebeg9zVQSKL4n.jpg",
"height": 2818,
"iso_639_1": "zh",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/o9AuCWG3DINPw4vXWo8CXMJ0v5i.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1400
}
]
Was this page helpful?
⌘I