Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url https://api.themoviedb.org/3/movie/18/images \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.themoviedb.org/3/movie/18/images"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.themoviedb.org/3/movie/18/images', 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/18/images",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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/18/images"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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/18/images")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/movie/18/images")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"backdrops": [
{
"aspect_ratio": 1.778,
"file_path": "/wgvc3PmjQGtYYDWaeuV867mnFDs.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 6.2,
"vote_count": 10,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/dwN0kPGrLbFRxyL3F3J3t4ShQx.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 6.042,
"vote_count": 12,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/vKZ6VFTf6zhN0QfcygiE3eduo3r.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 3.334,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/cwBMFjJpTIGWoVwK192NlOXNAr8.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 3.334,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/8WI1AwshQcRAu1A5pIKbwTvhYvO.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 3.334,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/gEFe2joIQUopBmMPXOHPxuX2f4u.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 3.334,
"vote_count": 3,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/y7p9ucY8kSdWonALkd2yPYmMmSQ.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 3.334,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/1wF2T6PNA1QIBDdzOBeHjqQM9WJ.jpg",
"height": 1080,
"iso_639_1": "en",
"vote_average": 3.334,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/vIxqSXbU0DTnLz88Z21o4zekoUe.jpg",
"height": 2160,
"iso_639_1": "it",
"vote_average": 3.334,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/uIgcXq0y6cxMYFAglBGECOFVyPV.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 3.334,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/q5GVnJWd1L0c1uXQXQCnJZChG7C.jpg",
"height": 1080,
"iso_639_1": "pt",
"vote_average": 3.334,
"vote_count": 3,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/cjFFNmp9ZXzxjvRR2ADxtKvQhyQ.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 2.278,
"vote_count": 3,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/dZ1IRnvoFV9qu0JIO0H3KIWKiM9.jpg",
"height": 1080,
"iso_639_1": "en",
"vote_average": 1.75,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.78,
"file_path": "/dAOV7LIfb9sv8bqCbIbk37Bcisv.jpg",
"height": 1149,
"iso_639_1": null,
"vote_average": 1.75,
"vote_count": 2,
"width": 2045
},
{
"aspect_ratio": 1.778,
"file_path": "/iBi8fOxQDbmTM2be0NnImkufpl7.jpg",
"height": 720,
"iso_639_1": "en",
"vote_average": 1.75,
"vote_count": 2,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/3CvMKbEJPRrjBxTYdhaNktgQvvD.jpg",
"height": 2160,
"iso_639_1": "fr",
"vote_average": 1.75,
"vote_count": 2,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/bx1W729hyWQqNQoiq9LsX30FBf.jpg",
"height": 1606,
"iso_639_1": null,
"vote_average": 1.75,
"vote_count": 2,
"width": 2856
},
{
"aspect_ratio": 1.779,
"file_path": "/xM3Skp43605TuoynmQ1tKjTMCHN.jpg",
"height": 1124,
"iso_639_1": null,
"vote_average": 1.434,
"vote_count": 5,
"width": 2000
},
{
"aspect_ratio": 1.778,
"file_path": "/9bB8ybYe6mnDrz2p8nxossPjTIt.jpg",
"height": 1080,
"iso_639_1": "pt",
"vote_average": 1.434,
"vote_count": 5,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/luIu5iEFtrS34VpCuReh8TunDQ2.jpg",
"height": 1080,
"iso_639_1": "en",
"vote_average": 1.222,
"vote_count": 3,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/2BVMlRJQ9Hm45s5rvtX49kl2xkl.jpg",
"height": 720,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/zTBPoCA4a7OjLYnNOiLYyI2Ao6L.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0.166,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/issxzRwA3iLoQotbW2w2E2lqMkr.jpg",
"height": 1080,
"iso_639_1": "de",
"vote_average": 0.166,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/7wI5lpdE2hbxJb0P0T3OhIIbDWR.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0.166,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/gUucB162FTVi8AjjkeFDqaDUwkc.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0.166,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/yYazXbcETO1NT5GCMhkCKDTTzyL.jpg",
"height": 1080,
"iso_639_1": "fr",
"vote_average": 0.166,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/lsiJeJVMlQXMvUIqNZMNwU1LEJg.jpg",
"height": 2160,
"iso_639_1": "fr",
"vote_average": 0.166,
"vote_count": 2,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/7qy7SPxxj7IhFu4cJEf1vgPAuIB.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/7Z5er1kSnC6RfOzfk7QOSnlQIOk.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/kA3Uilvfns3DukwyfcYBPooM4kM.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/8a35VAcLRNk7YMCM0gcqnIQPGIq.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/qPf2WYzWDJWWGai8uULvryuLASm.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/5gc2HSLYHFVsPWp64SwopT6UjhV.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/gvd0Gy7quhD3KrDQ5avlTDIvczK.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/iY0Wcjnaicd2vsrNqli5sMvqgRg.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/6T82ZAfNT0F95iQiQVKZlbgIpwL.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/mlUkowb4QXYSfLypFv7J4JXLfQ9.jpg",
"height": 2160,
"iso_639_1": "sv",
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/8l18Jy4MMprqPZdjBOlnPzigudD.jpg",
"height": 1080,
"iso_639_1": "fi",
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/7KOu8xmG4GF6NIsanDInskMwuz7.jpg",
"height": 1080,
"iso_639_1": "fi",
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/3LLhHo8UJgwQU36k4TOdAAdWdLd.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/ltm0rkMHQ86oFSAnc6m158S31PM.jpg",
"height": 2160,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/40YR7Jj7cr39CkQfEvcJAHQxKLL.jpg",
"height": 2160,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/dYHG90ckeXRzA6evON5mmymgHM1.jpg",
"height": 1080,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/uzfSwj49DtIcspxMoZEJWyvXZtv.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/eFWDVRtgqVPjHRDpA66woDhdkdc.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 3840
}
],
"id": 18,
"logos": [
{
"aspect_ratio": 3.058,
"file_path": "/mInxmYm9JPKFpcphd8Gpf8dMJxE.png",
"height": 258,
"iso_639_1": "en",
"vote_average": 3.334,
"vote_count": 1,
"width": 789
},
{
"aspect_ratio": 5.373,
"file_path": "/u1bPoiDo22tcxGrUL66OBgEqYVC.png",
"height": 804,
"iso_639_1": "sv",
"vote_average": 3.334,
"vote_count": 1,
"width": 4320
},
{
"aspect_ratio": 4.898,
"file_path": "/229qsNzG53Oew6YGYAlKMCfAnBS.png",
"height": 196,
"iso_639_1": "zh",
"vote_average": 3.334,
"vote_count": 1,
"width": 960
},
{
"aspect_ratio": 4.482,
"file_path": "/ydEZ3N61ioPqJnQFXMwiK1sX9B9.png",
"height": 548,
"iso_639_1": "mk",
"vote_average": 3.334,
"vote_count": 1,
"width": 2456
},
{
"aspect_ratio": 5.038,
"file_path": "/wrV8ixHZfqJI6AqhXUUJGpyebZG.png",
"height": 846,
"iso_639_1": "fr",
"vote_average": 3.334,
"vote_count": 1,
"width": 4262
},
{
"aspect_ratio": 5.895,
"file_path": "/nNK5ZOynlI8bQ40lVtRebQutM2w.png",
"height": 344,
"iso_639_1": "pt",
"vote_average": 3.334,
"vote_count": 3,
"width": 2028
},
{
"aspect_ratio": 3.939,
"file_path": "/qlhWGUICAp3HmU7MTv605Ayptet.png",
"height": 198,
"iso_639_1": "en",
"vote_average": 3.334,
"vote_count": 1,
"width": 780
},
{
"aspect_ratio": 8.535,
"file_path": "/7XsTjUdlgGlaZZMpdoL7NOT07Hn.png",
"height": 256,
"iso_639_1": "en",
"vote_average": 1.75,
"vote_count": 2,
"width": 2185
},
{
"aspect_ratio": 11.725,
"file_path": "/mDDVmF4m4jqscr4TDvTmFQq18bJ.png",
"height": 80,
"iso_639_1": "pt",
"vote_average": 0.958,
"vote_count": 4,
"width": 938
},
{
"aspect_ratio": 13.083,
"file_path": "/6p458fPQy0QSM9xPx023xvPZzKF.png",
"height": 60,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 2,
"width": 785
},
{
"aspect_ratio": 4.482,
"file_path": "/34JXia7ijoBvlSiyLbiBZVnmGat.png",
"height": 548,
"iso_639_1": "mk",
"vote_average": 0.166,
"vote_count": 1,
"width": 2456
},
{
"aspect_ratio": 4.482,
"file_path": "/wnoFZGgQgAWZH9joGZlndYfCa2Q.svg",
"height": 548,
"iso_639_1": "mk",
"vote_average": 0.166,
"vote_count": 1,
"width": 2456
},
{
"aspect_ratio": 6.39,
"file_path": "/5hnRYyRg4gA1JVdvJkZAfF8KNw5.png",
"height": 123,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 786
},
{
"aspect_ratio": 6.248,
"file_path": "/jK3zYFD2bkZ2LLKWmS7xOhQFb6Z.png",
"height": 125,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 781
},
{
"aspect_ratio": 5.681,
"file_path": "/xEMGmvxJVnkvmvzM449onhbLlQS.png",
"height": 138,
"iso_639_1": "es",
"vote_average": 0,
"vote_count": 0,
"width": 784
},
{
"aspect_ratio": 3.949,
"file_path": "/p6JQJxczUaMiaJjaqkq0p8b4CZW.png",
"height": 198,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 782
},
{
"aspect_ratio": 2.471,
"file_path": "/qUAggXj5MvMsc5bkbLp02VhjuwV.png",
"height": 308,
"iso_639_1": "es",
"vote_average": 0,
"vote_count": 0,
"width": 761
},
{
"aspect_ratio": 5.765,
"file_path": "/wYuNdkoHDYnyio3yqQHXIWWwV43.png",
"height": 136,
"iso_639_1": "de",
"vote_average": 0,
"vote_count": 0,
"width": 784
},
{
"aspect_ratio": 3.169,
"file_path": "/oSydYkbbczu7Y28CuGAW5odBc2k.png",
"height": 248,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 786
},
{
"aspect_ratio": 3.939,
"file_path": "/1evez5Ay7M04aGhg1efSgdCRueF.png",
"height": 198,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 780
},
{
"aspect_ratio": 5.757,
"file_path": "/hrQT9Av8KQnLq620gqfTzfTfqVM.png",
"height": 136,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 783
},
{
"aspect_ratio": 4.639,
"file_path": "/8Q8EBjQOnpGayrtdYvyP12jccGa.png",
"height": 169,
"iso_639_1": "pl",
"vote_average": 0,
"vote_count": 0,
"width": 784
},
{
"aspect_ratio": 5.232,
"file_path": "/dCQXWxU5GB88qGK4HyyxUM3ijPO.png",
"height": 151,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 790
},
{
"aspect_ratio": 5.947,
"file_path": "/zslpNevHVxIWZ03E2fqT2imlaY1.png",
"height": 132,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 785
},
{
"aspect_ratio": 4.01,
"file_path": "/t7gtrgY0Uv4rko4pugMwKvd5Ni7.png",
"height": 195,
"iso_639_1": "cs",
"vote_average": 0,
"vote_count": 0,
"width": 782
},
{
"aspect_ratio": 6.653,
"file_path": "/msVBaxnGvE57AOLDvFDVpaIZqaV.png",
"height": 300,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1996
},
{
"aspect_ratio": 3.262,
"file_path": "/wKdBKOP20lNaD7eglFXdUKMuGy0.png",
"height": 385,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1256
},
{
"aspect_ratio": 5.64,
"file_path": "/voKDt53GGpsDr33LoIOz4kuRKAV.png",
"height": 139,
"iso_639_1": "ru",
"vote_average": 0,
"vote_count": 0,
"width": 784
},
{
"aspect_ratio": 8.153,
"file_path": "/om3OnySFeJ8Y4JW2fz01rZ5Clec.png",
"height": 268,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 2185
},
{
"aspect_ratio": 4.27,
"file_path": "/lo0Aar8esbXNlPCpE06LTGQWuWt.png",
"height": 215,
"iso_639_1": "fi",
"vote_average": 0,
"vote_count": 0,
"width": 918
},
{
"aspect_ratio": 2.958,
"file_path": "/1mZHjtxEYPLMdrfeOlqsAOqORTH.png",
"height": 692,
"iso_639_1": "zh",
"vote_average": 0,
"vote_count": 0,
"width": 2047
},
{
"aspect_ratio": 5.765,
"file_path": "/f74cEVDsN8lJ1aOfHl0SYf0fYst.png",
"height": 136,
"iso_639_1": "de",
"vote_average": 0,
"vote_count": 0,
"width": 784
},
{
"aspect_ratio": 5.93,
"file_path": "/s8bbqvmmDFxupqZu3HYHhmeNzaM.png",
"height": 200,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 1186
},
{
"aspect_ratio": 5.373,
"file_path": "/1scxTRo3EHtL0ab1eaDG4m1L4Ws.png",
"height": 804,
"iso_639_1": "sv",
"vote_average": 0,
"vote_count": 0,
"width": 4320
},
{
"aspect_ratio": 2.25,
"file_path": "/dwwFetJRrvGmXkvKDSXG6K97zez.png",
"height": 948,
"iso_639_1": "cn",
"vote_average": 0,
"vote_count": 0,
"width": 2133
},
{
"aspect_ratio": 4.894,
"file_path": "/wpl6n06xEcGYQ8BgYPS5orwsden.png",
"height": 377,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 1845
},
{
"aspect_ratio": 6.246,
"file_path": "/zSDstyuciOMnqfYgf8RNiIzX5os.svg",
"height": 333,
"iso_639_1": "ru",
"vote_average": 0,
"vote_count": 0,
"width": 2080
},
{
"aspect_ratio": 5.895,
"file_path": "/zRgUtmix5Ah6rbwzoSV5TtuoOHa.png",
"height": 344,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 2028
}
],
"posters": [
{
"aspect_ratio": 0.667,
"file_path": "/9dw840VOr3YBkrYxtJ7wuKNAoK5.jpg",
"height": 3000,
"iso_639_1": "zh",
"vote_average": 10,
"vote_count": 5,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/fPtlCO1yQtnoLHOwKtWz7db6RGU.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 7.318,
"vote_count": 11,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/u7mjiMdKK1ooSYuOKS4aAWIJlJa.jpg",
"height": 3000,
"iso_639_1": "sv",
"vote_average": 3.334,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/8HWCaymY2FNwjC66jWDqT6FzEKr.jpg",
"height": 3000,
"iso_639_1": "cs",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/22hWrBQkPAbN7y5loIORYdNfT45.jpg",
"height": 1500,
"iso_639_1": "he",
"vote_average": 3.334,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/bqjMBDuZwws5IIpMUL5OypsqVwg.jpg",
"height": 3000,
"iso_639_1": "hu",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/zL3pSAA0WfqfUMI7HdrBIMZoBu5.jpg",
"height": 750,
"iso_639_1": "pl",
"vote_average": 3.334,
"vote_count": 1,
"width": 500
},
{
"aspect_ratio": 0.667,
"file_path": "/npcHgyp5MmKMe4lWqJi2ma1CuhC.jpg",
"height": 3000,
"iso_639_1": "ko",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/nI0VC4EXwA88g1UZ66dCpsrQ9Co.jpg",
"height": 3000,
"iso_639_1": "it",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/xe6KUhqOg4c7KlfPJid3SNPteHX.jpg",
"height": 3000,
"iso_639_1": "sk",
"vote_average": 3.334,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/wNTpXK17ctcrERI6Ts45ZoTT7RY.jpg",
"height": 3000,
"iso_639_1": "fr",
"vote_average": 3.334,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/uVQPxSW6blXKgoCnkpnzxjSIZhR.jpg",
"height": 3000,
"iso_639_1": "fr",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/rMNBNpYAu8CHzV5HfTZXBYyewvc.jpg",
"height": 3000,
"iso_639_1": "fr",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/wDh9zQm9WDwisJuisAKsRbSz03w.jpg",
"height": 3000,
"iso_639_1": "fr",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/4IgMSK6ehZcfniZoWFRLSxEPcHS.jpg",
"height": 3000,
"iso_639_1": "es",
"vote_average": 3.334,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/xE3lZ4XNrO0ZKrUkdIxgbxMTPdz.jpg",
"height": 1600,
"iso_639_1": "ja",
"vote_average": 3.334,
"vote_count": 1,
"width": 1068
},
{
"aspect_ratio": 0.667,
"file_path": "/y30mICVaZquegYznH0RKc5dn9v5.jpg",
"height": 3000,
"iso_639_1": "uk",
"vote_average": 3.334,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/bWxuJCLgShXwOVIafyNwOpmCw0J.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 3.334,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/eqJVivI0EqYIyqkdnbpSxOpalbI.jpg",
"height": 3000,
"iso_639_1": "ro",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.7,
"file_path": "/rGQ2NGWoseiVU8kk7tgm6xR9ifz.jpg",
"height": 2048,
"iso_639_1": "zh",
"vote_average": 3.334,
"vote_count": 1,
"width": 1434
},
{
"aspect_ratio": 0.667,
"file_path": "/hBInc3xsQ33rGvJnLVDaFhxhBBa.jpg",
"height": 3000,
"iso_639_1": "mk",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/eBdnpdow5NQaLns92NhLGdRSWGa.jpg",
"height": 3000,
"iso_639_1": "de",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/RjK3yBYQcXAe4O4TGoXM2fshYT.jpg",
"height": 3000,
"iso_639_1": "de",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/bqALmWhVaqfQedyPZn7MeuOjfSk.jpg",
"height": 3000,
"iso_639_1": "ru",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/aqAAtVZKfleyCVZFvIdx174Juiw.jpg",
"height": 2100,
"iso_639_1": "ja",
"vote_average": 3.334,
"vote_count": 1,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/dj0cBw9fcLiL0xJrLP8mj6gZF9t.jpg",
"height": 2916,
"iso_639_1": "en",
"vote_average": 3.334,
"vote_count": 1,
"width": 1944
},
{
"aspect_ratio": 0.667,
"file_path": "/9I4oCsHdif8IirOIeW0hsmTpZh5.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/lGEPBTIQ0CXs20ttYtPr6rQ7fJx.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/sYYBZ4tJDGMPyPxXuLlUvZgp19k.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/8nx8sttha1Zidt73SbNncVfSwqk.jpg",
"height": 1500,
"iso_639_1": "fr",
"vote_average": 2.542,
"vote_count": 4,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/yDTfuFwJUl3JRBGEEb5jS6QhCW3.jpg",
"height": 3000,
"iso_639_1": "pt",
"vote_average": 2.542,
"vote_count": 4,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/pvIQrZymHtPv7HanIjxQMRYDiGC.jpg",
"height": 3000,
"iso_639_1": "de",
"vote_average": 2.278,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/wnps5IL8YpeJpZvciDRXt7yZF8a.jpg",
"height": 1500,
"iso_639_1": "es",
"vote_average": 2.066,
"vote_count": 5,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/tONmRKKT4pwZ3HYrDwihqRLWS6.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 2.066,
"vote_count": 5,
"width": 2000
},
{
"aspect_ratio": 0.666,
"file_path": "/r2IFRKmD0nLaJOaILGKHdF31bKy.jpg",
"height": 1034,
"iso_639_1": "es",
"vote_average": 1.75,
"vote_count": 6,
"width": 689
},
{
"aspect_ratio": 0.667,
"file_path": "/aYLd1H2XrlwP7VhCFctKUxOJKG0.jpg",
"height": 3000,
"iso_639_1": "cs",
"vote_average": 1.75,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/tAQeMpVH4TAt0FEPvfHiB2Pz9d1.jpg",
"height": 1500,
"iso_639_1": "ru",
"vote_average": 1.75,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/nxHMMzjH0Gvd45iwmLzm3mWDjQB.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 1.75,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/j7hwY6UWMuDYGbCXObEUGTgNCru.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 1.75,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/zYZBiYLZgqkcxN03Er2tQW0Q83i.jpg",
"height": 750,
"iso_639_1": "ja",
"vote_average": 1.75,
"vote_count": 2,
"width": 500
},
{
"aspect_ratio": 0.708,
"file_path": "/6jo5NtIjFlJ8sFzIbZIVXOSlCwz.jpg",
"height": 2826,
"iso_639_1": "de",
"vote_average": 1.75,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.706,
"file_path": "/t2wmI7Zt4Jep2wQc4nMaoraMMwq.jpg",
"height": 2832,
"iso_639_1": "de",
"vote_average": 1.75,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.697,
"file_path": "/llnpjLzCmkBq6dv0vNUMNHCJAF4.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 1.75,
"vote_count": 2,
"width": 1045
},
{
"aspect_ratio": 0.667,
"file_path": "/gWZz6bmuzxdfW5siVGW6IYcUHuF.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 1.75,
"vote_count": 4,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/d8ZvFbzhB4MIFKNGU3dhamfaPpg.jpg",
"height": 3000,
"iso_639_1": "de",
"vote_average": 1.75,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.666,
"file_path": "/qBgrO6BnnpXt0UnncQu49drrNRB.jpg",
"height": 1996,
"iso_639_1": "en",
"vote_average": 1.75,
"vote_count": 4,
"width": 1329
},
{
"aspect_ratio": 0.667,
"file_path": "/mRJ9NNum1KlHQfnW3iBYdFOLsuU.jpg",
"height": 1500,
"iso_639_1": "ru",
"vote_average": 1.75,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/t2fanPUgCGty1tmU9t3jtYEOEMS.jpg",
"height": 1500,
"iso_639_1": "pt",
"vote_average": 1.75,
"vote_count": 6,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/7XYQOK9etdq1H7jXO2UlLBE70k4.jpg",
"height": 900,
"iso_639_1": "pt",
"vote_average": 1.714,
"vote_count": 7,
"width": 600
},
{
"aspect_ratio": 0.667,
"file_path": "/lPXL0ECh8o4GfcYjSZaHwydJZyG.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 1.434,
"vote_count": 5,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/njoa5i0yTnKAicSNboFWP1hjyFh.jpg",
"height": 1500,
"iso_639_1": "uk",
"vote_average": 1.434,
"vote_count": 5,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/uQRs1iX5ePqMQieZL89C9yIGEXW.jpg",
"height": 1920,
"iso_639_1": "en",
"vote_average": 1.222,
"vote_count": 3,
"width": 1280
},
{
"aspect_ratio": 0.708,
"file_path": "/zZ6mWoCkwPus4dhUPO5OJDk1WeF.jpg",
"height": 2260,
"iso_639_1": "de",
"vote_average": 1.222,
"vote_count": 3,
"width": 1600
},
{
"aspect_ratio": 0.667,
"file_path": "/s2c2EYDJiSqeciWZ9VkwnzarHg6.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 1.222,
"vote_count": 3,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/kjWYd2qziS18BPQs85xE6Lb3H09.jpg",
"height": 1440,
"iso_639_1": "pt",
"vote_average": 0.854,
"vote_count": 8,
"width": 960
},
{
"aspect_ratio": 0.667,
"file_path": "/2xQTvM7w4VcKZUB5nAzdcKhJ1DE.jpg",
"height": 1500,
"iso_639_1": "pt",
"vote_average": 0.5,
"vote_count": 7,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/m1Omf6x2MTj9JH54N7PAhN4hYMC.jpg",
"height": 3000,
"iso_639_1": "cs",
"vote_average": 0.166,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/lQqjJl8vn6Ry8J61KZxrTqtzRys.jpg",
"height": 3000,
"iso_639_1": "cs",
"vote_average": 0.166,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/kpkmvEBBgqifVudi9Iuu79AyXb4.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/A4f49u3cAuBfpxutgW4TwrLUBKX.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.686,
"file_path": "/hIl2HK19B3Wxor3Ehgx3s1WPOCs.jpg",
"height": 1590,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 1,
"width": 1091
},
{
"aspect_ratio": 0.667,
"file_path": "/a62573bvy3pQwPcPanWVfoh837f.jpg",
"height": 1500,
"iso_639_1": "he",
"vote_average": 0.166,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.701,
"file_path": "/uJGTBZXADrGSs30Pc1qXGWGpZvm.jpg",
"height": 1426,
"iso_639_1": "fr",
"vote_average": 0.166,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/veHIp2oDRK14HDlgXTuWuAROIjo.jpg",
"height": 3000,
"iso_639_1": "fr",
"vote_average": 0.166,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/huxBRLmvdnRi4I1taWyjrnKThZv.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/iiZ0SVoaBxIK7WZwwVc7XcbHD1L.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/zmoMfPwBcNCXRbOlQkOTBNOO4qR.jpg",
"height": 1500,
"iso_639_1": "uk",
"vote_average": 0.166,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/xmLXRDSHhW8gTaF3xloRr1wPBb8.jpg",
"height": 1200,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 1,
"width": 800
},
{
"aspect_ratio": 0.714,
"file_path": "/tq9LKUPpk4BFsq6RmKESQdlvJKV.jpg",
"height": 1600,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 1,
"width": 1142
},
{
"aspect_ratio": 0.712,
"file_path": "/q1WE7ZXXBuYuG4C2GCcmZL9vXkm.jpg",
"height": 750,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 1,
"width": 534
},
{
"aspect_ratio": 0.75,
"file_path": "/rxxjwCFxFTb07xe5Rf5MJI1bSg7.jpg",
"height": 1200,
"iso_639_1": "sk",
"vote_average": 0.166,
"vote_count": 1,
"width": 900
},
{
"aspect_ratio": 0.667,
"file_path": "/6bV58tS7fpfAnozmiYkzRFN8r5t.jpg",
"height": 2100,
"iso_639_1": "fr",
"vote_average": 0.166,
"vote_count": 2,
"width": 1400
},
{
"aspect_ratio": 0.707,
"file_path": "/tE4mwWXF95M4Wqs2tkQqCa8ysqH.jpg",
"height": 1811,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 2,
"width": 1280
},
{
"aspect_ratio": 0.667,
"file_path": "/Q2sXW0nceeGhJNRfB6X3oVYzG0.jpg",
"height": 3000,
"iso_639_1": "tr",
"vote_average": 0.166,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/mXz3YxmaB6GLMqQSzYY6sNXNNxC.jpg",
"height": 3000,
"iso_639_1": "sv",
"vote_average": 0.166,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/7Wev5UjTkcA2zW0ctgqnuoKnpbU.jpg",
"height": 3000,
"iso_639_1": "mk",
"vote_average": 0.166,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/i4b9yLY4a7Mj7HXIWikiQh7TgSj.jpg",
"height": 1500,
"iso_639_1": "mk",
"vote_average": 0.166,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.703,
"file_path": "/5M2nOQUtt8qr6cANjGhlI8xqnrZ.jpg",
"height": 750,
"iso_639_1": "bg",
"vote_average": 0,
"vote_count": 0,
"width": 527
},
{
"aspect_ratio": 0.667,
"file_path": "/4jRnrk6J3lx0WcXBeQgrQpFCmwG.jpg",
"height": 750,
"iso_639_1": "es",
"vote_average": 0,
"vote_count": 0,
"width": 500
},
{
"aspect_ratio": 0.667,
"file_path": "/raProKa4SqAtOJg9ppb5qVfY3y1.jpg",
"height": 2100,
"iso_639_1": "de",
"vote_average": 0,
"vote_count": 0,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/1x5LQ7ADHWqCxC943ojlBeVbU8G.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/o0vC1jE8a4BUrRQk8YQKX7H2adh.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/l5hzMv2eUdTRJ7oPbDQpvmaUV5.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/tXRSV9P0b8NjX3KivYhGnMpiDcZ.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/esfmjUvswur0xUzfH3BAwyYm9aY.jpg",
"height": 3000,
"iso_639_1": "hu",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/gyGW1AMwwXzHGJ4wP8XvWbzq3rI.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/1NzJJ8WQBOnFPCdBIc0WaVTryKK.jpg",
"height": 1500,
"iso_639_1": "de",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/gqF2d3qxlcoa4t9XLsQHeqHJJc7.jpg",
"height": 1500,
"iso_639_1": "de",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/aMIPA0HTPS4LLIq7B4NzDPFLI1v.jpg",
"height": 1500,
"iso_639_1": "de",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.703,
"file_path": "/8Az5qcfudr9zOr7I2RfVB8a5ml6.jpg",
"height": 1707,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 1200
},
{
"aspect_ratio": 0.667,
"file_path": "/mjmambmR1ooGUMzPY5H7rJsHKXG.jpg",
"height": 1500,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.75,
"file_path": "/mdAjhOLmgbgRZZiamud3BVXrtfQ.jpg",
"height": 1024,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 768
},
{
"aspect_ratio": 0.667,
"file_path": "/1bbpJKPeCyl8JNGSrWGNNCdnyg.jpg",
"height": 2100,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 1400
},
{
"aspect_ratio": 0.671,
"file_path": "/e25wa3T29i2k7aDqvUGiWZXiqWs.jpg",
"height": 850,
"iso_639_1": "ko",
"vote_average": 0,
"vote_count": 0,
"width": 570
},
{
"aspect_ratio": 0.666,
"file_path": "/gB790vEKJfR1uVczYXUnubj2lQ3.jpg",
"height": 800,
"iso_639_1": "ru",
"vote_average": 0,
"vote_count": 0,
"width": 533
},
{
"aspect_ratio": 0.667,
"file_path": "/fSaCCdTBO9ypOu27zzNwQQhSeOV.jpg",
"height": 3000,
"iso_639_1": "de",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/yLJZvrtWvYoH3syjE9TTl48OCMY.jpg",
"height": 3000,
"iso_639_1": "da",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/dEiIyaXsN3lLypyxuPGXtrzw3YJ.jpg",
"height": 1500,
"iso_639_1": "ug",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.712,
"file_path": "/sxovOSYf66gwAsJVw2Hau7E625K.jpg",
"height": 750,
"iso_639_1": "ja",
"vote_average": 0,
"vote_count": 0,
"width": 534
},
{
"aspect_ratio": 0.667,
"file_path": "/A1AqYML0YWQPde3bMUMMMdLTytg.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.74,
"file_path": "/8BsCYCnP8y8sVe9ZTCTaBDOyAQ6.jpg",
"height": 946,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 700
},
{
"aspect_ratio": 0.7,
"file_path": "/twTtNUaRhL2EFC2V1sFXkYs8pip.jpg",
"height": 750,
"iso_639_1": "zh",
"vote_average": 0,
"vote_count": 0,
"width": 525
},
{
"aspect_ratio": 0.667,
"file_path": "/wxPeAzf5RxiGplvXdW6UO27dvd.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/5IFMuIo7IOKrktUVkR7aHVmDriz.jpg",
"height": 1500,
"iso_639_1": "fi",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/2RUw8ON4kxElWrng4iYa8R3vKZy.jpg",
"height": 750,
"iso_639_1": "es",
"vote_average": 0,
"vote_count": 0,
"width": 500
},
{
"aspect_ratio": 0.667,
"file_path": "/h0TlO1IJnJGKxCbWILs9LoyUoSi.jpg",
"height": 1500,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/b1MxObGwOhvXMMqiU0Im0UoStUq.jpg",
"height": 3000,
"iso_639_1": "sk",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/ijSjiD5e3iw5Vf3FlKNXE9nMq79.jpg",
"height": 1500,
"iso_639_1": "de",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.747,
"file_path": "/zd9o7KSlwSTjwhzCKevky7Ihrnb.jpg",
"height": 802,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 599
},
{
"aspect_ratio": 0.667,
"file_path": "/viYEnVyDSrjPr3S2ptwcutmY0x8.jpg",
"height": 3000,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/3Ax6g84RMUHoj1pTPO99j2BoO4E.jpg",
"height": 3000,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.709,
"file_path": "/30NYhMQllZ5k6RQL74liJMcbqdm.jpg",
"height": 940,
"iso_639_1": "uk",
"vote_average": 0,
"vote_count": 0,
"width": 666
},
{
"aspect_ratio": 0.667,
"file_path": "/gNXQDAuPUEQw34Y7IgmIKeE91Z.jpg",
"height": 3000,
"iso_639_1": "uk",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/pCfjmAGlykOnP82znFwONPyytXh.jpg",
"height": 3000,
"iso_639_1": "es",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/5be4Fbr1R9Aec0e6wRDrMJZPkBy.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.679,
"file_path": "/3qVxvrhYfKgBjyEjKyuwjrdSVkt.jpg",
"height": 1236,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 839
},
{
"aspect_ratio": 0.679,
"file_path": "/5NwPz83ZK64HAec6rkyLgupdvtX.jpg",
"height": 1236,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 839
},
{
"aspect_ratio": 0.697,
"file_path": "/wo7QzSZFeU1vC27FtB9Neu229CA.jpg",
"height": 1435,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/nhknij3s2JV6Kb8Mb6v0PvQ7mCV.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/u1JfnGa3wUTAk6C81D9osaN2uCd.jpg",
"height": 3000,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/sw0ZUU1stxA8yHC6nQYcF7n986W.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/wCzccHHc53hw7p3ykLx4KvT8JM2.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/6xz8qIXO4WS1P0JRpyNrorJrT7Q.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/vcNZE4uyUUkIZ2S9JoPB0ff9TFE.jpg",
"height": 3000,
"iso_639_1": "es",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/mkd4n6dvzsVj2Ac4hLht77NBNMy.jpg",
"height": 1500,
"iso_639_1": "zh",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/yTdDY6iRPNYcOfd7Mp3OZzkUqYc.jpg",
"height": 1500,
"iso_639_1": "ja",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.697,
"file_path": "/pLS5TkvJ0hRXXeWzGSLstoIt0Ph.jpg",
"height": 1435,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.741,
"file_path": "/h7phZsEAeLopXsyVEI8TKmbeNBh.jpg",
"height": 2700,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/kbZLbkYItStutmoIrZVC8hm7CnV.jpg",
"height": 1500,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/nbIbelpvBBZaLYH1iz3kCeFILaI.jpg",
"height": 3000,
"iso_639_1": "tr",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/r1qe2Y51geBoeWw8Fe62tn0VeT8.jpg",
"height": 1500,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.673,
"file_path": "/5gA5FymcBnvOGAuwRsL4jAI5ygf.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 673
},
{
"aspect_ratio": 0.75,
"file_path": "/zYrdCpf3ZYrQMVealwdaAoJ5Q0y.jpg",
"height": 933,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 700
},
{
"aspect_ratio": 0.747,
"file_path": "/fIetRD1Yecz8AH65yaI1eOfsaPD.jpg",
"height": 1607,
"iso_639_1": "el",
"vote_average": 0,
"vote_count": 0,
"width": 1200
},
{
"aspect_ratio": 0.667,
"file_path": "/dRNoZs6CMfDHyr1y6yy8SMGIges.jpg",
"height": 1360,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 907
},
{
"aspect_ratio": 0.666,
"file_path": "/931QsI3qw1v65I1qwp8IvjuVoBZ.jpg",
"height": 1280,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 853
},
{
"aspect_ratio": 0.716,
"file_path": "/kWeHI0sLEXoMLFKxHUhfkfN7TJN.jpg",
"height": 750,
"iso_639_1": "ja",
"vote_average": 0,
"vote_count": 0,
"width": 537
},
{
"aspect_ratio": 0.667,
"file_path": "/h6dOHN7ibhuEl2LLRk6dh5EXRo5.jpg",
"height": 1104,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 736
},
{
"aspect_ratio": 0.667,
"file_path": "/tW24JL2j2kvmfXKD7kbYHqW4lRL.jpg",
"height": 1620,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1080
},
{
"aspect_ratio": 0.667,
"file_path": "/3x5gkd4hj8Dtx6MtB843tY8cfRN.jpg",
"height": 1900,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1267
},
{
"aspect_ratio": 0.667,
"file_path": "/hp3E8WL3VwV2y3AJCTOkDKdnkNN.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/hEPuJlJUbHJyxbhinh824CwIMdB.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/5LMOjBTxCzLRBLiflMR0PGPbZU4.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.697,
"file_path": "/uroDs9bRhPyglh270shdUBcxBuK.jpg",
"height": 2048,
"iso_639_1": "lt",
"vote_average": 0,
"vote_count": 0,
"width": 1427
},
{
"aspect_ratio": 0.669,
"file_path": "/yiFNzLdXCESYhtDeNn8PZCnfmSe.jpg",
"height": 1350,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 903
},
{
"aspect_ratio": 0.667,
"file_path": "/j16b7bOcFtaRM7WwQmm4XzvRgvq.jpg",
"height": 3000,
"iso_639_1": "cn",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/9mmG1nxa0Co2NhfBMMGSSlbqCYl.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/bgtM93saLxWalM1e67OMEJWM1L2.jpg",
"height": 3000,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/zliPLY0pyWx2tAqq8ic2jyQT7xK.jpg",
"height": 1620,
"iso_639_1": "ru",
"vote_average": 0,
"vote_count": 0,
"width": 1080
},
{
"aspect_ratio": 0.667,
"file_path": "/6MAgRbDcroVbdK8dRumCzDy4mUL.jpg",
"height": 1500,
"iso_639_1": "ru",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/qNsU9x8H5FgAfjSE3UK7tsEg8m1.jpg",
"height": 2250,
"iso_639_1": "ru",
"vote_average": 0,
"vote_count": 0,
"width": 1500
}
]
}Get the images that belong to a movie.
curl --request GET \
--url https://api.themoviedb.org/3/movie/18/images \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.themoviedb.org/3/movie/18/images"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.themoviedb.org/3/movie/18/images', 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/18/images",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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/18/images"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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/18/images")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/movie/18/images")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"backdrops": [
{
"aspect_ratio": 1.778,
"file_path": "/wgvc3PmjQGtYYDWaeuV867mnFDs.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 6.2,
"vote_count": 10,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/dwN0kPGrLbFRxyL3F3J3t4ShQx.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 6.042,
"vote_count": 12,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/vKZ6VFTf6zhN0QfcygiE3eduo3r.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 3.334,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/cwBMFjJpTIGWoVwK192NlOXNAr8.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 3.334,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/8WI1AwshQcRAu1A5pIKbwTvhYvO.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 3.334,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/gEFe2joIQUopBmMPXOHPxuX2f4u.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 3.334,
"vote_count": 3,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/y7p9ucY8kSdWonALkd2yPYmMmSQ.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 3.334,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/1wF2T6PNA1QIBDdzOBeHjqQM9WJ.jpg",
"height": 1080,
"iso_639_1": "en",
"vote_average": 3.334,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/vIxqSXbU0DTnLz88Z21o4zekoUe.jpg",
"height": 2160,
"iso_639_1": "it",
"vote_average": 3.334,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/uIgcXq0y6cxMYFAglBGECOFVyPV.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 3.334,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/q5GVnJWd1L0c1uXQXQCnJZChG7C.jpg",
"height": 1080,
"iso_639_1": "pt",
"vote_average": 3.334,
"vote_count": 3,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/cjFFNmp9ZXzxjvRR2ADxtKvQhyQ.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 2.278,
"vote_count": 3,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/dZ1IRnvoFV9qu0JIO0H3KIWKiM9.jpg",
"height": 1080,
"iso_639_1": "en",
"vote_average": 1.75,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.78,
"file_path": "/dAOV7LIfb9sv8bqCbIbk37Bcisv.jpg",
"height": 1149,
"iso_639_1": null,
"vote_average": 1.75,
"vote_count": 2,
"width": 2045
},
{
"aspect_ratio": 1.778,
"file_path": "/iBi8fOxQDbmTM2be0NnImkufpl7.jpg",
"height": 720,
"iso_639_1": "en",
"vote_average": 1.75,
"vote_count": 2,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/3CvMKbEJPRrjBxTYdhaNktgQvvD.jpg",
"height": 2160,
"iso_639_1": "fr",
"vote_average": 1.75,
"vote_count": 2,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/bx1W729hyWQqNQoiq9LsX30FBf.jpg",
"height": 1606,
"iso_639_1": null,
"vote_average": 1.75,
"vote_count": 2,
"width": 2856
},
{
"aspect_ratio": 1.779,
"file_path": "/xM3Skp43605TuoynmQ1tKjTMCHN.jpg",
"height": 1124,
"iso_639_1": null,
"vote_average": 1.434,
"vote_count": 5,
"width": 2000
},
{
"aspect_ratio": 1.778,
"file_path": "/9bB8ybYe6mnDrz2p8nxossPjTIt.jpg",
"height": 1080,
"iso_639_1": "pt",
"vote_average": 1.434,
"vote_count": 5,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/luIu5iEFtrS34VpCuReh8TunDQ2.jpg",
"height": 1080,
"iso_639_1": "en",
"vote_average": 1.222,
"vote_count": 3,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/2BVMlRJQ9Hm45s5rvtX49kl2xkl.jpg",
"height": 720,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 1,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/zTBPoCA4a7OjLYnNOiLYyI2Ao6L.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0.166,
"vote_count": 2,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/issxzRwA3iLoQotbW2w2E2lqMkr.jpg",
"height": 1080,
"iso_639_1": "de",
"vote_average": 0.166,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/7wI5lpdE2hbxJb0P0T3OhIIbDWR.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0.166,
"vote_count": 1,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/gUucB162FTVi8AjjkeFDqaDUwkc.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0.166,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/yYazXbcETO1NT5GCMhkCKDTTzyL.jpg",
"height": 1080,
"iso_639_1": "fr",
"vote_average": 0.166,
"vote_count": 1,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/lsiJeJVMlQXMvUIqNZMNwU1LEJg.jpg",
"height": 2160,
"iso_639_1": "fr",
"vote_average": 0.166,
"vote_count": 2,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/7qy7SPxxj7IhFu4cJEf1vgPAuIB.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/7Z5er1kSnC6RfOzfk7QOSnlQIOk.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/kA3Uilvfns3DukwyfcYBPooM4kM.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/8a35VAcLRNk7YMCM0gcqnIQPGIq.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/qPf2WYzWDJWWGai8uULvryuLASm.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/5gc2HSLYHFVsPWp64SwopT6UjhV.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/gvd0Gy7quhD3KrDQ5avlTDIvczK.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/iY0Wcjnaicd2vsrNqli5sMvqgRg.jpg",
"height": 2160,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/6T82ZAfNT0F95iQiQVKZlbgIpwL.jpg",
"height": 1080,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/mlUkowb4QXYSfLypFv7J4JXLfQ9.jpg",
"height": 2160,
"iso_639_1": "sv",
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/8l18Jy4MMprqPZdjBOlnPzigudD.jpg",
"height": 1080,
"iso_639_1": "fi",
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/7KOu8xmG4GF6NIsanDInskMwuz7.jpg",
"height": 1080,
"iso_639_1": "fi",
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/3LLhHo8UJgwQU36k4TOdAAdWdLd.jpg",
"height": 720,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 1280
},
{
"aspect_ratio": 1.778,
"file_path": "/ltm0rkMHQ86oFSAnc6m158S31PM.jpg",
"height": 2160,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/40YR7Jj7cr39CkQfEvcJAHQxKLL.jpg",
"height": 2160,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/dYHG90ckeXRzA6evON5mmymgHM1.jpg",
"height": 1080,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 1920
},
{
"aspect_ratio": 1.778,
"file_path": "/uzfSwj49DtIcspxMoZEJWyvXZtv.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 3840
},
{
"aspect_ratio": 1.778,
"file_path": "/eFWDVRtgqVPjHRDpA66woDhdkdc.jpg",
"height": 2160,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 3840
}
],
"id": 18,
"logos": [
{
"aspect_ratio": 3.058,
"file_path": "/mInxmYm9JPKFpcphd8Gpf8dMJxE.png",
"height": 258,
"iso_639_1": "en",
"vote_average": 3.334,
"vote_count": 1,
"width": 789
},
{
"aspect_ratio": 5.373,
"file_path": "/u1bPoiDo22tcxGrUL66OBgEqYVC.png",
"height": 804,
"iso_639_1": "sv",
"vote_average": 3.334,
"vote_count": 1,
"width": 4320
},
{
"aspect_ratio": 4.898,
"file_path": "/229qsNzG53Oew6YGYAlKMCfAnBS.png",
"height": 196,
"iso_639_1": "zh",
"vote_average": 3.334,
"vote_count": 1,
"width": 960
},
{
"aspect_ratio": 4.482,
"file_path": "/ydEZ3N61ioPqJnQFXMwiK1sX9B9.png",
"height": 548,
"iso_639_1": "mk",
"vote_average": 3.334,
"vote_count": 1,
"width": 2456
},
{
"aspect_ratio": 5.038,
"file_path": "/wrV8ixHZfqJI6AqhXUUJGpyebZG.png",
"height": 846,
"iso_639_1": "fr",
"vote_average": 3.334,
"vote_count": 1,
"width": 4262
},
{
"aspect_ratio": 5.895,
"file_path": "/nNK5ZOynlI8bQ40lVtRebQutM2w.png",
"height": 344,
"iso_639_1": "pt",
"vote_average": 3.334,
"vote_count": 3,
"width": 2028
},
{
"aspect_ratio": 3.939,
"file_path": "/qlhWGUICAp3HmU7MTv605Ayptet.png",
"height": 198,
"iso_639_1": "en",
"vote_average": 3.334,
"vote_count": 1,
"width": 780
},
{
"aspect_ratio": 8.535,
"file_path": "/7XsTjUdlgGlaZZMpdoL7NOT07Hn.png",
"height": 256,
"iso_639_1": "en",
"vote_average": 1.75,
"vote_count": 2,
"width": 2185
},
{
"aspect_ratio": 11.725,
"file_path": "/mDDVmF4m4jqscr4TDvTmFQq18bJ.png",
"height": 80,
"iso_639_1": "pt",
"vote_average": 0.958,
"vote_count": 4,
"width": 938
},
{
"aspect_ratio": 13.083,
"file_path": "/6p458fPQy0QSM9xPx023xvPZzKF.png",
"height": 60,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 2,
"width": 785
},
{
"aspect_ratio": 4.482,
"file_path": "/34JXia7ijoBvlSiyLbiBZVnmGat.png",
"height": 548,
"iso_639_1": "mk",
"vote_average": 0.166,
"vote_count": 1,
"width": 2456
},
{
"aspect_ratio": 4.482,
"file_path": "/wnoFZGgQgAWZH9joGZlndYfCa2Q.svg",
"height": 548,
"iso_639_1": "mk",
"vote_average": 0.166,
"vote_count": 1,
"width": 2456
},
{
"aspect_ratio": 6.39,
"file_path": "/5hnRYyRg4gA1JVdvJkZAfF8KNw5.png",
"height": 123,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 786
},
{
"aspect_ratio": 6.248,
"file_path": "/jK3zYFD2bkZ2LLKWmS7xOhQFb6Z.png",
"height": 125,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 781
},
{
"aspect_ratio": 5.681,
"file_path": "/xEMGmvxJVnkvmvzM449onhbLlQS.png",
"height": 138,
"iso_639_1": "es",
"vote_average": 0,
"vote_count": 0,
"width": 784
},
{
"aspect_ratio": 3.949,
"file_path": "/p6JQJxczUaMiaJjaqkq0p8b4CZW.png",
"height": 198,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 782
},
{
"aspect_ratio": 2.471,
"file_path": "/qUAggXj5MvMsc5bkbLp02VhjuwV.png",
"height": 308,
"iso_639_1": "es",
"vote_average": 0,
"vote_count": 0,
"width": 761
},
{
"aspect_ratio": 5.765,
"file_path": "/wYuNdkoHDYnyio3yqQHXIWWwV43.png",
"height": 136,
"iso_639_1": "de",
"vote_average": 0,
"vote_count": 0,
"width": 784
},
{
"aspect_ratio": 3.169,
"file_path": "/oSydYkbbczu7Y28CuGAW5odBc2k.png",
"height": 248,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 786
},
{
"aspect_ratio": 3.939,
"file_path": "/1evez5Ay7M04aGhg1efSgdCRueF.png",
"height": 198,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 780
},
{
"aspect_ratio": 5.757,
"file_path": "/hrQT9Av8KQnLq620gqfTzfTfqVM.png",
"height": 136,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 783
},
{
"aspect_ratio": 4.639,
"file_path": "/8Q8EBjQOnpGayrtdYvyP12jccGa.png",
"height": 169,
"iso_639_1": "pl",
"vote_average": 0,
"vote_count": 0,
"width": 784
},
{
"aspect_ratio": 5.232,
"file_path": "/dCQXWxU5GB88qGK4HyyxUM3ijPO.png",
"height": 151,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 790
},
{
"aspect_ratio": 5.947,
"file_path": "/zslpNevHVxIWZ03E2fqT2imlaY1.png",
"height": 132,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 785
},
{
"aspect_ratio": 4.01,
"file_path": "/t7gtrgY0Uv4rko4pugMwKvd5Ni7.png",
"height": 195,
"iso_639_1": "cs",
"vote_average": 0,
"vote_count": 0,
"width": 782
},
{
"aspect_ratio": 6.653,
"file_path": "/msVBaxnGvE57AOLDvFDVpaIZqaV.png",
"height": 300,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1996
},
{
"aspect_ratio": 3.262,
"file_path": "/wKdBKOP20lNaD7eglFXdUKMuGy0.png",
"height": 385,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1256
},
{
"aspect_ratio": 5.64,
"file_path": "/voKDt53GGpsDr33LoIOz4kuRKAV.png",
"height": 139,
"iso_639_1": "ru",
"vote_average": 0,
"vote_count": 0,
"width": 784
},
{
"aspect_ratio": 8.153,
"file_path": "/om3OnySFeJ8Y4JW2fz01rZ5Clec.png",
"height": 268,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 2185
},
{
"aspect_ratio": 4.27,
"file_path": "/lo0Aar8esbXNlPCpE06LTGQWuWt.png",
"height": 215,
"iso_639_1": "fi",
"vote_average": 0,
"vote_count": 0,
"width": 918
},
{
"aspect_ratio": 2.958,
"file_path": "/1mZHjtxEYPLMdrfeOlqsAOqORTH.png",
"height": 692,
"iso_639_1": "zh",
"vote_average": 0,
"vote_count": 0,
"width": 2047
},
{
"aspect_ratio": 5.765,
"file_path": "/f74cEVDsN8lJ1aOfHl0SYf0fYst.png",
"height": 136,
"iso_639_1": "de",
"vote_average": 0,
"vote_count": 0,
"width": 784
},
{
"aspect_ratio": 5.93,
"file_path": "/s8bbqvmmDFxupqZu3HYHhmeNzaM.png",
"height": 200,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 1186
},
{
"aspect_ratio": 5.373,
"file_path": "/1scxTRo3EHtL0ab1eaDG4m1L4Ws.png",
"height": 804,
"iso_639_1": "sv",
"vote_average": 0,
"vote_count": 0,
"width": 4320
},
{
"aspect_ratio": 2.25,
"file_path": "/dwwFetJRrvGmXkvKDSXG6K97zez.png",
"height": 948,
"iso_639_1": "cn",
"vote_average": 0,
"vote_count": 0,
"width": 2133
},
{
"aspect_ratio": 4.894,
"file_path": "/wpl6n06xEcGYQ8BgYPS5orwsden.png",
"height": 377,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 1845
},
{
"aspect_ratio": 6.246,
"file_path": "/zSDstyuciOMnqfYgf8RNiIzX5os.svg",
"height": 333,
"iso_639_1": "ru",
"vote_average": 0,
"vote_count": 0,
"width": 2080
},
{
"aspect_ratio": 5.895,
"file_path": "/zRgUtmix5Ah6rbwzoSV5TtuoOHa.png",
"height": 344,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 2028
}
],
"posters": [
{
"aspect_ratio": 0.667,
"file_path": "/9dw840VOr3YBkrYxtJ7wuKNAoK5.jpg",
"height": 3000,
"iso_639_1": "zh",
"vote_average": 10,
"vote_count": 5,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/fPtlCO1yQtnoLHOwKtWz7db6RGU.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 7.318,
"vote_count": 11,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/u7mjiMdKK1ooSYuOKS4aAWIJlJa.jpg",
"height": 3000,
"iso_639_1": "sv",
"vote_average": 3.334,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/8HWCaymY2FNwjC66jWDqT6FzEKr.jpg",
"height": 3000,
"iso_639_1": "cs",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/22hWrBQkPAbN7y5loIORYdNfT45.jpg",
"height": 1500,
"iso_639_1": "he",
"vote_average": 3.334,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/bqjMBDuZwws5IIpMUL5OypsqVwg.jpg",
"height": 3000,
"iso_639_1": "hu",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/zL3pSAA0WfqfUMI7HdrBIMZoBu5.jpg",
"height": 750,
"iso_639_1": "pl",
"vote_average": 3.334,
"vote_count": 1,
"width": 500
},
{
"aspect_ratio": 0.667,
"file_path": "/npcHgyp5MmKMe4lWqJi2ma1CuhC.jpg",
"height": 3000,
"iso_639_1": "ko",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/nI0VC4EXwA88g1UZ66dCpsrQ9Co.jpg",
"height": 3000,
"iso_639_1": "it",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/xe6KUhqOg4c7KlfPJid3SNPteHX.jpg",
"height": 3000,
"iso_639_1": "sk",
"vote_average": 3.334,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/wNTpXK17ctcrERI6Ts45ZoTT7RY.jpg",
"height": 3000,
"iso_639_1": "fr",
"vote_average": 3.334,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/uVQPxSW6blXKgoCnkpnzxjSIZhR.jpg",
"height": 3000,
"iso_639_1": "fr",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/rMNBNpYAu8CHzV5HfTZXBYyewvc.jpg",
"height": 3000,
"iso_639_1": "fr",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/wDh9zQm9WDwisJuisAKsRbSz03w.jpg",
"height": 3000,
"iso_639_1": "fr",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/4IgMSK6ehZcfniZoWFRLSxEPcHS.jpg",
"height": 3000,
"iso_639_1": "es",
"vote_average": 3.334,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/xE3lZ4XNrO0ZKrUkdIxgbxMTPdz.jpg",
"height": 1600,
"iso_639_1": "ja",
"vote_average": 3.334,
"vote_count": 1,
"width": 1068
},
{
"aspect_ratio": 0.667,
"file_path": "/y30mICVaZquegYznH0RKc5dn9v5.jpg",
"height": 3000,
"iso_639_1": "uk",
"vote_average": 3.334,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/bWxuJCLgShXwOVIafyNwOpmCw0J.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 3.334,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/eqJVivI0EqYIyqkdnbpSxOpalbI.jpg",
"height": 3000,
"iso_639_1": "ro",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.7,
"file_path": "/rGQ2NGWoseiVU8kk7tgm6xR9ifz.jpg",
"height": 2048,
"iso_639_1": "zh",
"vote_average": 3.334,
"vote_count": 1,
"width": 1434
},
{
"aspect_ratio": 0.667,
"file_path": "/hBInc3xsQ33rGvJnLVDaFhxhBBa.jpg",
"height": 3000,
"iso_639_1": "mk",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/eBdnpdow5NQaLns92NhLGdRSWGa.jpg",
"height": 3000,
"iso_639_1": "de",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/RjK3yBYQcXAe4O4TGoXM2fshYT.jpg",
"height": 3000,
"iso_639_1": "de",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/bqALmWhVaqfQedyPZn7MeuOjfSk.jpg",
"height": 3000,
"iso_639_1": "ru",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/aqAAtVZKfleyCVZFvIdx174Juiw.jpg",
"height": 2100,
"iso_639_1": "ja",
"vote_average": 3.334,
"vote_count": 1,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/dj0cBw9fcLiL0xJrLP8mj6gZF9t.jpg",
"height": 2916,
"iso_639_1": "en",
"vote_average": 3.334,
"vote_count": 1,
"width": 1944
},
{
"aspect_ratio": 0.667,
"file_path": "/9I4oCsHdif8IirOIeW0hsmTpZh5.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/lGEPBTIQ0CXs20ttYtPr6rQ7fJx.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/sYYBZ4tJDGMPyPxXuLlUvZgp19k.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 3.334,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/8nx8sttha1Zidt73SbNncVfSwqk.jpg",
"height": 1500,
"iso_639_1": "fr",
"vote_average": 2.542,
"vote_count": 4,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/yDTfuFwJUl3JRBGEEb5jS6QhCW3.jpg",
"height": 3000,
"iso_639_1": "pt",
"vote_average": 2.542,
"vote_count": 4,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/pvIQrZymHtPv7HanIjxQMRYDiGC.jpg",
"height": 3000,
"iso_639_1": "de",
"vote_average": 2.278,
"vote_count": 3,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/wnps5IL8YpeJpZvciDRXt7yZF8a.jpg",
"height": 1500,
"iso_639_1": "es",
"vote_average": 2.066,
"vote_count": 5,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/tONmRKKT4pwZ3HYrDwihqRLWS6.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 2.066,
"vote_count": 5,
"width": 2000
},
{
"aspect_ratio": 0.666,
"file_path": "/r2IFRKmD0nLaJOaILGKHdF31bKy.jpg",
"height": 1034,
"iso_639_1": "es",
"vote_average": 1.75,
"vote_count": 6,
"width": 689
},
{
"aspect_ratio": 0.667,
"file_path": "/aYLd1H2XrlwP7VhCFctKUxOJKG0.jpg",
"height": 3000,
"iso_639_1": "cs",
"vote_average": 1.75,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/tAQeMpVH4TAt0FEPvfHiB2Pz9d1.jpg",
"height": 1500,
"iso_639_1": "ru",
"vote_average": 1.75,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/nxHMMzjH0Gvd45iwmLzm3mWDjQB.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 1.75,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/j7hwY6UWMuDYGbCXObEUGTgNCru.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 1.75,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/zYZBiYLZgqkcxN03Er2tQW0Q83i.jpg",
"height": 750,
"iso_639_1": "ja",
"vote_average": 1.75,
"vote_count": 2,
"width": 500
},
{
"aspect_ratio": 0.708,
"file_path": "/6jo5NtIjFlJ8sFzIbZIVXOSlCwz.jpg",
"height": 2826,
"iso_639_1": "de",
"vote_average": 1.75,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.706,
"file_path": "/t2wmI7Zt4Jep2wQc4nMaoraMMwq.jpg",
"height": 2832,
"iso_639_1": "de",
"vote_average": 1.75,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.697,
"file_path": "/llnpjLzCmkBq6dv0vNUMNHCJAF4.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 1.75,
"vote_count": 2,
"width": 1045
},
{
"aspect_ratio": 0.667,
"file_path": "/gWZz6bmuzxdfW5siVGW6IYcUHuF.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 1.75,
"vote_count": 4,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/d8ZvFbzhB4MIFKNGU3dhamfaPpg.jpg",
"height": 3000,
"iso_639_1": "de",
"vote_average": 1.75,
"vote_count": 2,
"width": 2000
},
{
"aspect_ratio": 0.666,
"file_path": "/qBgrO6BnnpXt0UnncQu49drrNRB.jpg",
"height": 1996,
"iso_639_1": "en",
"vote_average": 1.75,
"vote_count": 4,
"width": 1329
},
{
"aspect_ratio": 0.667,
"file_path": "/mRJ9NNum1KlHQfnW3iBYdFOLsuU.jpg",
"height": 1500,
"iso_639_1": "ru",
"vote_average": 1.75,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/t2fanPUgCGty1tmU9t3jtYEOEMS.jpg",
"height": 1500,
"iso_639_1": "pt",
"vote_average": 1.75,
"vote_count": 6,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/7XYQOK9etdq1H7jXO2UlLBE70k4.jpg",
"height": 900,
"iso_639_1": "pt",
"vote_average": 1.714,
"vote_count": 7,
"width": 600
},
{
"aspect_ratio": 0.667,
"file_path": "/lPXL0ECh8o4GfcYjSZaHwydJZyG.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 1.434,
"vote_count": 5,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/njoa5i0yTnKAicSNboFWP1hjyFh.jpg",
"height": 1500,
"iso_639_1": "uk",
"vote_average": 1.434,
"vote_count": 5,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/uQRs1iX5ePqMQieZL89C9yIGEXW.jpg",
"height": 1920,
"iso_639_1": "en",
"vote_average": 1.222,
"vote_count": 3,
"width": 1280
},
{
"aspect_ratio": 0.708,
"file_path": "/zZ6mWoCkwPus4dhUPO5OJDk1WeF.jpg",
"height": 2260,
"iso_639_1": "de",
"vote_average": 1.222,
"vote_count": 3,
"width": 1600
},
{
"aspect_ratio": 0.667,
"file_path": "/s2c2EYDJiSqeciWZ9VkwnzarHg6.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 1.222,
"vote_count": 3,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/kjWYd2qziS18BPQs85xE6Lb3H09.jpg",
"height": 1440,
"iso_639_1": "pt",
"vote_average": 0.854,
"vote_count": 8,
"width": 960
},
{
"aspect_ratio": 0.667,
"file_path": "/2xQTvM7w4VcKZUB5nAzdcKhJ1DE.jpg",
"height": 1500,
"iso_639_1": "pt",
"vote_average": 0.5,
"vote_count": 7,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/m1Omf6x2MTj9JH54N7PAhN4hYMC.jpg",
"height": 3000,
"iso_639_1": "cs",
"vote_average": 0.166,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/lQqjJl8vn6Ry8J61KZxrTqtzRys.jpg",
"height": 3000,
"iso_639_1": "cs",
"vote_average": 0.166,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/kpkmvEBBgqifVudi9Iuu79AyXb4.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/A4f49u3cAuBfpxutgW4TwrLUBKX.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.686,
"file_path": "/hIl2HK19B3Wxor3Ehgx3s1WPOCs.jpg",
"height": 1590,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 1,
"width": 1091
},
{
"aspect_ratio": 0.667,
"file_path": "/a62573bvy3pQwPcPanWVfoh837f.jpg",
"height": 1500,
"iso_639_1": "he",
"vote_average": 0.166,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.701,
"file_path": "/uJGTBZXADrGSs30Pc1qXGWGpZvm.jpg",
"height": 1426,
"iso_639_1": "fr",
"vote_average": 0.166,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/veHIp2oDRK14HDlgXTuWuAROIjo.jpg",
"height": 3000,
"iso_639_1": "fr",
"vote_average": 0.166,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/huxBRLmvdnRi4I1taWyjrnKThZv.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/iiZ0SVoaBxIK7WZwwVc7XcbHD1L.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/zmoMfPwBcNCXRbOlQkOTBNOO4qR.jpg",
"height": 1500,
"iso_639_1": "uk",
"vote_average": 0.166,
"vote_count": 2,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/xmLXRDSHhW8gTaF3xloRr1wPBb8.jpg",
"height": 1200,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 1,
"width": 800
},
{
"aspect_ratio": 0.714,
"file_path": "/tq9LKUPpk4BFsq6RmKESQdlvJKV.jpg",
"height": 1600,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 1,
"width": 1142
},
{
"aspect_ratio": 0.712,
"file_path": "/q1WE7ZXXBuYuG4C2GCcmZL9vXkm.jpg",
"height": 750,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 1,
"width": 534
},
{
"aspect_ratio": 0.75,
"file_path": "/rxxjwCFxFTb07xe5Rf5MJI1bSg7.jpg",
"height": 1200,
"iso_639_1": "sk",
"vote_average": 0.166,
"vote_count": 1,
"width": 900
},
{
"aspect_ratio": 0.667,
"file_path": "/6bV58tS7fpfAnozmiYkzRFN8r5t.jpg",
"height": 2100,
"iso_639_1": "fr",
"vote_average": 0.166,
"vote_count": 2,
"width": 1400
},
{
"aspect_ratio": 0.707,
"file_path": "/tE4mwWXF95M4Wqs2tkQqCa8ysqH.jpg",
"height": 1811,
"iso_639_1": "en",
"vote_average": 0.166,
"vote_count": 2,
"width": 1280
},
{
"aspect_ratio": 0.667,
"file_path": "/Q2sXW0nceeGhJNRfB6X3oVYzG0.jpg",
"height": 3000,
"iso_639_1": "tr",
"vote_average": 0.166,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/mXz3YxmaB6GLMqQSzYY6sNXNNxC.jpg",
"height": 3000,
"iso_639_1": "sv",
"vote_average": 0.166,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/7Wev5UjTkcA2zW0ctgqnuoKnpbU.jpg",
"height": 3000,
"iso_639_1": "mk",
"vote_average": 0.166,
"vote_count": 1,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/i4b9yLY4a7Mj7HXIWikiQh7TgSj.jpg",
"height": 1500,
"iso_639_1": "mk",
"vote_average": 0.166,
"vote_count": 1,
"width": 1000
},
{
"aspect_ratio": 0.703,
"file_path": "/5M2nOQUtt8qr6cANjGhlI8xqnrZ.jpg",
"height": 750,
"iso_639_1": "bg",
"vote_average": 0,
"vote_count": 0,
"width": 527
},
{
"aspect_ratio": 0.667,
"file_path": "/4jRnrk6J3lx0WcXBeQgrQpFCmwG.jpg",
"height": 750,
"iso_639_1": "es",
"vote_average": 0,
"vote_count": 0,
"width": 500
},
{
"aspect_ratio": 0.667,
"file_path": "/raProKa4SqAtOJg9ppb5qVfY3y1.jpg",
"height": 2100,
"iso_639_1": "de",
"vote_average": 0,
"vote_count": 0,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/1x5LQ7ADHWqCxC943ojlBeVbU8G.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/o0vC1jE8a4BUrRQk8YQKX7H2adh.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/l5hzMv2eUdTRJ7oPbDQpvmaUV5.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/tXRSV9P0b8NjX3KivYhGnMpiDcZ.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/esfmjUvswur0xUzfH3BAwyYm9aY.jpg",
"height": 3000,
"iso_639_1": "hu",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/gyGW1AMwwXzHGJ4wP8XvWbzq3rI.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/1NzJJ8WQBOnFPCdBIc0WaVTryKK.jpg",
"height": 1500,
"iso_639_1": "de",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/gqF2d3qxlcoa4t9XLsQHeqHJJc7.jpg",
"height": 1500,
"iso_639_1": "de",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/aMIPA0HTPS4LLIq7B4NzDPFLI1v.jpg",
"height": 1500,
"iso_639_1": "de",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.703,
"file_path": "/8Az5qcfudr9zOr7I2RfVB8a5ml6.jpg",
"height": 1707,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 1200
},
{
"aspect_ratio": 0.667,
"file_path": "/mjmambmR1ooGUMzPY5H7rJsHKXG.jpg",
"height": 1500,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.75,
"file_path": "/mdAjhOLmgbgRZZiamud3BVXrtfQ.jpg",
"height": 1024,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 768
},
{
"aspect_ratio": 0.667,
"file_path": "/1bbpJKPeCyl8JNGSrWGNNCdnyg.jpg",
"height": 2100,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 1400
},
{
"aspect_ratio": 0.671,
"file_path": "/e25wa3T29i2k7aDqvUGiWZXiqWs.jpg",
"height": 850,
"iso_639_1": "ko",
"vote_average": 0,
"vote_count": 0,
"width": 570
},
{
"aspect_ratio": 0.666,
"file_path": "/gB790vEKJfR1uVczYXUnubj2lQ3.jpg",
"height": 800,
"iso_639_1": "ru",
"vote_average": 0,
"vote_count": 0,
"width": 533
},
{
"aspect_ratio": 0.667,
"file_path": "/fSaCCdTBO9ypOu27zzNwQQhSeOV.jpg",
"height": 3000,
"iso_639_1": "de",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/yLJZvrtWvYoH3syjE9TTl48OCMY.jpg",
"height": 3000,
"iso_639_1": "da",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/dEiIyaXsN3lLypyxuPGXtrzw3YJ.jpg",
"height": 1500,
"iso_639_1": "ug",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.712,
"file_path": "/sxovOSYf66gwAsJVw2Hau7E625K.jpg",
"height": 750,
"iso_639_1": "ja",
"vote_average": 0,
"vote_count": 0,
"width": 534
},
{
"aspect_ratio": 0.667,
"file_path": "/A1AqYML0YWQPde3bMUMMMdLTytg.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.74,
"file_path": "/8BsCYCnP8y8sVe9ZTCTaBDOyAQ6.jpg",
"height": 946,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 700
},
{
"aspect_ratio": 0.7,
"file_path": "/twTtNUaRhL2EFC2V1sFXkYs8pip.jpg",
"height": 750,
"iso_639_1": "zh",
"vote_average": 0,
"vote_count": 0,
"width": 525
},
{
"aspect_ratio": 0.667,
"file_path": "/wxPeAzf5RxiGplvXdW6UO27dvd.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/5IFMuIo7IOKrktUVkR7aHVmDriz.jpg",
"height": 1500,
"iso_639_1": "fi",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/2RUw8ON4kxElWrng4iYa8R3vKZy.jpg",
"height": 750,
"iso_639_1": "es",
"vote_average": 0,
"vote_count": 0,
"width": 500
},
{
"aspect_ratio": 0.667,
"file_path": "/h0TlO1IJnJGKxCbWILs9LoyUoSi.jpg",
"height": 1500,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/b1MxObGwOhvXMMqiU0Im0UoStUq.jpg",
"height": 3000,
"iso_639_1": "sk",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/ijSjiD5e3iw5Vf3FlKNXE9nMq79.jpg",
"height": 1500,
"iso_639_1": "de",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.747,
"file_path": "/zd9o7KSlwSTjwhzCKevky7Ihrnb.jpg",
"height": 802,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 599
},
{
"aspect_ratio": 0.667,
"file_path": "/viYEnVyDSrjPr3S2ptwcutmY0x8.jpg",
"height": 3000,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/3Ax6g84RMUHoj1pTPO99j2BoO4E.jpg",
"height": 3000,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.709,
"file_path": "/30NYhMQllZ5k6RQL74liJMcbqdm.jpg",
"height": 940,
"iso_639_1": "uk",
"vote_average": 0,
"vote_count": 0,
"width": 666
},
{
"aspect_ratio": 0.667,
"file_path": "/gNXQDAuPUEQw34Y7IgmIKeE91Z.jpg",
"height": 3000,
"iso_639_1": "uk",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/pCfjmAGlykOnP82znFwONPyytXh.jpg",
"height": 3000,
"iso_639_1": "es",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/5be4Fbr1R9Aec0e6wRDrMJZPkBy.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.679,
"file_path": "/3qVxvrhYfKgBjyEjKyuwjrdSVkt.jpg",
"height": 1236,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 839
},
{
"aspect_ratio": 0.679,
"file_path": "/5NwPz83ZK64HAec6rkyLgupdvtX.jpg",
"height": 1236,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 839
},
{
"aspect_ratio": 0.697,
"file_path": "/wo7QzSZFeU1vC27FtB9Neu229CA.jpg",
"height": 1435,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/nhknij3s2JV6Kb8Mb6v0PvQ7mCV.jpg",
"height": 1500,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/u1JfnGa3wUTAk6C81D9osaN2uCd.jpg",
"height": 3000,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/sw0ZUU1stxA8yHC6nQYcF7n986W.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/wCzccHHc53hw7p3ykLx4KvT8JM2.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/6xz8qIXO4WS1P0JRpyNrorJrT7Q.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/vcNZE4uyUUkIZ2S9JoPB0ff9TFE.jpg",
"height": 3000,
"iso_639_1": "es",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/mkd4n6dvzsVj2Ac4hLht77NBNMy.jpg",
"height": 1500,
"iso_639_1": "zh",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/yTdDY6iRPNYcOfd7Mp3OZzkUqYc.jpg",
"height": 1500,
"iso_639_1": "ja",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.697,
"file_path": "/pLS5TkvJ0hRXXeWzGSLstoIt0Ph.jpg",
"height": 1435,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.741,
"file_path": "/h7phZsEAeLopXsyVEI8TKmbeNBh.jpg",
"height": 2700,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/kbZLbkYItStutmoIrZVC8hm7CnV.jpg",
"height": 1500,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/nbIbelpvBBZaLYH1iz3kCeFILaI.jpg",
"height": 3000,
"iso_639_1": "tr",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/r1qe2Y51geBoeWw8Fe62tn0VeT8.jpg",
"height": 1500,
"iso_639_1": "fr",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.673,
"file_path": "/5gA5FymcBnvOGAuwRsL4jAI5ygf.jpg",
"height": 1000,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 673
},
{
"aspect_ratio": 0.75,
"file_path": "/zYrdCpf3ZYrQMVealwdaAoJ5Q0y.jpg",
"height": 933,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 700
},
{
"aspect_ratio": 0.747,
"file_path": "/fIetRD1Yecz8AH65yaI1eOfsaPD.jpg",
"height": 1607,
"iso_639_1": "el",
"vote_average": 0,
"vote_count": 0,
"width": 1200
},
{
"aspect_ratio": 0.667,
"file_path": "/dRNoZs6CMfDHyr1y6yy8SMGIges.jpg",
"height": 1360,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 907
},
{
"aspect_ratio": 0.666,
"file_path": "/931QsI3qw1v65I1qwp8IvjuVoBZ.jpg",
"height": 1280,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 853
},
{
"aspect_ratio": 0.716,
"file_path": "/kWeHI0sLEXoMLFKxHUhfkfN7TJN.jpg",
"height": 750,
"iso_639_1": "ja",
"vote_average": 0,
"vote_count": 0,
"width": 537
},
{
"aspect_ratio": 0.667,
"file_path": "/h6dOHN7ibhuEl2LLRk6dh5EXRo5.jpg",
"height": 1104,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 736
},
{
"aspect_ratio": 0.667,
"file_path": "/tW24JL2j2kvmfXKD7kbYHqW4lRL.jpg",
"height": 1620,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1080
},
{
"aspect_ratio": 0.667,
"file_path": "/3x5gkd4hj8Dtx6MtB843tY8cfRN.jpg",
"height": 1900,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1267
},
{
"aspect_ratio": 0.667,
"file_path": "/hp3E8WL3VwV2y3AJCTOkDKdnkNN.jpg",
"height": 2100,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 1400
},
{
"aspect_ratio": 0.667,
"file_path": "/hEPuJlJUbHJyxbhinh824CwIMdB.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/5LMOjBTxCzLRBLiflMR0PGPbZU4.jpg",
"height": 3000,
"iso_639_1": null,
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.697,
"file_path": "/uroDs9bRhPyglh270shdUBcxBuK.jpg",
"height": 2048,
"iso_639_1": "lt",
"vote_average": 0,
"vote_count": 0,
"width": 1427
},
{
"aspect_ratio": 0.669,
"file_path": "/yiFNzLdXCESYhtDeNn8PZCnfmSe.jpg",
"height": 1350,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 903
},
{
"aspect_ratio": 0.667,
"file_path": "/j16b7bOcFtaRM7WwQmm4XzvRgvq.jpg",
"height": 3000,
"iso_639_1": "cn",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/9mmG1nxa0Co2NhfBMMGSSlbqCYl.jpg",
"height": 3000,
"iso_639_1": "en",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/bgtM93saLxWalM1e67OMEJWM1L2.jpg",
"height": 3000,
"iso_639_1": "it",
"vote_average": 0,
"vote_count": 0,
"width": 2000
},
{
"aspect_ratio": 0.667,
"file_path": "/zliPLY0pyWx2tAqq8ic2jyQT7xK.jpg",
"height": 1620,
"iso_639_1": "ru",
"vote_average": 0,
"vote_count": 0,
"width": 1080
},
{
"aspect_ratio": 0.667,
"file_path": "/6MAgRbDcroVbdK8dRumCzDy4mUL.jpg",
"height": 1500,
"iso_639_1": "ru",
"vote_average": 0,
"vote_count": 0,
"width": 1000
},
{
"aspect_ratio": 0.667,
"file_path": "/qNsU9x8H5FgAfjSE3UK7tsEg8m1.jpg",
"height": 2250,
"iso_639_1": "ru",
"vote_average": 0,
"vote_count": 0,
"width": 1500
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
New Request
Show child attributes
[ { "aspect_ratio": 1.778, "file_path": "/wgvc3PmjQGtYYDWaeuV867mnFDs.jpg", "height": 1080, "iso_639_1": null, "vote_average": 6.2, "vote_count": 10, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/dwN0kPGrLbFRxyL3F3J3t4ShQx.jpg", "height": 1080, "iso_639_1": null, "vote_average": 6.042, "vote_count": 12, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/vKZ6VFTf6zhN0QfcygiE3eduo3r.jpg", "height": 720, "iso_639_1": null, "vote_average": 3.334, "vote_count": 1, "width": 1280 }, { "aspect_ratio": 1.778, "file_path": "/cwBMFjJpTIGWoVwK192NlOXNAr8.jpg", "height": 1080, "iso_639_1": null, "vote_average": 3.334, "vote_count": 1, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/8WI1AwshQcRAu1A5pIKbwTvhYvO.jpg", "height": 1080, "iso_639_1": null, "vote_average": 3.334, "vote_count": 1, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/gEFe2joIQUopBmMPXOHPxuX2f4u.jpg", "height": 2160, "iso_639_1": null, "vote_average": 3.334, "vote_count": 3, "width": 3840 }, { "aspect_ratio": 1.778, "file_path": "/y7p9ucY8kSdWonALkd2yPYmMmSQ.jpg", "height": 1080, "iso_639_1": null, "vote_average": 3.334, "vote_count": 1, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/1wF2T6PNA1QIBDdzOBeHjqQM9WJ.jpg", "height": 1080, "iso_639_1": "en", "vote_average": 3.334, "vote_count": 1, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/vIxqSXbU0DTnLz88Z21o4zekoUe.jpg", "height": 2160, "iso_639_1": "it", "vote_average": 3.334, "vote_count": 1, "width": 3840 }, { "aspect_ratio": 1.778, "file_path": "/uIgcXq0y6cxMYFAglBGECOFVyPV.jpg", "height": 2160, "iso_639_1": null, "vote_average": 3.334, "vote_count": 1, "width": 3840 }, { "aspect_ratio": 1.778, "file_path": "/q5GVnJWd1L0c1uXQXQCnJZChG7C.jpg", "height": 1080, "iso_639_1": "pt", "vote_average": 3.334, "vote_count": 3, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/cjFFNmp9ZXzxjvRR2ADxtKvQhyQ.jpg", "height": 1080, "iso_639_1": null, "vote_average": 2.278, "vote_count": 3, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/dZ1IRnvoFV9qu0JIO0H3KIWKiM9.jpg", "height": 1080, "iso_639_1": "en", "vote_average": 1.75, "vote_count": 2, "width": 1920 }, { "aspect_ratio": 1.78, "file_path": "/dAOV7LIfb9sv8bqCbIbk37Bcisv.jpg", "height": 1149, "iso_639_1": null, "vote_average": 1.75, "vote_count": 2, "width": 2045 }, { "aspect_ratio": 1.778, "file_path": "/iBi8fOxQDbmTM2be0NnImkufpl7.jpg", "height": 720, "iso_639_1": "en", "vote_average": 1.75, "vote_count": 2, "width": 1280 }, { "aspect_ratio": 1.778, "file_path": "/3CvMKbEJPRrjBxTYdhaNktgQvvD.jpg", "height": 2160, "iso_639_1": "fr", "vote_average": 1.75, "vote_count": 2, "width": 3840 }, { "aspect_ratio": 1.778, "file_path": "/bx1W729hyWQqNQoiq9LsX30FBf.jpg", "height": 1606, "iso_639_1": null, "vote_average": 1.75, "vote_count": 2, "width": 2856 }, { "aspect_ratio": 1.779, "file_path": "/xM3Skp43605TuoynmQ1tKjTMCHN.jpg", "height": 1124, "iso_639_1": null, "vote_average": 1.434, "vote_count": 5, "width": 2000 }, { "aspect_ratio": 1.778, "file_path": "/9bB8ybYe6mnDrz2p8nxossPjTIt.jpg", "height": 1080, "iso_639_1": "pt", "vote_average": 1.434, "vote_count": 5, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/luIu5iEFtrS34VpCuReh8TunDQ2.jpg", "height": 1080, "iso_639_1": "en", "vote_average": 1.222, "vote_count": 3, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/2BVMlRJQ9Hm45s5rvtX49kl2xkl.jpg", "height": 720, "iso_639_1": "en", "vote_average": 0.166, "vote_count": 1, "width": 1280 }, { "aspect_ratio": 1.778, "file_path": "/zTBPoCA4a7OjLYnNOiLYyI2Ao6L.jpg", "height": 1080, "iso_639_1": null, "vote_average": 0.166, "vote_count": 2, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/issxzRwA3iLoQotbW2w2E2lqMkr.jpg", "height": 1080, "iso_639_1": "de", "vote_average": 0.166, "vote_count": 1, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/7wI5lpdE2hbxJb0P0T3OhIIbDWR.jpg", "height": 2160, "iso_639_1": null, "vote_average": 0.166, "vote_count": 1, "width": 3840 }, { "aspect_ratio": 1.778, "file_path": "/gUucB162FTVi8AjjkeFDqaDUwkc.jpg", "height": 1080, "iso_639_1": null, "vote_average": 0.166, "vote_count": 1, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/yYazXbcETO1NT5GCMhkCKDTTzyL.jpg", "height": 1080, "iso_639_1": "fr", "vote_average": 0.166, "vote_count": 1, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/lsiJeJVMlQXMvUIqNZMNwU1LEJg.jpg", "height": 2160, "iso_639_1": "fr", "vote_average": 0.166, "vote_count": 2, "width": 3840 }, { "aspect_ratio": 1.778, "file_path": "/7qy7SPxxj7IhFu4cJEf1vgPAuIB.jpg", "height": 720, "iso_639_1": null, "vote_average": 0, "vote_count": 0, "width": 1280 }, { "aspect_ratio": 1.778, "file_path": "/7Z5er1kSnC6RfOzfk7QOSnlQIOk.jpg", "height": 720, "iso_639_1": null, "vote_average": 0, "vote_count": 0, "width": 1280 }, { "aspect_ratio": 1.778, "file_path": "/kA3Uilvfns3DukwyfcYBPooM4kM.jpg", "height": 1080, "iso_639_1": null, "vote_average": 0, "vote_count": 0, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/8a35VAcLRNk7YMCM0gcqnIQPGIq.jpg", "height": 1080, "iso_639_1": null, "vote_average": 0, "vote_count": 0, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/qPf2WYzWDJWWGai8uULvryuLASm.jpg", "height": 2160, "iso_639_1": null, "vote_average": 0, "vote_count": 0, "width": 3840 }, { "aspect_ratio": 1.778, "file_path": "/5gc2HSLYHFVsPWp64SwopT6UjhV.jpg", "height": 2160, "iso_639_1": null, "vote_average": 0, "vote_count": 0, "width": 3840 }, { "aspect_ratio": 1.778, "file_path": "/gvd0Gy7quhD3KrDQ5avlTDIvczK.jpg", "height": 2160, "iso_639_1": null, "vote_average": 0, "vote_count": 0, "width": 3840 }, { "aspect_ratio": 1.778, "file_path": "/iY0Wcjnaicd2vsrNqli5sMvqgRg.jpg", "height": 2160, "iso_639_1": null, "vote_average": 0, "vote_count": 0, "width": 3840 }, { "aspect_ratio": 1.778, "file_path": "/6T82ZAfNT0F95iQiQVKZlbgIpwL.jpg", "height": 1080, "iso_639_1": null, "vote_average": 0, "vote_count": 0, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/mlUkowb4QXYSfLypFv7J4JXLfQ9.jpg", "height": 2160, "iso_639_1": "sv", "vote_average": 0, "vote_count": 0, "width": 3840 }, { "aspect_ratio": 1.778, "file_path": "/8l18Jy4MMprqPZdjBOlnPzigudD.jpg", "height": 1080, "iso_639_1": "fi", "vote_average": 0, "vote_count": 0, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/7KOu8xmG4GF6NIsanDInskMwuz7.jpg", "height": 1080, "iso_639_1": "fi", "vote_average": 0, "vote_count": 0, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/3LLhHo8UJgwQU36k4TOdAAdWdLd.jpg", "height": 720, "iso_639_1": null, "vote_average": 0, "vote_count": 0, "width": 1280 }, { "aspect_ratio": 1.778, "file_path": "/ltm0rkMHQ86oFSAnc6m158S31PM.jpg", "height": 2160, "iso_639_1": "it", "vote_average": 0, "vote_count": 0, "width": 3840 }, { "aspect_ratio": 1.778, "file_path": "/40YR7Jj7cr39CkQfEvcJAHQxKLL.jpg", "height": 2160, "iso_639_1": "it", "vote_average": 0, "vote_count": 0, "width": 3840 }, { "aspect_ratio": 1.778, "file_path": "/dYHG90ckeXRzA6evON5mmymgHM1.jpg", "height": 1080, "iso_639_1": "it", "vote_average": 0, "vote_count": 0, "width": 1920 }, { "aspect_ratio": 1.778, "file_path": "/uzfSwj49DtIcspxMoZEJWyvXZtv.jpg", "height": 2160, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 3840 }, { "aspect_ratio": 1.778, "file_path": "/eFWDVRtgqVPjHRDpA66woDhdkdc.jpg", "height": 2160, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 3840 } ]
18
Show child attributes
[ { "aspect_ratio": 3.058, "file_path": "/mInxmYm9JPKFpcphd8Gpf8dMJxE.png", "height": 258, "iso_639_1": "en", "vote_average": 3.334, "vote_count": 1, "width": 789 }, { "aspect_ratio": 5.373, "file_path": "/u1bPoiDo22tcxGrUL66OBgEqYVC.png", "height": 804, "iso_639_1": "sv", "vote_average": 3.334, "vote_count": 1, "width": 4320 }, { "aspect_ratio": 4.898, "file_path": "/229qsNzG53Oew6YGYAlKMCfAnBS.png", "height": 196, "iso_639_1": "zh", "vote_average": 3.334, "vote_count": 1, "width": 960 }, { "aspect_ratio": 4.482, "file_path": "/ydEZ3N61ioPqJnQFXMwiK1sX9B9.png", "height": 548, "iso_639_1": "mk", "vote_average": 3.334, "vote_count": 1, "width": 2456 }, { "aspect_ratio": 5.038, "file_path": "/wrV8ixHZfqJI6AqhXUUJGpyebZG.png", "height": 846, "iso_639_1": "fr", "vote_average": 3.334, "vote_count": 1, "width": 4262 }, { "aspect_ratio": 5.895, "file_path": "/nNK5ZOynlI8bQ40lVtRebQutM2w.png", "height": 344, "iso_639_1": "pt", "vote_average": 3.334, "vote_count": 3, "width": 2028 }, { "aspect_ratio": 3.939, "file_path": "/qlhWGUICAp3HmU7MTv605Ayptet.png", "height": 198, "iso_639_1": "en", "vote_average": 3.334, "vote_count": 1, "width": 780 }, { "aspect_ratio": 8.535, "file_path": "/7XsTjUdlgGlaZZMpdoL7NOT07Hn.png", "height": 256, "iso_639_1": "en", "vote_average": 1.75, "vote_count": 2, "width": 2185 }, { "aspect_ratio": 11.725, "file_path": "/mDDVmF4m4jqscr4TDvTmFQq18bJ.png", "height": 80, "iso_639_1": "pt", "vote_average": 0.958, "vote_count": 4, "width": 938 }, { "aspect_ratio": 13.083, "file_path": "/6p458fPQy0QSM9xPx023xvPZzKF.png", "height": 60, "iso_639_1": "en", "vote_average": 0.166, "vote_count": 2, "width": 785 }, { "aspect_ratio": 4.482, "file_path": "/34JXia7ijoBvlSiyLbiBZVnmGat.png", "height": 548, "iso_639_1": "mk", "vote_average": 0.166, "vote_count": 1, "width": 2456 }, { "aspect_ratio": 4.482, "file_path": "/wnoFZGgQgAWZH9joGZlndYfCa2Q.svg", "height": 548, "iso_639_1": "mk", "vote_average": 0.166, "vote_count": 1, "width": 2456 }, { "aspect_ratio": 6.39, "file_path": "/5hnRYyRg4gA1JVdvJkZAfF8KNw5.png", "height": 123, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 786 }, { "aspect_ratio": 6.248, "file_path": "/jK3zYFD2bkZ2LLKWmS7xOhQFb6Z.png", "height": 125, "iso_639_1": "fr", "vote_average": 0, "vote_count": 0, "width": 781 }, { "aspect_ratio": 5.681, "file_path": "/xEMGmvxJVnkvmvzM449onhbLlQS.png", "height": 138, "iso_639_1": "es", "vote_average": 0, "vote_count": 0, "width": 784 }, { "aspect_ratio": 3.949, "file_path": "/p6JQJxczUaMiaJjaqkq0p8b4CZW.png", "height": 198, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 782 }, { "aspect_ratio": 2.471, "file_path": "/qUAggXj5MvMsc5bkbLp02VhjuwV.png", "height": 308, "iso_639_1": "es", "vote_average": 0, "vote_count": 0, "width": 761 }, { "aspect_ratio": 5.765, "file_path": "/wYuNdkoHDYnyio3yqQHXIWWwV43.png", "height": 136, "iso_639_1": "de", "vote_average": 0, "vote_count": 0, "width": 784 }, { "aspect_ratio": 3.169, "file_path": "/oSydYkbbczu7Y28CuGAW5odBc2k.png", "height": 248, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 786 }, { "aspect_ratio": 3.939, "file_path": "/1evez5Ay7M04aGhg1efSgdCRueF.png", "height": 198, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 780 }, { "aspect_ratio": 5.757, "file_path": "/hrQT9Av8KQnLq620gqfTzfTfqVM.png", "height": 136, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 783 }, { "aspect_ratio": 4.639, "file_path": "/8Q8EBjQOnpGayrtdYvyP12jccGa.png", "height": 169, "iso_639_1": "pl", "vote_average": 0, "vote_count": 0, "width": 784 }, { "aspect_ratio": 5.232, "file_path": "/dCQXWxU5GB88qGK4HyyxUM3ijPO.png", "height": 151, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 790 }, { "aspect_ratio": 5.947, "file_path": "/zslpNevHVxIWZ03E2fqT2imlaY1.png", "height": 132, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 785 }, { "aspect_ratio": 4.01, "file_path": "/t7gtrgY0Uv4rko4pugMwKvd5Ni7.png", "height": 195, "iso_639_1": "cs", "vote_average": 0, "vote_count": 0, "width": 782 }, { "aspect_ratio": 6.653, "file_path": "/msVBaxnGvE57AOLDvFDVpaIZqaV.png", "height": 300, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 1996 }, { "aspect_ratio": 3.262, "file_path": "/wKdBKOP20lNaD7eglFXdUKMuGy0.png", "height": 385, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 1256 }, { "aspect_ratio": 5.64, "file_path": "/voKDt53GGpsDr33LoIOz4kuRKAV.png", "height": 139, "iso_639_1": "ru", "vote_average": 0, "vote_count": 0, "width": 784 }, { "aspect_ratio": 8.153, "file_path": "/om3OnySFeJ8Y4JW2fz01rZ5Clec.png", "height": 268, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 2185 }, { "aspect_ratio": 4.27, "file_path": "/lo0Aar8esbXNlPCpE06LTGQWuWt.png", "height": 215, "iso_639_1": "fi", "vote_average": 0, "vote_count": 0, "width": 918 }, { "aspect_ratio": 2.958, "file_path": "/1mZHjtxEYPLMdrfeOlqsAOqORTH.png", "height": 692, "iso_639_1": "zh", "vote_average": 0, "vote_count": 0, "width": 2047 }, { "aspect_ratio": 5.765, "file_path": "/f74cEVDsN8lJ1aOfHl0SYf0fYst.png", "height": 136, "iso_639_1": "de", "vote_average": 0, "vote_count": 0, "width": 784 }, { "aspect_ratio": 5.93, "file_path": "/s8bbqvmmDFxupqZu3HYHhmeNzaM.png", "height": 200, "iso_639_1": "it", "vote_average": 0, "vote_count": 0, "width": 1186 }, { "aspect_ratio": 5.373, "file_path": "/1scxTRo3EHtL0ab1eaDG4m1L4Ws.png", "height": 804, "iso_639_1": "sv", "vote_average": 0, "vote_count": 0, "width": 4320 }, { "aspect_ratio": 2.25, "file_path": "/dwwFetJRrvGmXkvKDSXG6K97zez.png", "height": 948, "iso_639_1": "cn", "vote_average": 0, "vote_count": 0, "width": 2133 }, { "aspect_ratio": 4.894, "file_path": "/wpl6n06xEcGYQ8BgYPS5orwsden.png", "height": 377, "iso_639_1": "fr", "vote_average": 0, "vote_count": 0, "width": 1845 }, { "aspect_ratio": 6.246, "file_path": "/zSDstyuciOMnqfYgf8RNiIzX5os.svg", "height": 333, "iso_639_1": "ru", "vote_average": 0, "vote_count": 0, "width": 2080 }, { "aspect_ratio": 5.895, "file_path": "/zRgUtmix5Ah6rbwzoSV5TtuoOHa.png", "height": 344, "iso_639_1": "it", "vote_average": 0, "vote_count": 0, "width": 2028 } ]
Show child attributes
[ { "aspect_ratio": 0.667, "file_path": "/9dw840VOr3YBkrYxtJ7wuKNAoK5.jpg", "height": 3000, "iso_639_1": "zh", "vote_average": 10, "vote_count": 5, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/fPtlCO1yQtnoLHOwKtWz7db6RGU.jpg", "height": 1500, "iso_639_1": "en", "vote_average": 7.318, "vote_count": 11, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/u7mjiMdKK1ooSYuOKS4aAWIJlJa.jpg", "height": 3000, "iso_639_1": "sv", "vote_average": 3.334, "vote_count": 2, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/8HWCaymY2FNwjC66jWDqT6FzEKr.jpg", "height": 3000, "iso_639_1": "cs", "vote_average": 3.334, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/22hWrBQkPAbN7y5loIORYdNfT45.jpg", "height": 1500, "iso_639_1": "he", "vote_average": 3.334, "vote_count": 1, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/bqjMBDuZwws5IIpMUL5OypsqVwg.jpg", "height": 3000, "iso_639_1": "hu", "vote_average": 3.334, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/zL3pSAA0WfqfUMI7HdrBIMZoBu5.jpg", "height": 750, "iso_639_1": "pl", "vote_average": 3.334, "vote_count": 1, "width": 500 }, { "aspect_ratio": 0.667, "file_path": "/npcHgyp5MmKMe4lWqJi2ma1CuhC.jpg", "height": 3000, "iso_639_1": "ko", "vote_average": 3.334, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/nI0VC4EXwA88g1UZ66dCpsrQ9Co.jpg", "height": 3000, "iso_639_1": "it", "vote_average": 3.334, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/xe6KUhqOg4c7KlfPJid3SNPteHX.jpg", "height": 3000, "iso_639_1": "sk", "vote_average": 3.334, "vote_count": 2, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/wNTpXK17ctcrERI6Ts45ZoTT7RY.jpg", "height": 3000, "iso_639_1": "fr", "vote_average": 3.334, "vote_count": 2, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/uVQPxSW6blXKgoCnkpnzxjSIZhR.jpg", "height": 3000, "iso_639_1": "fr", "vote_average": 3.334, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/rMNBNpYAu8CHzV5HfTZXBYyewvc.jpg", "height": 3000, "iso_639_1": "fr", "vote_average": 3.334, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/wDh9zQm9WDwisJuisAKsRbSz03w.jpg", "height": 3000, "iso_639_1": "fr", "vote_average": 3.334, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/4IgMSK6ehZcfniZoWFRLSxEPcHS.jpg", "height": 3000, "iso_639_1": "es", "vote_average": 3.334, "vote_count": 3, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/xE3lZ4XNrO0ZKrUkdIxgbxMTPdz.jpg", "height": 1600, "iso_639_1": "ja", "vote_average": 3.334, "vote_count": 1, "width": 1068 }, { "aspect_ratio": 0.667, "file_path": "/y30mICVaZquegYznH0RKc5dn9v5.jpg", "height": 3000, "iso_639_1": "uk", "vote_average": 3.334, "vote_count": 3, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/bWxuJCLgShXwOVIafyNwOpmCw0J.jpg", "height": 3000, "iso_639_1": "en", "vote_average": 3.334, "vote_count": 2, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/eqJVivI0EqYIyqkdnbpSxOpalbI.jpg", "height": 3000, "iso_639_1": "ro", "vote_average": 3.334, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.7, "file_path": "/rGQ2NGWoseiVU8kk7tgm6xR9ifz.jpg", "height": 2048, "iso_639_1": "zh", "vote_average": 3.334, "vote_count": 1, "width": 1434 }, { "aspect_ratio": 0.667, "file_path": "/hBInc3xsQ33rGvJnLVDaFhxhBBa.jpg", "height": 3000, "iso_639_1": "mk", "vote_average": 3.334, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/eBdnpdow5NQaLns92NhLGdRSWGa.jpg", "height": 3000, "iso_639_1": "de", "vote_average": 3.334, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/RjK3yBYQcXAe4O4TGoXM2fshYT.jpg", "height": 3000, "iso_639_1": "de", "vote_average": 3.334, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/bqALmWhVaqfQedyPZn7MeuOjfSk.jpg", "height": 3000, "iso_639_1": "ru", "vote_average": 3.334, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/aqAAtVZKfleyCVZFvIdx174Juiw.jpg", "height": 2100, "iso_639_1": "ja", "vote_average": 3.334, "vote_count": 1, "width": 1400 }, { "aspect_ratio": 0.667, "file_path": "/dj0cBw9fcLiL0xJrLP8mj6gZF9t.jpg", "height": 2916, "iso_639_1": "en", "vote_average": 3.334, "vote_count": 1, "width": 1944 }, { "aspect_ratio": 0.667, "file_path": "/9I4oCsHdif8IirOIeW0hsmTpZh5.jpg", "height": 3000, "iso_639_1": "en", "vote_average": 3.334, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/lGEPBTIQ0CXs20ttYtPr6rQ7fJx.jpg", "height": 3000, "iso_639_1": "en", "vote_average": 3.334, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/sYYBZ4tJDGMPyPxXuLlUvZgp19k.jpg", "height": 3000, "iso_639_1": "en", "vote_average": 3.334, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/8nx8sttha1Zidt73SbNncVfSwqk.jpg", "height": 1500, "iso_639_1": "fr", "vote_average": 2.542, "vote_count": 4, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/yDTfuFwJUl3JRBGEEb5jS6QhCW3.jpg", "height": 3000, "iso_639_1": "pt", "vote_average": 2.542, "vote_count": 4, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/pvIQrZymHtPv7HanIjxQMRYDiGC.jpg", "height": 3000, "iso_639_1": "de", "vote_average": 2.278, "vote_count": 3, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/wnps5IL8YpeJpZvciDRXt7yZF8a.jpg", "height": 1500, "iso_639_1": "es", "vote_average": 2.066, "vote_count": 5, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/tONmRKKT4pwZ3HYrDwihqRLWS6.jpg", "height": 3000, "iso_639_1": "en", "vote_average": 2.066, "vote_count": 5, "width": 2000 }, { "aspect_ratio": 0.666, "file_path": "/r2IFRKmD0nLaJOaILGKHdF31bKy.jpg", "height": 1034, "iso_639_1": "es", "vote_average": 1.75, "vote_count": 6, "width": 689 }, { "aspect_ratio": 0.667, "file_path": "/aYLd1H2XrlwP7VhCFctKUxOJKG0.jpg", "height": 3000, "iso_639_1": "cs", "vote_average": 1.75, "vote_count": 2, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/tAQeMpVH4TAt0FEPvfHiB2Pz9d1.jpg", "height": 1500, "iso_639_1": "ru", "vote_average": 1.75, "vote_count": 2, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/nxHMMzjH0Gvd45iwmLzm3mWDjQB.jpg", "height": 1500, "iso_639_1": "en", "vote_average": 1.75, "vote_count": 2, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/j7hwY6UWMuDYGbCXObEUGTgNCru.jpg", "height": 3000, "iso_639_1": "en", "vote_average": 1.75, "vote_count": 2, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/zYZBiYLZgqkcxN03Er2tQW0Q83i.jpg", "height": 750, "iso_639_1": "ja", "vote_average": 1.75, "vote_count": 2, "width": 500 }, { "aspect_ratio": 0.708, "file_path": "/6jo5NtIjFlJ8sFzIbZIVXOSlCwz.jpg", "height": 2826, "iso_639_1": "de", "vote_average": 1.75, "vote_count": 2, "width": 2000 }, { "aspect_ratio": 0.706, "file_path": "/t2wmI7Zt4Jep2wQc4nMaoraMMwq.jpg", "height": 2832, "iso_639_1": "de", "vote_average": 1.75, "vote_count": 2, "width": 2000 }, { "aspect_ratio": 0.697, "file_path": "/llnpjLzCmkBq6dv0vNUMNHCJAF4.jpg", "height": 1500, "iso_639_1": "en", "vote_average": 1.75, "vote_count": 2, "width": 1045 }, { "aspect_ratio": 0.667, "file_path": "/gWZz6bmuzxdfW5siVGW6IYcUHuF.jpg", "height": 3000, "iso_639_1": "en", "vote_average": 1.75, "vote_count": 4, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/d8ZvFbzhB4MIFKNGU3dhamfaPpg.jpg", "height": 3000, "iso_639_1": "de", "vote_average": 1.75, "vote_count": 2, "width": 2000 }, { "aspect_ratio": 0.666, "file_path": "/qBgrO6BnnpXt0UnncQu49drrNRB.jpg", "height": 1996, "iso_639_1": "en", "vote_average": 1.75, "vote_count": 4, "width": 1329 }, { "aspect_ratio": 0.667, "file_path": "/mRJ9NNum1KlHQfnW3iBYdFOLsuU.jpg", "height": 1500, "iso_639_1": "ru", "vote_average": 1.75, "vote_count": 2, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/t2fanPUgCGty1tmU9t3jtYEOEMS.jpg", "height": 1500, "iso_639_1": "pt", "vote_average": 1.75, "vote_count": 6, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/7XYQOK9etdq1H7jXO2UlLBE70k4.jpg", "height": 900, "iso_639_1": "pt", "vote_average": 1.714, "vote_count": 7, "width": 600 }, { "aspect_ratio": 0.667, "file_path": "/lPXL0ECh8o4GfcYjSZaHwydJZyG.jpg", "height": 3000, "iso_639_1": "en", "vote_average": 1.434, "vote_count": 5, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/njoa5i0yTnKAicSNboFWP1hjyFh.jpg", "height": 1500, "iso_639_1": "uk", "vote_average": 1.434, "vote_count": 5, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/uQRs1iX5ePqMQieZL89C9yIGEXW.jpg", "height": 1920, "iso_639_1": "en", "vote_average": 1.222, "vote_count": 3, "width": 1280 }, { "aspect_ratio": 0.708, "file_path": "/zZ6mWoCkwPus4dhUPO5OJDk1WeF.jpg", "height": 2260, "iso_639_1": "de", "vote_average": 1.222, "vote_count": 3, "width": 1600 }, { "aspect_ratio": 0.667, "file_path": "/s2c2EYDJiSqeciWZ9VkwnzarHg6.jpg", "height": 1500, "iso_639_1": "en", "vote_average": 1.222, "vote_count": 3, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/kjWYd2qziS18BPQs85xE6Lb3H09.jpg", "height": 1440, "iso_639_1": "pt", "vote_average": 0.854, "vote_count": 8, "width": 960 }, { "aspect_ratio": 0.667, "file_path": "/2xQTvM7w4VcKZUB5nAzdcKhJ1DE.jpg", "height": 1500, "iso_639_1": "pt", "vote_average": 0.5, "vote_count": 7, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/m1Omf6x2MTj9JH54N7PAhN4hYMC.jpg", "height": 3000, "iso_639_1": "cs", "vote_average": 0.166, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/lQqjJl8vn6Ry8J61KZxrTqtzRys.jpg", "height": 3000, "iso_639_1": "cs", "vote_average": 0.166, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/kpkmvEBBgqifVudi9Iuu79AyXb4.jpg", "height": 1500, "iso_639_1": "en", "vote_average": 0.166, "vote_count": 1, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/A4f49u3cAuBfpxutgW4TwrLUBKX.jpg", "height": 1500, "iso_639_1": "en", "vote_average": 0.166, "vote_count": 2, "width": 1000 }, { "aspect_ratio": 0.686, "file_path": "/hIl2HK19B3Wxor3Ehgx3s1WPOCs.jpg", "height": 1590, "iso_639_1": "en", "vote_average": 0.166, "vote_count": 1, "width": 1091 }, { "aspect_ratio": 0.667, "file_path": "/a62573bvy3pQwPcPanWVfoh837f.jpg", "height": 1500, "iso_639_1": "he", "vote_average": 0.166, "vote_count": 1, "width": 1000 }, { "aspect_ratio": 0.701, "file_path": "/uJGTBZXADrGSs30Pc1qXGWGpZvm.jpg", "height": 1426, "iso_639_1": "fr", "vote_average": 0.166, "vote_count": 1, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/veHIp2oDRK14HDlgXTuWuAROIjo.jpg", "height": 3000, "iso_639_1": "fr", "vote_average": 0.166, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/huxBRLmvdnRi4I1taWyjrnKThZv.jpg", "height": 1500, "iso_639_1": "en", "vote_average": 0.166, "vote_count": 1, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/iiZ0SVoaBxIK7WZwwVc7XcbHD1L.jpg", "height": 1500, "iso_639_1": "en", "vote_average": 0.166, "vote_count": 1, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/zmoMfPwBcNCXRbOlQkOTBNOO4qR.jpg", "height": 1500, "iso_639_1": "uk", "vote_average": 0.166, "vote_count": 2, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/xmLXRDSHhW8gTaF3xloRr1wPBb8.jpg", "height": 1200, "iso_639_1": "en", "vote_average": 0.166, "vote_count": 1, "width": 800 }, { "aspect_ratio": 0.714, "file_path": "/tq9LKUPpk4BFsq6RmKESQdlvJKV.jpg", "height": 1600, "iso_639_1": "en", "vote_average": 0.166, "vote_count": 1, "width": 1142 }, { "aspect_ratio": 0.712, "file_path": "/q1WE7ZXXBuYuG4C2GCcmZL9vXkm.jpg", "height": 750, "iso_639_1": "en", "vote_average": 0.166, "vote_count": 1, "width": 534 }, { "aspect_ratio": 0.75, "file_path": "/rxxjwCFxFTb07xe5Rf5MJI1bSg7.jpg", "height": 1200, "iso_639_1": "sk", "vote_average": 0.166, "vote_count": 1, "width": 900 }, { "aspect_ratio": 0.667, "file_path": "/6bV58tS7fpfAnozmiYkzRFN8r5t.jpg", "height": 2100, "iso_639_1": "fr", "vote_average": 0.166, "vote_count": 2, "width": 1400 }, { "aspect_ratio": 0.707, "file_path": "/tE4mwWXF95M4Wqs2tkQqCa8ysqH.jpg", "height": 1811, "iso_639_1": "en", "vote_average": 0.166, "vote_count": 2, "width": 1280 }, { "aspect_ratio": 0.667, "file_path": "/Q2sXW0nceeGhJNRfB6X3oVYzG0.jpg", "height": 3000, "iso_639_1": "tr", "vote_average": 0.166, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/mXz3YxmaB6GLMqQSzYY6sNXNNxC.jpg", "height": 3000, "iso_639_1": "sv", "vote_average": 0.166, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/7Wev5UjTkcA2zW0ctgqnuoKnpbU.jpg", "height": 3000, "iso_639_1": "mk", "vote_average": 0.166, "vote_count": 1, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/i4b9yLY4a7Mj7HXIWikiQh7TgSj.jpg", "height": 1500, "iso_639_1": "mk", "vote_average": 0.166, "vote_count": 1, "width": 1000 }, { "aspect_ratio": 0.703, "file_path": "/5M2nOQUtt8qr6cANjGhlI8xqnrZ.jpg", "height": 750, "iso_639_1": "bg", "vote_average": 0, "vote_count": 0, "width": 527 }, { "aspect_ratio": 0.667, "file_path": "/4jRnrk6J3lx0WcXBeQgrQpFCmwG.jpg", "height": 750, "iso_639_1": "es", "vote_average": 0, "vote_count": 0, "width": 500 }, { "aspect_ratio": 0.667, "file_path": "/raProKa4SqAtOJg9ppb5qVfY3y1.jpg", "height": 2100, "iso_639_1": "de", "vote_average": 0, "vote_count": 0, "width": 1400 }, { "aspect_ratio": 0.667, "file_path": "/1x5LQ7ADHWqCxC943ojlBeVbU8G.jpg", "height": 1500, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/o0vC1jE8a4BUrRQk8YQKX7H2adh.jpg", "height": 1500, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/l5hzMv2eUdTRJ7oPbDQpvmaUV5.jpg", "height": 3000, "iso_639_1": null, "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/tXRSV9P0b8NjX3KivYhGnMpiDcZ.jpg", "height": 3000, "iso_639_1": null, "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/esfmjUvswur0xUzfH3BAwyYm9aY.jpg", "height": 3000, "iso_639_1": "hu", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/gyGW1AMwwXzHGJ4wP8XvWbzq3rI.jpg", "height": 1500, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/1NzJJ8WQBOnFPCdBIc0WaVTryKK.jpg", "height": 1500, "iso_639_1": "de", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/gqF2d3qxlcoa4t9XLsQHeqHJJc7.jpg", "height": 1500, "iso_639_1": "de", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/aMIPA0HTPS4LLIq7B4NzDPFLI1v.jpg", "height": 1500, "iso_639_1": "de", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.703, "file_path": "/8Az5qcfudr9zOr7I2RfVB8a5ml6.jpg", "height": 1707, "iso_639_1": "fr", "vote_average": 0, "vote_count": 0, "width": 1200 }, { "aspect_ratio": 0.667, "file_path": "/mjmambmR1ooGUMzPY5H7rJsHKXG.jpg", "height": 1500, "iso_639_1": "fr", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.75, "file_path": "/mdAjhOLmgbgRZZiamud3BVXrtfQ.jpg", "height": 1024, "iso_639_1": "it", "vote_average": 0, "vote_count": 0, "width": 768 }, { "aspect_ratio": 0.667, "file_path": "/1bbpJKPeCyl8JNGSrWGNNCdnyg.jpg", "height": 2100, "iso_639_1": "it", "vote_average": 0, "vote_count": 0, "width": 1400 }, { "aspect_ratio": 0.671, "file_path": "/e25wa3T29i2k7aDqvUGiWZXiqWs.jpg", "height": 850, "iso_639_1": "ko", "vote_average": 0, "vote_count": 0, "width": 570 }, { "aspect_ratio": 0.666, "file_path": "/gB790vEKJfR1uVczYXUnubj2lQ3.jpg", "height": 800, "iso_639_1": "ru", "vote_average": 0, "vote_count": 0, "width": 533 }, { "aspect_ratio": 0.667, "file_path": "/fSaCCdTBO9ypOu27zzNwQQhSeOV.jpg", "height": 3000, "iso_639_1": "de", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/yLJZvrtWvYoH3syjE9TTl48OCMY.jpg", "height": 3000, "iso_639_1": "da", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/dEiIyaXsN3lLypyxuPGXtrzw3YJ.jpg", "height": 1500, "iso_639_1": "ug", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.712, "file_path": "/sxovOSYf66gwAsJVw2Hau7E625K.jpg", "height": 750, "iso_639_1": "ja", "vote_average": 0, "vote_count": 0, "width": 534 }, { "aspect_ratio": 0.667, "file_path": "/A1AqYML0YWQPde3bMUMMMdLTytg.jpg", "height": 1500, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.74, "file_path": "/8BsCYCnP8y8sVe9ZTCTaBDOyAQ6.jpg", "height": 946, "iso_639_1": "fr", "vote_average": 0, "vote_count": 0, "width": 700 }, { "aspect_ratio": 0.7, "file_path": "/twTtNUaRhL2EFC2V1sFXkYs8pip.jpg", "height": 750, "iso_639_1": "zh", "vote_average": 0, "vote_count": 0, "width": 525 }, { "aspect_ratio": 0.667, "file_path": "/wxPeAzf5RxiGplvXdW6UO27dvd.jpg", "height": 1500, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/5IFMuIo7IOKrktUVkR7aHVmDriz.jpg", "height": 1500, "iso_639_1": "fi", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/2RUw8ON4kxElWrng4iYa8R3vKZy.jpg", "height": 750, "iso_639_1": "es", "vote_average": 0, "vote_count": 0, "width": 500 }, { "aspect_ratio": 0.667, "file_path": "/h0TlO1IJnJGKxCbWILs9LoyUoSi.jpg", "height": 1500, "iso_639_1": "fr", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/b1MxObGwOhvXMMqiU0Im0UoStUq.jpg", "height": 3000, "iso_639_1": "sk", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/ijSjiD5e3iw5Vf3FlKNXE9nMq79.jpg", "height": 1500, "iso_639_1": "de", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.747, "file_path": "/zd9o7KSlwSTjwhzCKevky7Ihrnb.jpg", "height": 802, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 599 }, { "aspect_ratio": 0.667, "file_path": "/viYEnVyDSrjPr3S2ptwcutmY0x8.jpg", "height": 3000, "iso_639_1": "fr", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/3Ax6g84RMUHoj1pTPO99j2BoO4E.jpg", "height": 3000, "iso_639_1": "fr", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.709, "file_path": "/30NYhMQllZ5k6RQL74liJMcbqdm.jpg", "height": 940, "iso_639_1": "uk", "vote_average": 0, "vote_count": 0, "width": 666 }, { "aspect_ratio": 0.667, "file_path": "/gNXQDAuPUEQw34Y7IgmIKeE91Z.jpg", "height": 3000, "iso_639_1": "uk", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/pCfjmAGlykOnP82znFwONPyytXh.jpg", "height": 3000, "iso_639_1": "es", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/5be4Fbr1R9Aec0e6wRDrMJZPkBy.jpg", "height": 3000, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.679, "file_path": "/3qVxvrhYfKgBjyEjKyuwjrdSVkt.jpg", "height": 1236, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 839 }, { "aspect_ratio": 0.679, "file_path": "/5NwPz83ZK64HAec6rkyLgupdvtX.jpg", "height": 1236, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 839 }, { "aspect_ratio": 0.697, "file_path": "/wo7QzSZFeU1vC27FtB9Neu229CA.jpg", "height": 1435, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/nhknij3s2JV6Kb8Mb6v0PvQ7mCV.jpg", "height": 1500, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/u1JfnGa3wUTAk6C81D9osaN2uCd.jpg", "height": 3000, "iso_639_1": "it", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/sw0ZUU1stxA8yHC6nQYcF7n986W.jpg", "height": 3000, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/wCzccHHc53hw7p3ykLx4KvT8JM2.jpg", "height": 3000, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/6xz8qIXO4WS1P0JRpyNrorJrT7Q.jpg", "height": 3000, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/vcNZE4uyUUkIZ2S9JoPB0ff9TFE.jpg", "height": 3000, "iso_639_1": "es", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/mkd4n6dvzsVj2Ac4hLht77NBNMy.jpg", "height": 1500, "iso_639_1": "zh", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/yTdDY6iRPNYcOfd7Mp3OZzkUqYc.jpg", "height": 1500, "iso_639_1": "ja", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.697, "file_path": "/pLS5TkvJ0hRXXeWzGSLstoIt0Ph.jpg", "height": 1435, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.741, "file_path": "/h7phZsEAeLopXsyVEI8TKmbeNBh.jpg", "height": 2700, "iso_639_1": "fr", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/kbZLbkYItStutmoIrZVC8hm7CnV.jpg", "height": 1500, "iso_639_1": "fr", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/nbIbelpvBBZaLYH1iz3kCeFILaI.jpg", "height": 3000, "iso_639_1": "tr", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/r1qe2Y51geBoeWw8Fe62tn0VeT8.jpg", "height": 1500, "iso_639_1": "fr", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.673, "file_path": "/5gA5FymcBnvOGAuwRsL4jAI5ygf.jpg", "height": 1000, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 673 }, { "aspect_ratio": 0.75, "file_path": "/zYrdCpf3ZYrQMVealwdaAoJ5Q0y.jpg", "height": 933, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 700 }, { "aspect_ratio": 0.747, "file_path": "/fIetRD1Yecz8AH65yaI1eOfsaPD.jpg", "height": 1607, "iso_639_1": "el", "vote_average": 0, "vote_count": 0, "width": 1200 }, { "aspect_ratio": 0.667, "file_path": "/dRNoZs6CMfDHyr1y6yy8SMGIges.jpg", "height": 1360, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 907 }, { "aspect_ratio": 0.666, "file_path": "/931QsI3qw1v65I1qwp8IvjuVoBZ.jpg", "height": 1280, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 853 }, { "aspect_ratio": 0.716, "file_path": "/kWeHI0sLEXoMLFKxHUhfkfN7TJN.jpg", "height": 750, "iso_639_1": "ja", "vote_average": 0, "vote_count": 0, "width": 537 }, { "aspect_ratio": 0.667, "file_path": "/h6dOHN7ibhuEl2LLRk6dh5EXRo5.jpg", "height": 1104, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 736 }, { "aspect_ratio": 0.667, "file_path": "/tW24JL2j2kvmfXKD7kbYHqW4lRL.jpg", "height": 1620, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 1080 }, { "aspect_ratio": 0.667, "file_path": "/3x5gkd4hj8Dtx6MtB843tY8cfRN.jpg", "height": 1900, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 1267 }, { "aspect_ratio": 0.667, "file_path": "/hp3E8WL3VwV2y3AJCTOkDKdnkNN.jpg", "height": 2100, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 1400 }, { "aspect_ratio": 0.667, "file_path": "/hEPuJlJUbHJyxbhinh824CwIMdB.jpg", "height": 3000, "iso_639_1": null, "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/5LMOjBTxCzLRBLiflMR0PGPbZU4.jpg", "height": 3000, "iso_639_1": null, "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.697, "file_path": "/uroDs9bRhPyglh270shdUBcxBuK.jpg", "height": 2048, "iso_639_1": "lt", "vote_average": 0, "vote_count": 0, "width": 1427 }, { "aspect_ratio": 0.669, "file_path": "/yiFNzLdXCESYhtDeNn8PZCnfmSe.jpg", "height": 1350, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 903 }, { "aspect_ratio": 0.667, "file_path": "/j16b7bOcFtaRM7WwQmm4XzvRgvq.jpg", "height": 3000, "iso_639_1": "cn", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/9mmG1nxa0Co2NhfBMMGSSlbqCYl.jpg", "height": 3000, "iso_639_1": "en", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/bgtM93saLxWalM1e67OMEJWM1L2.jpg", "height": 3000, "iso_639_1": "it", "vote_average": 0, "vote_count": 0, "width": 2000 }, { "aspect_ratio": 0.667, "file_path": "/zliPLY0pyWx2tAqq8ic2jyQT7xK.jpg", "height": 1620, "iso_639_1": "ru", "vote_average": 0, "vote_count": 0, "width": 1080 }, { "aspect_ratio": 0.667, "file_path": "/6MAgRbDcroVbdK8dRumCzDy4mUL.jpg", "height": 1500, "iso_639_1": "ru", "vote_average": 0, "vote_count": 0, "width": 1000 }, { "aspect_ratio": 0.667, "file_path": "/qNsU9x8H5FgAfjSE3UK7tsEg8m1.jpg", "height": 2250, "iso_639_1": "ru", "vote_average": 0, "vote_count": 0, "width": 1500 } ]