Введение в анализ данных¶

Сбор данных из открытых источников¶

В этом занятии мы обсудим, что можно сделать, если у вас на руках нет готовых данных, которые нужно анализировать. Один из способов набрать себе данных — взять из интернета. Человек часто находит информацию в сети и анализирует её, так почему же не заставить компьютер сделать то же самое?

Поиск данных в сайтах называют скрапингом от английского слова scrape (наскребать). Программа-скрапер может обходить веб-страницы и собирать нужную себе информацию. Если скачанную информацию требуется обрабатывать впоследствии, то сбор делится на 2 этапа:

  • скрапинг — скачивание информации,
  • парсинг — приведение скачанных данных к удобному структурированному виду.

Многие компании пользуются таким сбором информации. Зачастую этот процесс связан с обработкой персональных данных, поэтому в последнее время ведутся разговоры о государственном регулировании скрапинга, о чём, например, написано на Хабре. Если вкратце, то надо быть осторожными при использовании парсинга.

  1. Не стоит перегружать сервера — если они сгорят, это может быть расценено, как ущерб имуществу.
  2. Не нужно взламывать защитные системы — за неправомерный доступ существует ответственность.
  3. Следите за тем, что вы не подписали пользовательское соглашение, в котором запрещён скрапинг.
  4. Учитывайте законы об интеллектуальной собственности.
  5. Не собирайте персональные данные людей без их согласия даже из открытого доступа.

freedom.jpg

1. Сбор с использованием API¶

Создатели некоторых сервисов понимают, что находящаяся на их сайтах информация может быть полезна для аналитики. Тогда они предоставляют специальный набор ссылок (урлов), на которые можно отправлять HTTP-запросы. Тогда вместо получения html-страницы, как в браузере, сайт будет отдавать сразу структурированные данные, например, в формате JSON. Совокупность форматов таких запросов образует API (Application Program Interface).

В таком случае сайт может отдавать только те данные, которыми хочет делиться, следить за количеством обращений к этим данным, а для аналитика такой вариант лучше, поскольку позволяет быстрее парсить результат.

Сегодня же мы разберём, как работать с API Кинопоиска. Мы попробуем скачать информацию о фильмах.

In [ ]:
import json
import requests
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns

sns.set(font_scale=1.3, palette="Set2", style="whitegrid")

Чтобы иметь возможность обращаться к API, пользователю требуется авторизация. Для этого необходимо зарегистрироваться на сайте API. В разделе документация, где описан формат ссылок для получения информации, вы увидите ваш токен. Это специальный ключ-строка, который позволяет системе идентифицировать вас и, например, считать количество ваших запросов, которое тарифицируется.

Ваш токен — ваша личная информация. Лучше не показывать её другим людям, иначе они смогут задавать запросы от вашего имени. Поэтому предпочтительнее сохранить его в какой-то файл и читать оттуда при необходимости.

In [ ]:
# Считываем токен авторизации
with open('token.txt') as token_file:
    token = token_file.read()

Скачаем информацию про фильм "Джентльмены". Для этого найдём его в поиске на сайте Кинопоиска. Откроем страницу с фильмом. Она имеет вид https://www.kinopoisk.ru/film/1143242/. Здесь 1143242 — это ID фильма, который требуется для запроса в API.

Путь, на который нужно подать запрос, формируется таким образом:

ttps://api.kinopoisk.dev/v1.4/movie/{FILM_ID}/token/{TOKEN}.

Подробные указания можно посмотреть в документации.

Чтобы отправить запрос, будем использовать библиотеку requests. Так как мы получаем информацию, требуется функция get. Она принимает ссылку, а также дополнительные параметры, после чего отправляет запрос.

In [ ]:
import requests

film_id = "1143242"

url = f"https://api.kinopoisk.dev/v1.4/movie/{film_id}"
headers = {
    "X-API-KEY": token
}

response = requests.get(url, headers=headers)
print(response)
film_info = response.json()
print(film_info)
<Response [200]>
{'id': 1143242, 'externalId': {'kpHD': '47649cf90de74aca8da7eb5b17fc8a8a', 'imdb': 'tt8367814', 'tmdb': 522627}, 'name': 'Джентльмены', 'alternativeName': 'The Gentlemen', 'enName': None, 'names': [{'name': 'Toff Guys', 'language': 'GB', 'type': 'working title'}, {'name': 'Los Caballeros de la mafia', 'language': 'ES', 'type': None}, {'name': 'Busha', 'language': 'GB', 'type': 'working title'}, {'name': 'Los caballeros: criminales con clase', 'language': 'AR', 'type': None}, {'name': '紳士追殺令', 'language': 'TW', 'type': None}, {'name': 'Джентльмени', 'language': 'UA', 'type': None}, {'name': 'Εγκληματίες πρώτης τάξεως', 'language': 'GR', 'type': None}, {'name': 'ジェントルメン:2020', 'language': 'JP', 'type': None}, {'name': 'The Gentlemen', 'language': 'US', 'type': None}, {'name': 'Beyefendiler', 'language': 'TR', 'type': None}], 'type': 'movie', 'typeNumber': 1, 'year': 2019, 'description': 'Один ушлый американец ещё со\xa0студенческих лет\xa0приторговывал наркотиками, а\xa0теперь придумал схему нелегального обогащения с\xa0использованием поместий обедневшей английской аристократии и\xa0очень неплохо на\xa0этом разбогател. Другой пронырливый журналист приходит к\xa0Рэю, правой руке американца, и\xa0предлагает тому купить киносценарий, в\xa0котором подробно описаны преступления его\xa0босса при\xa0участии других представителей лондонского криминального мира\xa0—\xa0партнёра-еврея, китайской диаспоры, чернокожих спортсменов и\xa0даже русского олигарха.', 'shortDescription': 'Гангстеры всех мастей делят наркоферму. Закрученная экшен-комедия Гая Ричи с Мэттью Макконахи и Хью Грантом', 'slogan': 'Criminal. Class', 'status': None, 'rating': {'kp': 8.626, 'imdb': 7.8, 'filmCritics': 6.6, 'russianFilmCritics': 86.3636, 'await': None}, 'votes': {'kp': 2145499, 'imdb': 427468, 'filmCritics': 278, 'russianFilmCritics': 22, 'await': 0}, 'movieLength': 113, 'totalSeriesLength': None, 'seriesLength': None, 'ratingMpaa': 'r', 'ageRating': 18, 'poster': {'url': 'https://image.openmoviedb.com/kinopoisk-images/1599028/637271d5-61b4-4e46-ac83-6d07494c7645/orig', 'previewUrl': 'https://image.openmoviedb.com/kinopoisk-images/1599028/637271d5-61b4-4e46-ac83-6d07494c7645/x1000'}, 'backdrop': {'url': 'https://image.openmoviedb.com/kinopoisk-ott-images/1648503/2a000001711b57abb795e9276957168f83e9/orig', 'previewUrl': 'https://image.openmoviedb.com/kinopoisk-ott-images/1648503/2a000001711b57abb795e9276957168f83e9/x1000'}, 'genres': [{'name': 'криминал'}, {'name': 'комедия'}, {'name': 'боевик'}], 'countries': [{'name': 'США'}, {'name': 'Великобритания'}, {'name': 'Франция'}, {'name': 'Япония'}, {'name': 'Чехия'}], 'persons': [{'id': 797, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_797.jpg', 'name': 'Мэттью Макконахи', 'enName': 'Matthew McConaughey', 'description': 'Michael Pearson', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 38702, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_38702.jpg', 'name': 'Чарли Ханнэм', 'enName': 'Charlie Hunnam', 'description': 'Ray', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 4950097, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4950097.jpg', 'name': 'Генри Голдинг', 'enName': 'Henry Golding', 'description': 'Dry Eye', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 8090, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_8090.jpg', 'name': 'Хью Грант', 'enName': 'Hugh Grant', 'description': 'Fletcher', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 1067193, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1067193.jpg', 'name': 'Мишель Докери', 'enName': 'Michelle Dockery', 'description': 'Rosalind Pearson', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 1146480, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1146480.jpg', 'name': 'Джереми Стронг', 'enName': 'Jeremy Strong', 'description': 'Matthew', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 2444, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2444.jpg', 'name': 'Эдди Марсан', 'enName': 'Eddie Marsan', 'description': 'Big Dave', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 2454111, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2454111.jpg', 'name': 'Джейсон Вонг', 'enName': 'Jason Wong', 'description': 'Phuc', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 373, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_373.jpg', 'name': 'Колин Фаррелл', 'enName': 'Colin Farrell', 'description': 'Coach', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 1006787, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1006787.jpg', 'name': 'Лин Рене', 'enName': 'Lyne Renée', 'description': 'Jackie', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 25964, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_25964.jpg', 'name': 'Том\xa0У', 'enName': 'Tom Wu', 'description': 'Lord George', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 3002651, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_3002651.jpg', 'name': 'Чиди Аджуфо', 'enName': 'Chidi Ajufo', 'description': 'Bunny', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 5968202, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_5968202.jpg', 'name': 'Саймон Р. Баркер', 'enName': 'Simon R. Barker', 'description': 'Frazier (в титрах: Simon Barker)', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 1850607, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1850607.jpg', 'name': 'Джон Даглиш', 'enName': 'John Dagleish', 'description': 'Hammy', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 4717127, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4717127.jpg', 'name': 'Джордан Лонг', 'enName': 'Jordan Long', 'description': 'Barman', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 3393000, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_3393000.jpg', 'name': 'Лили Фрайзер', 'enName': 'Lily Frazer', 'description': 'Lisa the Mechanic', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 3300883, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_3300883.jpg', 'name': 'Гершвин Эсташ мл.', 'enName': 'Gershwyn Eustache Jnr', 'description': 'Roger', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 13177, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_13177.jpg', 'name': 'Сэмюэл Уэст', 'enName': 'Samuel West', 'description': 'Lord Pressfield', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 40828, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_40828.jpg', 'name': 'Джеральдин Сомервилль', 'enName': 'Geraldine Somerville', 'description': 'Lady Pressfield', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 4679, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4679.jpg', 'name': 'Элиот Самнер', 'enName': 'Eliot Sumner', 'description': 'Laura Pressfield', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 1308171, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1308171.jpg', 'name': 'Франц Драмех', 'enName': 'Franz Drameh', 'description': 'Benny', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 4653501, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4653501.jpg', 'name': 'Кристофер Эвангелу', 'enName': 'Christopher Evangelou', 'description': 'Primetime', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 23879, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_23879.jpg', 'name': 'Джим Уоррен', 'enName': 'James Warren', 'description': 'Jim', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 2817170, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2817170.jpg', 'name': 'Шон Сагар', 'enName': 'Sean Sagar', 'description': 'Mal', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 5931690, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_5931690.jpg', 'name': 'Багзи Мэлоун', 'enName': 'Bugzy Malone', 'description': 'Ernie', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 2317698, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2317698.jpg', 'name': 'Том Рис Харрис', 'enName': 'Tom Rhys Harries', 'description': 'Power Noel', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 5325577, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_5325577.jpg', 'name': 'Дэнни Гриффин', 'enName': 'Danny Griffin', 'description': 'Aslan', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 1575352, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1575352.jpg', 'name': 'Макс Беннетт', 'enName': 'Max Bennett', 'description': 'Brown', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 2497432, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2497432.jpg', 'name': 'Евгения Кузьмина', 'enName': 'Eugenia Kuzmina', 'description': 'Misha', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 3034185, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_3034185.jpg', 'name': 'Брюс Чон', 'enName': 'Bruce Chong', 'description': 'Ngoc', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 687946, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_687946.jpg', 'name': 'Эшли Макгуайр', 'enName': 'Ashley McGuire', 'description': 'Maureen', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 34921, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_34921.jpg', 'name': 'Джордж Эспри', 'enName': 'George Asprey', 'description': 'Lord Snowball', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 5336873, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_5336873.jpg', 'name': None, 'enName': 'Shanu Hazzan', 'description': 'Trigger', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 4787983, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4787983.jpg', 'name': 'Джек Джонс', 'enName': 'Jack Jones', 'description': 'Nick', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 2442849, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2442849.jpg', 'name': 'Сэмми Уильямс', 'enName': 'Sammy Williams', 'description': 'Kid', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 4369903, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4369903.jpg', 'name': None, 'enName': 'Ryan Dean', 'description': 'Murka', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 588830, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_588830.jpg', 'name': 'Гай Лист', 'enName': 'Guy List', 'description': 'Security Guard Guy', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 41834, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_41834.jpg', 'name': 'Марвин Кэмпбелл', 'enName': 'Marvin Campbell', 'description': 'Security Guard Marv', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 4079056, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4079056.jpg', 'name': None, 'enName': 'Will Mackay', 'description': 'Security Guard Frank (в титрах: Will MacKay)', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 4458039, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4458039.jpg', 'name': None, 'enName': 'Matt Sherren', 'description': 'Security Guard John', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 557505, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_557505.jpg', 'name': 'Джейсон Хунджан', 'enName': 'Jason Hunjan', 'description': 'Security Guard Tezza', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 547521, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_547521.jpg', 'name': 'Морис Ли', 'enName': 'Maurice Lee', 'description': 'Security Guard Mo', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 2329000, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2329000.jpg', 'name': 'Расселл Балог', 'enName': 'Russell Balogh', 'description': 'Russ', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 20327, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_20327.jpg', 'name': 'Того Игава', 'enName': 'Togo Igawa', 'description': 'Wang Yong', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 5931691, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_5931691.jpg', 'name': None, 'enName': "Jack O'Connor", 'description': 'Youth 1', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 2748057, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2748057.jpg', 'name': 'МакКелл Дэвид', 'enName': 'McKell David', 'description': 'Youth 2', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 5931692, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_5931692.jpg', 'name': None, 'enName': 'Isaiah Zev', 'description': 'Youth 3', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 41145, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_41145.jpg', 'name': 'Дэвид Гаррик', 'enName': 'David Garrick', 'description': 'Dave', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 4329998, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4329998.jpg', 'name': None, 'enName': 'Tom Lambert', 'description': 'Young Mickey', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 1902458, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1902458.jpg', 'name': 'Энди Чунг', 'enName': 'Andy Cheung', 'description': 'Chinese Waiter', 'profession': 'актеры', 'enProfession': 'actor'}, {'id': 3604626, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_3604626.jpg', 'name': 'Кристофер Бенстед', 'enName': 'Christopher Benstead', 'description': None, 'profession': 'композиторы', 'enProfession': 'composer'}, {'id': 1996197, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1996197.jpg', 'name': 'Джемма Джексон', 'enName': 'Gemma Jackson', 'description': None, 'profession': 'художники', 'enProfession': 'designer'}, {'id': 5204254, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_5204254.jpg', 'name': 'Рэйчел Олтон', 'enName': 'Rachel Aulton', 'description': None, 'profession': 'художники', 'enProfession': 'designer'}, {'id': 3960382, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_3960382.jpg', 'name': 'Оливер Кэрролл', 'enName': 'Oliver Carroll', 'description': None, 'profession': 'художники', 'enProfession': 'designer'}, {'id': 1997136, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1997136.jpg', 'name': 'Фиона Гэвин', 'enName': 'Fiona Gavin', 'description': None, 'profession': 'художники', 'enProfession': 'designer'}, {'id': 1986750, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1986750.jpg', 'name': 'Майкл Уилкинсон', 'enName': 'Michael Wilkinson', 'description': None, 'profession': 'художники', 'enProfession': 'designer'}, {'id': 2174208, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2174208.jpg', 'name': 'Нил Флойд', 'enName': 'Neil Floyd', 'description': None, 'profession': 'художники', 'enProfession': 'designer'}, {'id': 1996199, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1996199.jpg', 'name': 'Сара Уиттл', 'enName': 'Sarah Whittle', 'description': None, 'profession': 'художники', 'enProfession': 'designer'}, {'id': 45159, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_45159.jpg', 'name': 'Гай Ричи', 'enName': 'Guy Ritchie', 'description': None, 'profession': 'режиссеры', 'enProfession': 'director'}, {'id': 1987046, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1987046.jpg', 'name': 'Джеймс Херберт', 'enName': 'James Herbert', 'description': None, 'profession': 'монтажеры', 'enProfession': 'editor'}, {'id': 1986047, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1986047.jpg', 'name': 'Пол Мачлисс', 'enName': 'Paul Machliss', 'description': None, 'profession': 'монтажеры', 'enProfession': 'editor'}, {'id': 643927, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_643927.jpg', 'name': 'Алан Стюарт', 'enName': 'Alan Stewart', 'description': None, 'profession': 'операторы', 'enProfession': 'operator'}, {'id': 6032456, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_6032456.jpg', 'name': 'Мэттью Андерсон', 'enName': 'Matthew Anderson', 'description': None, 'profession': 'продюсеры', 'enProfession': 'producer'}, {'id': 4984694, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4984694.jpg', 'name': 'Айван Эткинсон', 'enName': 'Ivan Atkinson', 'description': None, 'profession': 'продюсеры', 'enProfession': 'producer'}, {'id': 51810, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_51810.jpg', 'name': 'Билл Блок', 'enName': 'Bill Block', 'description': None, 'profession': 'продюсеры', 'enProfession': 'producer'}, {'id': 4360695, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4360695.jpg', 'name': 'Адам Фогельсон', 'enName': 'Adam Fogelson', 'description': None, 'profession': 'продюсеры', 'enProfession': 'producer'}, {'id': 1078858, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1078858.jpg', 'name': 'Василий Дахненко', 'enName': None, 'description': None, 'profession': 'актеры дубляжа', 'enProfession': 'voice_actor'}, {'id': 2340955, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2340955.jpg', 'name': 'Сергей Смирнов', 'enName': None, 'description': None, 'profession': 'актеры дубляжа', 'enProfession': 'voice_actor'}, {'id': 1646082, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1646082.jpg', 'name': 'Филипп Бледный', 'enName': None, 'description': None, 'profession': 'актеры дубляжа', 'enProfession': 'voice_actor'}, {'id': 304577, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_304577.jpg', 'name': 'Алексей Иващенко', 'enName': None, 'description': None, 'profession': 'актеры дубляжа', 'enProfession': 'voice_actor'}, {'id': 1641154, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1641154.jpg', 'name': 'Татьяна Шитова', 'enName': None, 'description': None, 'profession': 'актеры дубляжа', 'enProfession': 'voice_actor'}, {'id': 739980, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_739980.jpg', 'name': 'Александр Вартанов', 'enName': None, 'description': None, 'profession': 'актеры дубляжа', 'enProfession': 'voice_actor'}, {'id': 1714171, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1714171.jpg', 'name': 'Алексей Багдасаров', 'enName': None, 'description': None, 'profession': 'актеры дубляжа', 'enProfession': 'voice_actor'}, {'id': 1634102, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1634102.jpg', 'name': 'Илья Барабанов', 'enName': None, 'description': None, 'profession': 'актеры дубляжа', 'enProfession': 'voice_actor'}, {'id': 1896171, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1896171.jpg', 'name': 'Наталья Сапецкая', 'enName': None, 'description': None, 'profession': 'актеры дубляжа', 'enProfession': 'voice_actor'}, {'id': 1649884, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1649884.jpg', 'name': 'Андрей Казанцев', 'enName': None, 'description': None, 'profession': 'актеры дубляжа', 'enProfession': 'voice_actor'}, {'id': 2441191, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2441191.jpg', 'name': 'Сергей Шайдаков', 'enName': None, 'description': None, 'profession': 'актеры дубляжа', 'enProfession': 'voice_actor'}, {'id': 2363725, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2363725.jpg', 'name': 'Артур Бесчастный', 'enName': None, 'description': None, 'profession': 'актеры дубляжа', 'enProfession': 'voice_actor'}, {'id': 1324756, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1324756.jpg', 'name': 'Григорий Калинин', 'enName': None, 'description': None, 'profession': 'актеры дубляжа', 'enProfession': 'voice_actor'}, {'id': 1925461, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1925461.jpg', 'name': 'Алексей Маслодудов', 'enName': None, 'description': None, 'profession': 'актеры дубляжа', 'enProfession': 'voice_actor'}, {'id': 1948766, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1948766.jpg', 'name': 'Денис Некрасов', 'enName': None, 'description': None, 'profession': 'актеры дубляжа', 'enProfession': 'voice_actor'}, {'id': 45159, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_45159.jpg', 'name': 'Гай Ричи', 'enName': 'Guy Ritchie', 'description': None, 'profession': 'сценаристы', 'enProfession': 'writer'}, {'id': 4984694, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4984694.jpg', 'name': 'Айван Эткинсон', 'enName': 'Ivan Atkinson', 'description': None, 'profession': 'сценаристы', 'enProfession': 'writer'}, {'id': 1910756, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1910756.jpg', 'name': 'Марн Дэвис', 'enName': 'Marn Davies', 'description': None, 'profession': 'сценаристы', 'enProfession': 'writer'}, {'id': 1266524, 'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1266524.jpg', 'name': 'Лорен Бонд', 'enName': 'Lauren Bond', 'description': None, 'profession': 'сценаристы', 'enProfession': 'writer'}], 'budget': {'currency': '$', 'value': 22000000}, 'premiere': {'country': None, 'cinema': None, 'bluray': None, 'dvd': None, 'digital': '2020-03-31T00:00:00.000Z', 'russia': '2020-02-13T00:00:00.000Z', 'world': '2019-12-03T00:00:00.000Z'}, 'top10': None, 'top250': 7, 'isSeries': False, 'ticketsOnSale': False, 'lists': ['top250', 'top500', 'popular-films', 'hearing_impairment', 'guy_ritchie', 'top20of2023', 'hd-blockbusters', 'hd-revise', 'ozvucheno_kubik_v_kube', 'box-russia-dollar', 'top-250-2020', 'hd'], 'networks': None, 'createdAt': '2024-04-13T01:35:34.645Z', 'updatedAt': '2025-05-08T01:00:18.460Z', 'fees': {'russia': {'value': 18003343, 'currency': '$'}, 'usa': {'value': 36471795, 'currency': '$'}, 'world': {'value': 115171795, 'currency': '$'}}, 'videos': {'trailers': [{'url': 'https://www.youtube.com/embed/e-aiHVdRlJg', 'name': 'ДЖЕНТЛЬМЕНЫ | Трейлер #2 | В кино с 13 февраля', 'site': 'youtube', 'type': 'TRAILER'}, {'url': 'https://www.youtube.com/embed/Fui5_1tTuac', 'name': 'ДЖЕНТЛЬМЕНЫ | Трейлер | В кино с 13 февраля', 'site': 'youtube', 'type': 'TRAILER'}, {'url': 'https://www.youtube.com/embed/KlXsguV9g0E', 'name': 'The Gentlemen | Official Trailer 2 [HD] | In Theaters January 24, 2020', 'site': 'youtube', 'type': 'TRAILER'}, {'url': 'https://www.youtube.com/embed/2B0RpUGss2c', 'name': 'The Gentlemen | Official Trailer [HD] | Coming Soon to Theaters', 'site': 'youtube', 'type': 'TRAILER'}]}, 'logo': {'url': 'https://image.openmoviedb.com/tmdb-images/original/38ecooyBqaNOdOT0RbRmtw2n0Bn.png', 'previewUrl': 'https://image.openmoviedb.com/tmdb-images/w500/38ecooyBqaNOdOT0RbRmtw2n0Bn.png'}, 'isTmdbChecked': True, 'watchability': {'items': [{'name': 'Kinopoisk HD', 'logo': {'url': 'https://yastatic.net/s3/kinopoisk-frontend/hd-www/release/apple-touch-icon-180x180.png'}, 'url': 'https://hd.kinopoisk.ru/?rt=47649cf90de74aca8da7eb5b17fc8a8a'}]}, 'userRatingsParsed': True}

Результат запроса также содержит в себе код ответа, который отправил сервер. В случае успеха возвращается код 200. Другие распространённые коды, которые сообщают об ошибках:

  • 404 — путь не найден,
  • 403 — нет доступа,
  • 400 — неверный формат запроса.

Выведем информацию о фильме. Видим, что доступны id фильма, актёрский состав, возрастное ограничение, год выпуска и другая информация.

In [ ]:
film_info
Out[ ]:
{'id': 1143242,
 'externalId': {'kpHD': '47649cf90de74aca8da7eb5b17fc8a8a',
  'imdb': 'tt8367814',
  'tmdb': 522627},
 'name': 'Джентльмены',
 'alternativeName': 'The Gentlemen',
 'enName': None,
 'names': [{'name': 'Toff Guys', 'language': 'GB', 'type': 'working title'},
  {'name': 'Los Caballeros de la mafia', 'language': 'ES', 'type': None},
  {'name': 'Busha', 'language': 'GB', 'type': 'working title'},
  {'name': 'Los caballeros: criminales con clase',
   'language': 'AR',
   'type': None},
  {'name': '紳士追殺令', 'language': 'TW', 'type': None},
  {'name': 'Джентльмени', 'language': 'UA', 'type': None},
  {'name': 'Εγκληματίες πρώτης τάξεως', 'language': 'GR', 'type': None},
  {'name': 'ジェントルメン:2020', 'language': 'JP', 'type': None},
  {'name': 'The Gentlemen', 'language': 'US', 'type': None},
  {'name': 'Beyefendiler', 'language': 'TR', 'type': None}],
 'type': 'movie',
 'typeNumber': 1,
 'year': 2019,
 'description': 'Один ушлый американец ещё со\xa0студенческих лет\xa0приторговывал наркотиками, а\xa0теперь придумал схему нелегального обогащения с\xa0использованием поместий обедневшей английской аристократии и\xa0очень неплохо на\xa0этом разбогател. Другой пронырливый журналист приходит к\xa0Рэю, правой руке американца, и\xa0предлагает тому купить киносценарий, в\xa0котором подробно описаны преступления его\xa0босса при\xa0участии других представителей лондонского криминального мира\xa0—\xa0партнёра-еврея, китайской диаспоры, чернокожих спортсменов и\xa0даже русского олигарха.',
 'shortDescription': 'Гангстеры всех мастей делят наркоферму. Закрученная экшен-комедия Гая Ричи с Мэттью Макконахи и Хью Грантом',
 'slogan': 'Criminal. Class',
 'status': None,
 'rating': {'kp': 8.626,
  'imdb': 7.8,
  'filmCritics': 6.6,
  'russianFilmCritics': 86.3636,
  'await': None},
 'votes': {'kp': 2145499,
  'imdb': 427468,
  'filmCritics': 278,
  'russianFilmCritics': 22,
  'await': 0},
 'movieLength': 113,
 'totalSeriesLength': None,
 'seriesLength': None,
 'ratingMpaa': 'r',
 'ageRating': 18,
 'poster': {'url': 'https://image.openmoviedb.com/kinopoisk-images/1599028/637271d5-61b4-4e46-ac83-6d07494c7645/orig',
  'previewUrl': 'https://image.openmoviedb.com/kinopoisk-images/1599028/637271d5-61b4-4e46-ac83-6d07494c7645/x1000'},
 'backdrop': {'url': 'https://image.openmoviedb.com/kinopoisk-ott-images/1648503/2a000001711b57abb795e9276957168f83e9/orig',
  'previewUrl': 'https://image.openmoviedb.com/kinopoisk-ott-images/1648503/2a000001711b57abb795e9276957168f83e9/x1000'},
 'genres': [{'name': 'криминал'}, {'name': 'комедия'}, {'name': 'боевик'}],
 'countries': [{'name': 'США'},
  {'name': 'Великобритания'},
  {'name': 'Франция'},
  {'name': 'Япония'},
  {'name': 'Чехия'}],
 'persons': [{'id': 797,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_797.jpg',
   'name': 'Мэттью Макконахи',
   'enName': 'Matthew McConaughey',
   'description': 'Michael Pearson',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 38702,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_38702.jpg',
   'name': 'Чарли Ханнэм',
   'enName': 'Charlie Hunnam',
   'description': 'Ray',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 4950097,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4950097.jpg',
   'name': 'Генри Голдинг',
   'enName': 'Henry Golding',
   'description': 'Dry Eye',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 8090,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_8090.jpg',
   'name': 'Хью Грант',
   'enName': 'Hugh Grant',
   'description': 'Fletcher',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 1067193,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1067193.jpg',
   'name': 'Мишель Докери',
   'enName': 'Michelle Dockery',
   'description': 'Rosalind Pearson',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 1146480,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1146480.jpg',
   'name': 'Джереми Стронг',
   'enName': 'Jeremy Strong',
   'description': 'Matthew',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 2444,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2444.jpg',
   'name': 'Эдди Марсан',
   'enName': 'Eddie Marsan',
   'description': 'Big Dave',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 2454111,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2454111.jpg',
   'name': 'Джейсон Вонг',
   'enName': 'Jason Wong',
   'description': 'Phuc',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 373,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_373.jpg',
   'name': 'Колин Фаррелл',
   'enName': 'Colin Farrell',
   'description': 'Coach',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 1006787,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1006787.jpg',
   'name': 'Лин Рене',
   'enName': 'Lyne Renée',
   'description': 'Jackie',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 25964,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_25964.jpg',
   'name': 'Том\xa0У',
   'enName': 'Tom Wu',
   'description': 'Lord George',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 3002651,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_3002651.jpg',
   'name': 'Чиди Аджуфо',
   'enName': 'Chidi Ajufo',
   'description': 'Bunny',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 5968202,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_5968202.jpg',
   'name': 'Саймон Р. Баркер',
   'enName': 'Simon R. Barker',
   'description': 'Frazier (в титрах: Simon Barker)',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 1850607,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1850607.jpg',
   'name': 'Джон Даглиш',
   'enName': 'John Dagleish',
   'description': 'Hammy',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 4717127,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4717127.jpg',
   'name': 'Джордан Лонг',
   'enName': 'Jordan Long',
   'description': 'Barman',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 3393000,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_3393000.jpg',
   'name': 'Лили Фрайзер',
   'enName': 'Lily Frazer',
   'description': 'Lisa the Mechanic',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 3300883,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_3300883.jpg',
   'name': 'Гершвин Эсташ мл.',
   'enName': 'Gershwyn Eustache Jnr',
   'description': 'Roger',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 13177,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_13177.jpg',
   'name': 'Сэмюэл Уэст',
   'enName': 'Samuel West',
   'description': 'Lord Pressfield',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 40828,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_40828.jpg',
   'name': 'Джеральдин Сомервилль',
   'enName': 'Geraldine Somerville',
   'description': 'Lady Pressfield',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 4679,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4679.jpg',
   'name': 'Элиот Самнер',
   'enName': 'Eliot Sumner',
   'description': 'Laura Pressfield',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 1308171,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1308171.jpg',
   'name': 'Франц Драмех',
   'enName': 'Franz Drameh',
   'description': 'Benny',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 4653501,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4653501.jpg',
   'name': 'Кристофер Эвангелу',
   'enName': 'Christopher Evangelou',
   'description': 'Primetime',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 23879,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_23879.jpg',
   'name': 'Джим Уоррен',
   'enName': 'James Warren',
   'description': 'Jim',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 2817170,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2817170.jpg',
   'name': 'Шон Сагар',
   'enName': 'Sean Sagar',
   'description': 'Mal',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 5931690,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_5931690.jpg',
   'name': 'Багзи Мэлоун',
   'enName': 'Bugzy Malone',
   'description': 'Ernie',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 2317698,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2317698.jpg',
   'name': 'Том Рис Харрис',
   'enName': 'Tom Rhys Harries',
   'description': 'Power Noel',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 5325577,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_5325577.jpg',
   'name': 'Дэнни Гриффин',
   'enName': 'Danny Griffin',
   'description': 'Aslan',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 1575352,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1575352.jpg',
   'name': 'Макс Беннетт',
   'enName': 'Max Bennett',
   'description': 'Brown',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 2497432,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2497432.jpg',
   'name': 'Евгения Кузьмина',
   'enName': 'Eugenia Kuzmina',
   'description': 'Misha',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 3034185,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_3034185.jpg',
   'name': 'Брюс Чон',
   'enName': 'Bruce Chong',
   'description': 'Ngoc',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 687946,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_687946.jpg',
   'name': 'Эшли Макгуайр',
   'enName': 'Ashley McGuire',
   'description': 'Maureen',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 34921,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_34921.jpg',
   'name': 'Джордж Эспри',
   'enName': 'George Asprey',
   'description': 'Lord Snowball',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 5336873,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_5336873.jpg',
   'name': None,
   'enName': 'Shanu Hazzan',
   'description': 'Trigger',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 4787983,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4787983.jpg',
   'name': 'Джек Джонс',
   'enName': 'Jack Jones',
   'description': 'Nick',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 2442849,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2442849.jpg',
   'name': 'Сэмми Уильямс',
   'enName': 'Sammy Williams',
   'description': 'Kid',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 4369903,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4369903.jpg',
   'name': None,
   'enName': 'Ryan Dean',
   'description': 'Murka',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 588830,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_588830.jpg',
   'name': 'Гай Лист',
   'enName': 'Guy List',
   'description': 'Security Guard Guy',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 41834,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_41834.jpg',
   'name': 'Марвин Кэмпбелл',
   'enName': 'Marvin Campbell',
   'description': 'Security Guard Marv',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 4079056,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4079056.jpg',
   'name': None,
   'enName': 'Will Mackay',
   'description': 'Security Guard Frank (в титрах: Will MacKay)',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 4458039,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4458039.jpg',
   'name': None,
   'enName': 'Matt Sherren',
   'description': 'Security Guard John',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 557505,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_557505.jpg',
   'name': 'Джейсон Хунджан',
   'enName': 'Jason Hunjan',
   'description': 'Security Guard Tezza',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 547521,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_547521.jpg',
   'name': 'Морис Ли',
   'enName': 'Maurice Lee',
   'description': 'Security Guard Mo',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 2329000,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2329000.jpg',
   'name': 'Расселл Балог',
   'enName': 'Russell Balogh',
   'description': 'Russ',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 20327,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_20327.jpg',
   'name': 'Того Игава',
   'enName': 'Togo Igawa',
   'description': 'Wang Yong',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 5931691,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_5931691.jpg',
   'name': None,
   'enName': "Jack O'Connor",
   'description': 'Youth 1',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 2748057,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2748057.jpg',
   'name': 'МакКелл Дэвид',
   'enName': 'McKell David',
   'description': 'Youth 2',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 5931692,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_5931692.jpg',
   'name': None,
   'enName': 'Isaiah Zev',
   'description': 'Youth 3',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 41145,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_41145.jpg',
   'name': 'Дэвид Гаррик',
   'enName': 'David Garrick',
   'description': 'Dave',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 4329998,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4329998.jpg',
   'name': None,
   'enName': 'Tom Lambert',
   'description': 'Young Mickey',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 1902458,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1902458.jpg',
   'name': 'Энди Чунг',
   'enName': 'Andy Cheung',
   'description': 'Chinese Waiter',
   'profession': 'актеры',
   'enProfession': 'actor'},
  {'id': 3604626,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_3604626.jpg',
   'name': 'Кристофер Бенстед',
   'enName': 'Christopher Benstead',
   'description': None,
   'profession': 'композиторы',
   'enProfession': 'composer'},
  {'id': 1996197,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1996197.jpg',
   'name': 'Джемма Джексон',
   'enName': 'Gemma Jackson',
   'description': None,
   'profession': 'художники',
   'enProfession': 'designer'},
  {'id': 5204254,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_5204254.jpg',
   'name': 'Рэйчел Олтон',
   'enName': 'Rachel Aulton',
   'description': None,
   'profession': 'художники',
   'enProfession': 'designer'},
  {'id': 3960382,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_3960382.jpg',
   'name': 'Оливер Кэрролл',
   'enName': 'Oliver Carroll',
   'description': None,
   'profession': 'художники',
   'enProfession': 'designer'},
  {'id': 1997136,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1997136.jpg',
   'name': 'Фиона Гэвин',
   'enName': 'Fiona Gavin',
   'description': None,
   'profession': 'художники',
   'enProfession': 'designer'},
  {'id': 1986750,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1986750.jpg',
   'name': 'Майкл Уилкинсон',
   'enName': 'Michael Wilkinson',
   'description': None,
   'profession': 'художники',
   'enProfession': 'designer'},
  {'id': 2174208,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2174208.jpg',
   'name': 'Нил Флойд',
   'enName': 'Neil Floyd',
   'description': None,
   'profession': 'художники',
   'enProfession': 'designer'},
  {'id': 1996199,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1996199.jpg',
   'name': 'Сара Уиттл',
   'enName': 'Sarah Whittle',
   'description': None,
   'profession': 'художники',
   'enProfession': 'designer'},
  {'id': 45159,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_45159.jpg',
   'name': 'Гай Ричи',
   'enName': 'Guy Ritchie',
   'description': None,
   'profession': 'режиссеры',
   'enProfession': 'director'},
  {'id': 1987046,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1987046.jpg',
   'name': 'Джеймс Херберт',
   'enName': 'James Herbert',
   'description': None,
   'profession': 'монтажеры',
   'enProfession': 'editor'},
  {'id': 1986047,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1986047.jpg',
   'name': 'Пол Мачлисс',
   'enName': 'Paul Machliss',
   'description': None,
   'profession': 'монтажеры',
   'enProfession': 'editor'},
  {'id': 643927,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_643927.jpg',
   'name': 'Алан Стюарт',
   'enName': 'Alan Stewart',
   'description': None,
   'profession': 'операторы',
   'enProfession': 'operator'},
  {'id': 6032456,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_6032456.jpg',
   'name': 'Мэттью Андерсон',
   'enName': 'Matthew Anderson',
   'description': None,
   'profession': 'продюсеры',
   'enProfession': 'producer'},
  {'id': 4984694,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4984694.jpg',
   'name': 'Айван Эткинсон',
   'enName': 'Ivan Atkinson',
   'description': None,
   'profession': 'продюсеры',
   'enProfession': 'producer'},
  {'id': 51810,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_51810.jpg',
   'name': 'Билл Блок',
   'enName': 'Bill Block',
   'description': None,
   'profession': 'продюсеры',
   'enProfession': 'producer'},
  {'id': 4360695,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4360695.jpg',
   'name': 'Адам Фогельсон',
   'enName': 'Adam Fogelson',
   'description': None,
   'profession': 'продюсеры',
   'enProfession': 'producer'},
  {'id': 1078858,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1078858.jpg',
   'name': 'Василий Дахненко',
   'enName': None,
   'description': None,
   'profession': 'актеры дубляжа',
   'enProfession': 'voice_actor'},
  {'id': 2340955,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2340955.jpg',
   'name': 'Сергей Смирнов',
   'enName': None,
   'description': None,
   'profession': 'актеры дубляжа',
   'enProfession': 'voice_actor'},
  {'id': 1646082,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1646082.jpg',
   'name': 'Филипп Бледный',
   'enName': None,
   'description': None,
   'profession': 'актеры дубляжа',
   'enProfession': 'voice_actor'},
  {'id': 304577,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_304577.jpg',
   'name': 'Алексей Иващенко',
   'enName': None,
   'description': None,
   'profession': 'актеры дубляжа',
   'enProfession': 'voice_actor'},
  {'id': 1641154,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1641154.jpg',
   'name': 'Татьяна Шитова',
   'enName': None,
   'description': None,
   'profession': 'актеры дубляжа',
   'enProfession': 'voice_actor'},
  {'id': 739980,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_739980.jpg',
   'name': 'Александр Вартанов',
   'enName': None,
   'description': None,
   'profession': 'актеры дубляжа',
   'enProfession': 'voice_actor'},
  {'id': 1714171,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1714171.jpg',
   'name': 'Алексей Багдасаров',
   'enName': None,
   'description': None,
   'profession': 'актеры дубляжа',
   'enProfession': 'voice_actor'},
  {'id': 1634102,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1634102.jpg',
   'name': 'Илья Барабанов',
   'enName': None,
   'description': None,
   'profession': 'актеры дубляжа',
   'enProfession': 'voice_actor'},
  {'id': 1896171,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1896171.jpg',
   'name': 'Наталья Сапецкая',
   'enName': None,
   'description': None,
   'profession': 'актеры дубляжа',
   'enProfession': 'voice_actor'},
  {'id': 1649884,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1649884.jpg',
   'name': 'Андрей Казанцев',
   'enName': None,
   'description': None,
   'profession': 'актеры дубляжа',
   'enProfession': 'voice_actor'},
  {'id': 2441191,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2441191.jpg',
   'name': 'Сергей Шайдаков',
   'enName': None,
   'description': None,
   'profession': 'актеры дубляжа',
   'enProfession': 'voice_actor'},
  {'id': 2363725,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_2363725.jpg',
   'name': 'Артур Бесчастный',
   'enName': None,
   'description': None,
   'profession': 'актеры дубляжа',
   'enProfession': 'voice_actor'},
  {'id': 1324756,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1324756.jpg',
   'name': 'Григорий Калинин',
   'enName': None,
   'description': None,
   'profession': 'актеры дубляжа',
   'enProfession': 'voice_actor'},
  {'id': 1925461,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1925461.jpg',
   'name': 'Алексей Маслодудов',
   'enName': None,
   'description': None,
   'profession': 'актеры дубляжа',
   'enProfession': 'voice_actor'},
  {'id': 1948766,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1948766.jpg',
   'name': 'Денис Некрасов',
   'enName': None,
   'description': None,
   'profession': 'актеры дубляжа',
   'enProfession': 'voice_actor'},
  {'id': 45159,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_45159.jpg',
   'name': 'Гай Ричи',
   'enName': 'Guy Ritchie',
   'description': None,
   'profession': 'сценаристы',
   'enProfession': 'writer'},
  {'id': 4984694,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_4984694.jpg',
   'name': 'Айван Эткинсон',
   'enName': 'Ivan Atkinson',
   'description': None,
   'profession': 'сценаристы',
   'enProfession': 'writer'},
  {'id': 1910756,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1910756.jpg',
   'name': 'Марн Дэвис',
   'enName': 'Marn Davies',
   'description': None,
   'profession': 'сценаристы',
   'enProfession': 'writer'},
  {'id': 1266524,
   'photo': 'https://image.openmoviedb.com/kinopoisk-st-images//actor_iphone/iphone360_1266524.jpg',
   'name': 'Лорен Бонд',
   'enName': 'Lauren Bond',
   'description': None,
   'profession': 'сценаристы',
   'enProfession': 'writer'}],
 'budget': {'currency': '$', 'value': 22000000},
 'premiere': {'country': None,
  'cinema': None,
  'bluray': None,
  'dvd': None,
  'digital': '2020-03-31T00:00:00.000Z',
  'russia': '2020-02-13T00:00:00.000Z',
  'world': '2019-12-03T00:00:00.000Z'},
 'top10': None,
 'top250': 7,
 'isSeries': False,
 'ticketsOnSale': False,
 'lists': ['top250',
  'top500',
  'popular-films',
  'hearing_impairment',
  'guy_ritchie',
  'top20of2023',
  'hd-blockbusters',
  'hd-revise',
  'ozvucheno_kubik_v_kube',
  'box-russia-dollar',
  'top-250-2020',
  'hd'],
 'networks': None,
 'createdAt': '2024-04-13T01:35:34.645Z',
 'updatedAt': '2025-05-08T01:00:18.460Z',
 'fees': {'russia': {'value': 18003343, 'currency': '$'},
  'usa': {'value': 36471795, 'currency': '$'},
  'world': {'value': 115171795, 'currency': '$'}},
 'videos': {'trailers': [{'url': 'https://www.youtube.com/embed/e-aiHVdRlJg',
    'name': 'ДЖЕНТЛЬМЕНЫ | Трейлер #2 | В кино с 13 февраля',
    'site': 'youtube',
    'type': 'TRAILER'},
   {'url': 'https://www.youtube.com/embed/Fui5_1tTuac',
    'name': 'ДЖЕНТЛЬМЕНЫ | Трейлер | В кино с 13 февраля',
    'site': 'youtube',
    'type': 'TRAILER'},
   {'url': 'https://www.youtube.com/embed/KlXsguV9g0E',
    'name': 'The Gentlemen | Official Trailer 2 [HD] | In Theaters January 24, 2020',
    'site': 'youtube',
    'type': 'TRAILER'},
   {'url': 'https://www.youtube.com/embed/2B0RpUGss2c',
    'name': 'The Gentlemen | Official Trailer [HD] | Coming Soon to Theaters',
    'site': 'youtube',
    'type': 'TRAILER'}]},
 'logo': {'url': 'https://image.openmoviedb.com/tmdb-images/original/38ecooyBqaNOdOT0RbRmtw2n0Bn.png',
  'previewUrl': 'https://image.openmoviedb.com/tmdb-images/w500/38ecooyBqaNOdOT0RbRmtw2n0Bn.png'},
 'isTmdbChecked': True,
 'watchability': {'items': [{'name': 'Kinopoisk HD',
    'logo': {'url': 'https://yastatic.net/s3/kinopoisk-frontend/hd-www/release/apple-touch-icon-180x180.png'},
    'url': 'https://hd.kinopoisk.ru/?rt=47649cf90de74aca8da7eb5b17fc8a8a'}]},
 'userRatingsParsed': True}

Давайте теперь соберём информацию о наборе фильмов в pandas.DataFrame. Количество фильмов, которое можно скачать за день, ограничено на бесплатном тарифе 50 запросами, поэтому скачаем сколько получится. Скачивание набора фильмов производится постранично. Одна страница содержит 10 фильмов, её можно скачать одним запросом. Его формат, а также формат ответа, описан в документации.

In [ ]:
# Базовый URL API
url = "https://api.kinopoisk.dev/v1.4/movie?page={page_num}"

# Заголовки с токеном
headers = {
    "X-API-KEY": token
}

# Функция для скачивания данных о фильмах по страницам
def download_movies(page_num):
    response = requests.get(url.format(page_num=page_num), headers=headers)
    if response.status_code == 200:
        return response.json()  # Возвращаем JSON с данными
    else:
        print(f"Ошибка: {response.status_code}")
        return {}

all_movies = []
for page in range(1, 21):
    movies_data = download_movies(page)
    if movies_data:
        print(f"Ответ на странице {page}:")
        print(json.dumps(movies_data, indent=4))
        # Проверим, что в ответе есть ключ с фильмами
        if 'docs' in movies_data:
            all_movies.extend(movies_data['docs'])  # Фильмы находятся в 'docs'
        else:
            print(f"Ошибка: Нет ключа 'docs' на странице {page}")

df_movies = pd.DataFrame(all_movies)
df_movies.to_csv("films_info.csv", index=False)
print("Данные успешно собраны и сохранены в файл.")
print(df_movies.head())
Ответ на странице 1:
{
    "docs": [
        {
            "id": 6532244,
            "name": "\u041a\u0440\u0443\u0442\u043e\u0439 \u043a\u043e\u043d\u0446\u0435\u0440\u0442",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 4,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 74,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u043d\u0446\u0435\u0440\u0442"
                },
                {
                    "name": "\u043c\u0443\u0437\u044b\u043a\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7874438,
            "name": null,
            "alternativeName": "Stand-Up Stand-Up",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 1992,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 7.5,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 21,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 30,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 1992,
                    "end": 1995
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7875986,
            "name": null,
            "alternativeName": "Fantastic Max",
            "type": "animated-series",
            "typeNumber": 5,
            "year": 1988,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 6.9,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 318,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 30,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043c\u0443\u043b\u044c\u0442\u0444\u0438\u043b\u044c\u043c"
                },
                {
                    "name": "\u0441\u0435\u043c\u0435\u0439\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                },
                {
                    "name": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
                },
                {
                    "name": "\u042f\u043f\u043e\u043d\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 1988,
                    "end": 1991
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7874440,
            "name": null,
            "alternativeName": "Seriously Amazing Objects",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2013,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 8,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 11,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0431\u043e\u0435\u0432\u0438\u043a"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2013,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7873532,
            "name": null,
            "alternativeName": "Kono Sekai wa Fukanzen Sugiru",
            "type": "animated-series",
            "typeNumber": 5,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 6.1,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 316,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043c\u0443\u043b\u044c\u0442\u0444\u0438\u043b\u044c\u043c"
                },
                {
                    "name": "\u0444\u044d\u043d\u0442\u0435\u0437\u0438"
                },
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                },
                {
                    "name": "\u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u042f\u043f\u043e\u043d\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2024,
                    "end": 2024
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 212636,
            "name": null,
            "alternativeName": "Gahanu Lamai",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 1978,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 8,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 37,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 100,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "countries": [
                {
                    "name": "\u0428\u0440\u0438-\u041b\u0430\u043d\u043a\u0430"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7877574,
            "name": "\u0410\u0431\u043e\u043d\u0435\u043c\u0435\u043d\u0442 \u043d\u0430 \u0440\u0430\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435. \u041f\u0438\u0441\u044c\u043c\u0430 \u0441 \u0442\u043e\u0433\u043e \u0441\u0432\u0435\u0442\u0430",
            "alternativeName": null,
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": "\u041f\u0440\u043e\u0448\u043b\u043e\u0435 \u043d\u0430\u0441\u0442\u0438\u0433\u0430\u0435\u0442 \u0422\u0430\u043b\u0438\u0447\u0430. \u041e\u0442\u0435\u0446 \u0435\u0433\u043e\u00a0\u0434\u0440\u0443\u0433\u0430 \u0412\u0438\u043a\u0442\u043e\u0440\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0438\u0441\u0447\u0435\u0437 \u043f\u043e\u0434\u00a0\u043d\u043e\u0432\u044b\u043c \u0438\u043c\u0435\u043d\u0435\u043c, \u043f\u0440\u0438\u0445\u043e\u0434\u0438\u0442 \u043a\u00a0\u043d\u0435\u043c\u0443 \u0441\u00a0\u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c\u0438 \u043e\u00a0\u0441\u044b\u043d\u0435. \u041f\u044b\u0442\u0430\u044f\u0441\u044c \u0437\u0430\u0449\u0438\u0442\u0438\u0442\u044c \u0413\u043b\u0438\u043a\u0435\u0440\u0438\u044e, \u0422\u0430\u043b\u0438\u0447 \u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u0432\u0442\u044f\u043d\u0443\u0442\u044b\u043c \u0432\u00a0\u0440\u0430\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435 \u0443\u0431\u0438\u0439\u0441\u0442\u0432\u0430 \u0431\u044b\u0432\u0448\u0435\u0433\u043e \u0432\u043e\u043b\u043e\u043d\u0442\u0451\u0440\u0430.",
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 45,
            "ratingMpaa": null,
            "ageRating": 12,
            "genres": [
                {
                    "name": "\u0434\u0435\u0442\u0435\u043a\u0442\u0438\u0432"
                },
                {
                    "name": "\u043a\u0440\u0438\u043c\u0438\u043d\u0430\u043b"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": 2025
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7877274,
            "name": null,
            "alternativeName": "La course en t\u00eate",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 1974,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.5,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 53,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 110,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
                },
                {
                    "name": "\u0411\u0435\u043b\u044c\u0433\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 5089357,
            "name": "\u0418\u0441\u0442\u043e\u0440\u0438\u0438 \u042f\u043d\u0434\u0435\u043a\u0441\u0430",
            "alternativeName": null,
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2021,
            "description": "\u0418\u0441\u0442\u043e\u0440\u0438\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u0440\u0430\u0441\u0441\u043a\u0430\u0437\u0430\u043d\u043d\u0430\u044f \u043b\u044e\u0434\u044c\u043c\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0435\u0435\u00a0\u0441\u043e\u0437\u0434\u0430\u0432\u0430\u043b\u0438 \u0438\u00a0\u0441\u043e\u0437\u0434\u0430\u044e\u0442. \u0412\u00a0\u043a\u0430\u0436\u0434\u043e\u0439 \u0441\u0435\u0440\u0438\u0438\u00a0\u2014\u00a0\u043d\u043e\u0432\u044b\u0439 \u0433\u0435\u0440\u043e\u0439 \u0438\u00a0\u043d\u043e\u0432\u044b\u0439 \u0440\u0430\u0441\u0441\u043a\u0430\u0437. \u041b\u044e\u0434\u0438 \u0438\u0437\u00a0\u0434\u0435\u0432\u044f\u043d\u043e\u0441\u0442\u044b\u0445, \u043d\u0443\u043b\u0435\u0432\u044b\u0445, \u0434\u0435\u0441\u044f\u0442\u044b\u0445 \u0438\u00a0\u0434\u0432\u0430\u0434\u0446\u0430\u0442\u044b\u0445, \u0432\u044b\u0440\u043e\u0441\u0448\u0438\u0435 \u0432\u00a0\u0440\u0430\u0437\u043d\u044b\u0445 \u0433\u043e\u0440\u043e\u0434\u0430\u0445, \u043f\u043e\u043b\u0443\u0447\u0438\u0432\u0448\u0438\u0435 \u0440\u0430\u0437\u043d\u043e\u0435 \u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0435, \u0433\u043e\u0432\u043e\u0440\u044f\u0449\u0438\u0435 \u043d\u0430\u00a0\u0440\u0430\u0437\u043d\u044b\u0445 \u044f\u0437\u044b\u043a\u0430\u0445. \u0412\u0441\u0435\u00a0\u043e\u043d\u0438 \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0435\u043d\u044b \u0442\u0435\u043c, \u0447\u0442\u043e\u00a0\u0447\u0430\u0441\u0442\u044c \u0436\u0438\u0437\u043d\u0438 \u043f\u043e\u0441\u0432\u044f\u0442\u0438\u043b\u0438 \u042f\u043d\u0434\u0435\u043a\u0441\u0443\u00a0\u2014\u00a0\u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u0432\u00a0\u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u043f\u0440\u043e\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u043e \u0437\u0430\u00a0\u044d\u0442\u0438 \u0433\u043e\u0434\u044b \u0434\u0435\u0441\u044f\u0442\u043a\u0438 \u0442\u044b\u0441\u044f\u0447 \u0447\u0435\u043b\u043e\u0432\u0435\u043a; \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0441\u043e\u0437\u0434\u0430\u0435\u0442 \u0441\u0435\u0440\u0432\u0438\u0441\u044b \u0434\u043b\u044f\u00a0\u043c\u0438\u043b\u043b\u0438\u043e\u043d\u043e\u0432 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043f\u043e\u00a0\u0432\u0441\u0435\u043c\u0443 \u043c\u0438\u0440\u0443.",
            "shortDescription": "\u041a\u0442\u043e \u0441\u0442\u043e\u0438\u0442 \u0437\u0430 \u0441\u0430\u043c\u044b\u043c \u043f\u043e\u043f\u0443\u043b\u044f\u0440\u043d\u044b\u043c \u043f\u043e\u0438\u0441\u043a\u043e\u0432\u0438\u043a\u043e\u043c \u0432 \u0420\u0443\u043d\u0435\u0442\u0435? \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0430\u044f \u043b\u0435\u0442\u043e\u043f\u0438\u0441\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0432 \u0438\u0441\u0442\u043e\u0440\u0438\u044f\u0445 \u0435\u0435 \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u043a\u043e\u0432",
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 9,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 18,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10768063/8cf3b03a-cb9a-4589-866d-1b30f1d3cf56/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10768063/8cf3b03a-cb9a-4589-866d-1b30f1d3cf56/x1000"
            },
            "backdrop": {
                "url": "https://image.openmoviedb.com/kinopoisk-ott-images/1648503/2a00000196ab6970ea33ab20e0f26d7f3110/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-ott-images/1648503/2a00000196ab6970ea33ab20e0f26d7f3110/x1000"
            },
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2021,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7877277,
            "name": null,
            "alternativeName": "Making It",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2018,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 8,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 1709,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 60,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u0422\u0412"
                },
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2018,
                    "end": 2021
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 1,
    "pages": 107884
}
Ответ на странице 2:
{
    "docs": [
        {
            "id": 7874448,
            "name": null,
            "alternativeName": "Simply Ming",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2003,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.9,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 143,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2003,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7874447,
            "name": null,
            "alternativeName": "A Moveable Feast with Fine Cooking",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2013,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 5.5,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 28,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u0422\u0412"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2013,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7874446,
            "name": null,
            "alternativeName": "Rough Cut with Fine Woodworking",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2018,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.4,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 9,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u0422\u0412"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2018,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7877586,
            "name": "\u041b\u0438\u0447\u043d\u044b\u0439 \u0442\u0440\u043e\u043b\u043b\u044c \u0442\u0440\u0435\u043d\u0435\u0440\u0430 \u041c\u044d\u043d\u0430",
            "alternativeName": "Maenggamdeokui akpeulleo",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": "\u0411\u044b\u0432\u0448\u0430\u044f \u0437\u0432\u0435\u0437\u0434\u0430 \u0431\u0430\u0441\u043a\u0435\u0442\u0431\u043e\u043b\u0430, \u0430\u00a0\u0442\u0435\u043f\u0435\u0440\u044c \u0442\u0440\u0435\u043d\u0435\u0440 \u043f\u043b\u043e\u0445\u043e \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u044e\u0449\u0435\u0439 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043d\u0430\u00a0\u0433\u0440\u0430\u043d\u0438 \u043f\u043e\u0442\u0435\u0440\u0438 \u0440\u0430\u0431\u043e\u0442\u044b, \u0432\u044b\u043d\u0443\u0436\u0434\u0435\u043d\u043d\u043e \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u044f\u0435\u0442\u0441\u044f \u0441\u043e\u00a0\u0441\u0432\u043e\u0438\u043c \u0445\u0435\u0439\u0442\u0435\u0440\u043e\u043c\u00a0\u2014\u00a0\u0441\u0442\u0430\u0440\u0448\u0435\u043a\u043b\u0430\u0441\u0441\u043d\u0438\u043a\u043e\u043c, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043d\u0435\u043f\u043b\u043e\u0445\u043e \u0440\u0430\u0437\u0431\u0438\u0440\u0430\u0435\u0442\u0441\u044f \u0432\u00a0\u0438\u0433\u0440\u0435 \u0438\u00a0\u0433\u043e\u0434\u0430\u043c\u0438 \u043f\u043e\u043b\u0438\u0432\u0430\u043b \u0442\u0440\u0435\u043d\u0435\u0440\u0430 \u041c\u044d\u043d\u0430 \u0433\u0440\u044f\u0437\u044c\u044e \u0432\u00a0\u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0435.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10768063/ca908fec-7cd6-4c69-ac0a-c971e37b66ee/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10768063/ca908fec-7cd6-4c69-ac0a-c971e37b66ee/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                },
                {
                    "name": "\u0441\u043f\u043e\u0440\u0442"
                }
            ],
            "countries": [
                {
                    "name": "\u041a\u043e\u0440\u0435\u044f \u042e\u0436\u043d\u0430\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7874445,
            "name": null,
            "alternativeName": "The Life of Loi: Mediterranean Secrets",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2022,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 8.2,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 9,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2022,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7877580,
            "name": "\u0410\u0431\u043e\u043d\u0435\u043c\u0435\u043d\u0442 \u043d\u0430 \u0440\u0430\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435. \u0417\u0430\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0447\u0442\u0435\u043d\u0438\u0435",
            "alternativeName": null,
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": "\u0412 \u043c\u0430\u043b\u0435\u043d\u044c\u043a\u043e\u043c \u0433\u043e\u0440\u043e\u0434\u043a\u0435 \u0412\u0441\u0435\u0441\u043b\u0430\u0432\u0441\u043a\u0435 \u0422\u0430\u043b\u0438\u0447 \u0440\u0430\u0441\u0448\u0438\u0444\u0440\u043e\u0432\u044b\u0432\u0430\u0435\u0442 \u0437\u0430\u043f\u0438\u0441\u043a\u0443 \u0438\u0437\u00a0\u0431\u0443\u043a\u043a\u0440\u043e\u0441\u0441\u0438\u043d\u0433\u0430, \u0443\u043a\u0430\u0437\u044b\u0432\u0430\u044e\u0449\u0443\u044e \u043d\u0430\u00a0\u043c\u0430\u043d\u044c\u044f\u043a\u0430. \u0412\u043e\u00a0\u0432\u0440\u0435\u043c\u044f \u043e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0433\u043e \u0440\u0430\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u044f \u0413\u043b\u0438\u043a\u0435\u0440\u0438\u044f \u043d\u0430\u0445\u043e\u0434\u0438\u0442 \u0442\u0440\u0443\u043f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0446\u044b \u0430\u0433\u0440\u043e\u0444\u0438\u0440\u043c\u044b \u0438\u00a0\u0432\u044b\u044f\u0441\u043d\u044f\u0435\u0442 \u0440\u044f\u0434\u00a0\u043e\u0431\u0441\u0442\u043e\u044f\u0442\u0435\u043b\u044c\u0441\u0442\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0443\u043a\u0430\u0437\u044b\u0432\u0430\u044e\u0442 \u043d\u0430\u00a0\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0435 \u0443\u0431\u0438\u0439\u0441\u0442\u0432\u043e \u0438\u0437\u00a0\u0440\u0435\u0432\u043d\u043e\u0441\u0442\u0438.",
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 45,
            "ratingMpaa": null,
            "ageRating": 12,
            "genres": [
                {
                    "name": "\u0434\u0435\u0442\u0435\u043a\u0442\u0438\u0432"
                },
                {
                    "name": "\u043a\u0440\u0438\u043c\u0438\u043d\u0430\u043b"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": 2025
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7875976,
            "name": null,
            "alternativeName": "Hal & Harper",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.6,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 158,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 80,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7878460,
            "name": "\u041a\u043e\u043f-\u0437\u0432\u0435\u0437\u0434\u0430",
            "alternativeName": null,
            "type": "tv-series",
            "typeNumber": 2,
            "year": null,
            "description": "\u0425\u0430\u0440\u0438\u0437\u043c\u0430\u0442\u0438\u0447\u043d\u044b\u0439, \u044f\u0437\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439, \u0441\u00a0\u0444\u043b\u044f\u0436\u043a\u043e\u0439 \u0432\u00a0\u043a\u0430\u0440\u043c\u0430\u043d\u0435 \u0438\u00a0\u0434\u0435\u043c\u043e\u043d\u0430\u043c\u0438 \u0432\u00a0\u0433\u043e\u043b\u043e\u0432\u0435, \u041a\u0438\u0442\u00a0\u2014\u00a0\u043e\u043f\u044b\u0442\u043d\u044b\u0439 \u043e\u043f\u0435\u0440, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0437\u043d\u0430\u0435\u0442 \u0443\u043b\u0438\u0446\u0443 \u043b\u0443\u0447\u0448\u0435 \u043b\u044e\u0431\u043e\u0433\u043e GPS. \u0415\u0433\u043e\u00a0\u043d\u0430\u043f\u0430\u0440\u043d\u0438\u0446\u0430\u00a0\u2014\u00a0\u043f\u0440\u0438\u043d\u0446\u0438\u043f\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0438\u00a0\u043d\u0435\u043c\u043d\u043e\u0433\u043e \u043d\u0430\u0438\u0432\u043d\u0430\u044f \u043d\u043e\u0432\u0435\u043d\u044c\u043a\u0430\u044f, \u0435\u0449\u0451 \u043d\u0435\u00a0\u0443\u0441\u043f\u0435\u0432\u0448\u0430\u044f \u0440\u0430\u0437\u043e\u0447\u0430\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0432\u00a0\u0441\u0438\u0441\u0442\u0435\u043c\u0435. \u0412\u043c\u0435\u0441\u0442\u0435 \u043e\u043d\u0438\u00a0\u2014\u00a0\u043a\u0430\u043a \u0440\u043e\u043a-\u0433\u0440\u0443\u043f\u043f\u0430 \u0438\u0437\u00a0\u0434\u0432\u0443\u0445 \u0447\u0435\u043b\u043e\u0432\u0435\u043a, \u0432\u044b\u043d\u0443\u0436\u0434\u0435\u043d\u043d\u0430\u044f \u0438\u0433\u0440\u0430\u0442\u044c \u043d\u0430\u00a0\u043e\u0434\u043d\u043e\u0439 \u0432\u043e\u043b\u043d\u0435. \u041a\u0430\u0436\u0434\u0430\u044f \u0441\u0435\u0440\u0438\u044f\u00a0\u2014\u00a0\u043d\u043e\u0432\u043e\u0435 \u0440\u0430\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435, \u043d\u043e\u0432\u044b\u0439 \u0432\u044b\u0437\u043e\u0432 \u0438\u00a0\u043d\u043e\u0432\u044b\u0439 \u0441\u043f\u043e\u0441\u043e\u0431 \u043d\u0430\u0440\u0430\u0441\u0442\u0438\u0442\u044c \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044e. \u041d\u043e\u00a0\u0437\u0430 \u043b\u0430\u0439\u043a\u0430\u043c\u0438, \u0445\u0430\u0439\u043f\u043e\u043c \u0438\u00a0\u0432\u044b\u043c\u043f\u0435\u043b\u0430\u043c\u0438\u00a0\u2014\u00a0\u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0430\u044f \u0431\u043e\u043b\u044c \u0438\u00a0\u043f\u043e\u043f\u044b\u0442\u043a\u0430 \u0445\u043e\u0442\u044c \u043a\u0430\u043a-\u0442\u043e \u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c\u0441\u044f \u0441\u00a0\u043f\u0440\u043e\u0448\u043b\u044b\u043c.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": null,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7873470,
            "name": null,
            "alternativeName": "Two Strangers Trying Not to Kill Each Other",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.3,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 92,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 100,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
                },
                {
                    "name": "\u0414\u0430\u043d\u0438\u044f"
                },
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7877572,
            "name": null,
            "alternativeName": "Tom Arnold: Past & Present Imperfectly",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2018,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 5.2,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 30,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 58,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 2,
    "pages": 107884
}
Ответ на странице 3:
{
    "docs": [
        {
            "id": 7876676,
            "name": "\u0412 \u043f\u0440\u044f\u0442\u043a\u0438 \u0441 \u043f\u043e\u043b\u044f\u0440\u043d\u044b\u043c\u0438 \u043a\u0438\u0442\u0430\u043c\u0438",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 25,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 0,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/9784475/6ffbd5ac-48ca-4d0c-883b-3e62d3de1d96/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/9784475/6ffbd5ac-48ca-4d0c-883b-3e62d3de1d96/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7876673,
            "name": "\u0425\u0440\u0443\u043f\u043a\u043e\u0435",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 45,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 6,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10900341/ac6d61b7-a4ef-4506-bee1-28d863dc89a1/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10900341/ac6d61b7-a4ef-4506-bee1-28d863dc89a1/x1000"
            },
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7874441,
            "name": null,
            "alternativeName": "25 Years with Lidia: A Culinary Jubilee",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2023,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 9.2,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 9,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7876986,
            "name": "\u0418\u0437 \u043a\u0435\u0434\u0440\u0430 \u0432\u044b\u0441\u0435\u0447\u0435\u043d\u043d\u044b\u0439",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 23,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 12,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10671298/24e745f7-300e-4ce4-b109-cc6e671aaa39/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10671298/24e745f7-300e-4ce4-b109-cc6e671aaa39/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7874439,
            "name": null,
            "alternativeName": "Incredible Flying Jet Packs",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2015,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.3,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 9,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 42,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7876985,
            "name": "\u0417\u0430\u0448\u0438\u0432\u0435\u0440\u0441\u043a. \u041c\u0435\u0436\u0434\u0443 \u043d\u0435\u0431\u043e\u043c \u0438 \u0437\u0435\u043c\u043b\u0435\u0439",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": "\u041e \u0417\u0430\u0448\u0438\u0432\u0435\u0440\u0441\u043a\u043e\u0439 \u0446\u0435\u0440\u043a\u0432\u0438\u00a0\u2014\u00a0\u043e\u0431\u0440\u0430\u0437\u0446\u0435 \u0440\u0443\u0441\u0441\u043a\u043e\u0433\u043e \u0434\u0435\u0440\u0435\u0432\u044f\u043d\u043d\u043e\u0433\u043e \u0437\u043e\u0434\u0447\u0435\u0441\u0442\u0432\u0430 XVII \u0432\u0435\u043a\u0430.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 30,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 12,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/9784475/c8a2e02a-396f-4b2a-97c2-f34f770db163/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/9784475/c8a2e02a-396f-4b2a-97c2-f34f770db163/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7876670,
            "name": "\u041f\u0440\u0430\u0432\u043e \u0436\u0435\u043d\u0449\u0438\u043d \u043d\u0430 \u043c\u043e\u0440\u0435",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 96,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 12,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10671298/e6df0a42-0fee-4c13-ac79-29ad02960494/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10671298/e6df0a42-0fee-4c13-ac79-29ad02960494/x1000"
            },
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0438\u0441\u0442\u043e\u0440\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7876990,
            "name": "\u041a\u0430\u043a \u0441\u043e\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u043d\u0430\u0443\u0447\u043d\u043e\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u0435",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": "\u041f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u0435 \u043f\u043e\u00a0\u043b\u0430\u0431\u043e\u0440\u0430\u0442\u043e\u0440\u0438\u044f\u043c \u0438\u00a0\u0443\u043c\u0430\u043c \u0443\u0447\u0435\u043d\u044b\u0445, \u043a\u0430\u0436\u0434\u044b\u0439 \u0438\u0437\u00a0\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0432\u00a0\u044d\u0442\u043e\u043c \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u043e\u0442\u043a\u0440\u044b\u0432\u0430\u0435\u0442 \u0447\u0442\u043e-\u0442\u043e \u043d\u043e\u0432\u043e\u0435 \u043e\u00a0\u043d\u0430\u0448\u0435\u043c \u043c\u0438\u0440\u0435.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 19,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 12,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10768063/c16f6b54-edc7-4158-b351-ba43a4d11761/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10768063/c16f6b54-edc7-4158-b351-ba43a4d11761/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7876674,
            "name": "\u0420\u0430\u0437\u0434\u043e\u043b\u044c\u0435 \u043c\u043e\u0435\u0439 \u0434\u0443\u0448\u0438",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": "\u041c\u043e\u043b\u043e\u0434\u043e\u0439 \u0441\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0441\u0432\u044f\u0449\u0435\u043d\u043d\u0438\u043a, \u0432\u0435\u0434\u0443\u0449\u0438\u0439 \u0432\u0438\u0434\u0435\u043e\u0431\u043b\u043e\u0433 \u0441\u00a0\u043f\u043e\u0447\u0442\u0438 11\u00a0000 \u043f\u043e\u0434\u043f\u0438\u0441\u0447\u0438\u043a\u043e\u0432, \u043f\u0435\u0440\u0435\u0435\u0437\u0436\u0430\u0435\u0442 \u0432\u00a0\u0433\u043e\u0440\u043e\u0434 \u043f\u0440\u043e\u0434\u0432\u0438\u0433\u0430\u0442\u044c \u0412\u043b\u0430\u0434\u0438\u043c\u0438\u0440\u0441\u043a\u0438\u0439 \u0445\u0440\u0430\u043c, \u043d\u043e\u00a0\u0435\u0433\u043e \u0441\u0435\u043c\u044c\u044f \u0438\u00a0\u0434\u0443\u0448\u0430 \u043f\u043e-\u043f\u0440\u0435\u0436\u043d\u0435\u043c\u0443 \u043e\u0441\u0442\u0430\u044e\u0442\u0441\u044f \u0432\u00a0\u0434\u0435\u0440\u0435\u0432\u043d\u0435.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 24,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 6,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10768063/99ff4b01-98e2-480a-8c7b-5f0440db686d/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10768063/99ff4b01-98e2-480a-8c7b-5f0440db686d/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7876330,
            "name": "\u0414\u043e\u043d\u0431\u0430\u0441\u0441. \u041f\u0435\u0440\u0435\u0434\u043e\u0432\u0430\u044f. \u041a\u0430\u0437\u0430\u043a\u0438",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": "\u041e \u0434\u043e\u0431\u0440\u043e\u0432\u043e\u043b\u044c\u0447\u0435\u0441\u043a\u0438\u0445 \u043a\u0430\u0437\u0430\u0447\u044c\u0438\u0445 \u043f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f\u0445 \u0438\u00a0\u043e \u043b\u044e\u0434\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0441\u0435\u0439\u0447\u0430\u0441 \u0432\u043e\u044e\u044e\u0442 \u043d\u0430\u00a0\u043f\u0435\u0440\u0435\u0434\u043e\u0432\u043e\u0439.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 76,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 16,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10812607/e000be02-45c2-4b5a-9af9-1251f58d4b24/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10812607/e000be02-45c2-4b5a-9af9-1251f58d4b24/x1000"
            },
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 3,
    "pages": 107884
}
Ответ на странице 4:
{
    "docs": [
        {
            "id": 7874436,
            "name": null,
            "alternativeName": "Das Weiterleben der Ruth Kl\u00fcger",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2011,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.4,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 14,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 85,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0410\u0432\u0441\u0442\u0440\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7876675,
            "name": "\u0412\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0439\u0442\u0435\u0441\u044c \u0441\u043a\u043e\u0440\u0435\u0435",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2023,
            "description": "\u0412\u0435\u0441\u043d\u0430 1941 \u0433\u043e\u0434\u0430. \u041c\u0438\u0440\u043d\u0430\u044f \u0436\u0438\u0437\u043d\u044c \u0442\u0440\u0451\u0445 \u0434\u0440\u0443\u0437\u0435\u0439, \u0434\u0432\u0443\u0445 \u0421\u0435\u0440\u0433\u0435\u0435\u0432 \u0438\u00a0\u0415\u043a\u0430\u0442\u0435\u0440\u0438\u043d\u044b, \u0438\u0437\u00a0\u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u0441\u0442\u0430\u043d\u0438\u0446\u044b \u043d\u0430\u00a0\u041a\u0443\u0431\u0430\u043d\u0438 \u043f\u0440\u0435\u0440\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0437\u0430\u043f\u043d\u043e \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u043d\u043e\u0439 \u0432\u043e\u0439\u043d\u043e\u0439 \u0438\u00a0\u0432\u044b\u0441\u0430\u0434\u043a\u043e\u0439 \u0444\u0430\u0448\u0438\u0441\u0442\u043e\u0432 \u043d\u0430\u00a0\u041a\u0430\u0432\u043a\u0430\u0437\u0435. \u0412\u043b\u044e\u0431\u043b\u0451\u043d\u043d\u044b\u0435 \u0432\u00a0\u0415\u043a\u0430\u0442\u0435\u0440\u0438\u043d\u0443 \u043f\u0430\u0440\u043d\u0438 \u0438\u0434\u0443\u0442 \u0434\u043e\u0431\u0440\u043e\u0432\u043e\u043b\u044c\u0446\u0430\u043c\u0438 \u0432\u00a0\u043f\u0430\u0440\u0442\u0438\u0437\u0430\u043d\u044b, \u0430\u00a0\u043e\u043d\u0430 \u043e\u0441\u0442\u0430\u0451\u0442\u0441\u044f \u0432\u00a0\u0441\u0442\u0430\u043d\u0438\u0446\u0435 \u0438\u00a0\u043f\u0440\u043e\u0441\u0438\u0442 \u0438\u0445\u00a0\u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0442\u044c\u0441\u044f \u0441\u043a\u043e\u0440\u0435\u0435. \u041d\u0435\u043f\u043e\u0434\u0430\u043b\u0435\u043a\u0443 \u043e\u0442\u00a0\u044d\u0442\u0438\u0445 \u043c\u0435\u0441\u0442 \u043d\u0435\u043c\u0446\u044b \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0443\u044e\u0442 \u0441\u043a\u043b\u0430\u0434 \u0441\u00a0\u0431\u043e\u0435\u043f\u0440\u0438\u043f\u0430\u0441\u0430\u043c\u0438. \u041a\u043e\u043c\u0430\u043d\u0434\u0438\u0440\u0443 \u043f\u0430\u0440\u0442\u0438\u0437\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u043e\u0442\u0440\u044f\u0434\u0430 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u0435\u0442 \u043f\u0440\u0438\u043a\u0430\u0437 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430 \u0438\u00a0\u0432\u0437\u043e\u0440\u0432\u0430\u0442\u044c \u0441\u043a\u043b\u0430\u0434. \u041d\u0430\u00a0\u043e\u043f\u0430\u0441\u043d\u043e\u0435 \u0437\u0430\u0434\u0430\u043d\u0438\u0435 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0434\u0432\u0430\u00a0\u0421\u0435\u0440\u0433\u0435\u044f.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 32,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 12,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/4486454/5ebe00bb-96cd-42d0-b298-0aa45aca9ac0/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/4486454/5ebe00bb-96cd-42d0-b298-0aa45aca9ac0/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u0432\u043e\u0435\u043d\u043d\u044b\u0439"
                },
                {
                    "name": "\u0438\u0441\u0442\u043e\u0440\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7877275,
            "name": "\u0421\u0430\u0442\u0430\u043d\u0438\u043d\u0441\u043a\u0438\u0435 \u0438\u0441\u043a\u0443\u0448\u0435\u043d\u0438\u044f",
            "alternativeName": "Godaan Setan yang Terkutuk",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 88,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/4716873/5ac5e6ea-d912-45c2-947c-7584d76b9b75/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/4716873/5ac5e6ea-d912-45c2-947c-7584d76b9b75/x1000"
            },
            "genres": [
                {
                    "name": "\u0443\u0436\u0430\u0441\u044b"
                }
            ],
            "countries": [
                {
                    "name": "\u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7877303,
            "name": null,
            "alternativeName": "ADAM: \u041d\u0430\u0440\u0442\u04d9\u0443\u0435\u043a\u0435\u043b",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": "\u0422\u043e\u0445\u0442\u0430\u0440 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u00a0\u043a\u043e\u0441\u043c\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u0435 \u043d\u0430\u00a0\u043f\u043e\u0438\u0441\u043a\u0438 \u043e\u0442\u0446\u0430 \u0438\u00a0\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u0441\u044f \u0441\u00a0\u0434\u0435\u0442\u044c\u043c\u0438 \u0441\u00a0\u0434\u0440\u0443\u0433\u0438\u0445 \u043f\u043b\u0430\u043d\u0435\u0442, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u043e\u0442\u0435\u0440\u044f\u043b\u0438 \u0441\u0432\u043e\u0438\u0445 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u0435\u0439. \u0412\u043c\u0435\u0441\u0442\u0435 \u043e\u043d\u0438\u00a0\u043d\u0430\u0447\u0438\u043d\u0430\u044e\u0442 \u0431\u043e\u0440\u044c\u0431\u0443 \u043f\u0440\u043e\u0442\u0438\u0432 \u0436\u0435\u0441\u0442\u043e\u043a\u043e\u0433\u043e \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044f \u0422\u0443\u043c\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0441\u0442\u0451\u0440 \u043f\u0430\u043c\u044f\u0442\u044c \u043e\u0442\u0446\u0430 \u0422\u043e\u0445\u0442\u0430\u0440\u0430 \u0438\u00a0\u043f\u0440\u0435\u0432\u0440\u0430\u0442\u0438\u043b \u0435\u0433\u043e\u00a0\u0432 \u0441\u0432\u043e\u0435\u0433\u043e \u0432\u0435\u0440\u043d\u043e\u0433\u043e \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a\u0430.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 98,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 6,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/1898899/fc18936e-15da-4b6f-b39e-df6719087ea9/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/1898899/fc18936e-15da-4b6f-b39e-df6719087ea9/x1000"
            },
            "genres": [
                {
                    "name": "\u0444\u0430\u043d\u0442\u0430\u0441\u0442\u0438\u043a\u0430"
                },
                {
                    "name": "\u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f"
                },
                {
                    "name": "\u0441\u0435\u043c\u0435\u0439\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7873779,
            "name": null,
            "alternativeName": "Chhorii 2",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 4.6,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 1119,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 132,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0443\u0436\u0430\u0441\u044b"
                }
            ],
            "countries": [
                {
                    "name": "\u0418\u043d\u0434\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7874435,
            "name": null,
            "alternativeName": "King Kong - The Heart of Darkness",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 60,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7876319,
            "name": "\u0421\u0443\u0440\u0433\u0443\u0442-\u0441\u0438\u0442\u0438",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 90,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u043a\u0440\u0438\u043c\u0438\u043d\u0430\u043b"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7876991,
            "name": "\u041a\u043e\u0432\u0440\u044b \u0433\u043e\u0432\u043e\u0440\u044f\u0442",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 20,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 12,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10592371/7f5031a4-b616-415b-88a1-da86c09add50/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10592371/7f5031a4-b616-415b-88a1-da86c09add50/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7873471,
            "name": null,
            "alternativeName": "The Beatles: Made on Merseyside",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2018,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.7,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 192,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 87,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u043c\u0443\u0437\u044b\u043a\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7876980,
            "name": "\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u043b\u044e\u0434\u0438",
            "alternativeName": "Sovereign",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 100,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0431\u043e\u0435\u0432\u0438\u043a"
                },
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u043a\u0440\u0438\u043c\u0438\u043d\u0430\u043b"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 4,
    "pages": 107884
}
Ответ на странице 5:
{
    "docs": [
        {
            "id": 7876323,
            "name": "\u0414\u0438\u043a\u0430\u044f \u043e\u0445\u043e\u0442\u0430",
            "alternativeName": "Savage Hunt",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10592371/e4cead9b-10cc-4f3b-9ecb-6a5f38f08d4e/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10592371/e4cead9b-10cc-4f3b-9ecb-6a5f38f08d4e/x1000"
            },
            "genres": [
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7877276,
            "name": "\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 \u0433\u0440\u043e\u043c: NASCAR \u0432 \u041b\u0435-\u041c\u0430\u043d\u0435",
            "alternativeName": "American Thunder: NASCAR to Le Mans",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/1898899/6ad8f61f-f70f-406d-95fb-fc5d88a9d3e0/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/1898899/6ad8f61f-f70f-406d-95fb-fc5d88a9d3e0/x1000"
            },
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0441\u043f\u043e\u0440\u0442"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7875975,
            "name": null,
            "alternativeName": "Vadakkan",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 8.4,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 5,
                "imdb": 2530,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 112,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10953618/64aae4d7-1f09-4f65-8504-43248032828b/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10953618/64aae4d7-1f09-4f65-8504-43248032828b/x1000"
            },
            "genres": [
                {
                    "name": "\u0443\u0436\u0430\u0441\u044b"
                }
            ],
            "countries": [
                {
                    "name": "\u0418\u043d\u0434\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7876321,
            "name": "\u041a\u043e\u0433\u0434\u0430 \u044f \u0441\u043f\u043b\u044e",
            "alternativeName": "Naega nuwoisseul ttae",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": "\u0422\u0440\u0438 \u043f\u043e\u0434\u0440\u0443\u0433\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432\u00a0\u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u0435, \u0432\u043e\u00a0\u0432\u0440\u0435\u043c\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0432\u0441\u043f\u043b\u044b\u0432\u0430\u044e\u0442 \u0438\u0445\u00a0\u0442\u0430\u0439\u043d\u044b.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 116,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/1898899/6891a384-7c4c-4581-9c34-ca9454de2ae8/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/1898899/6891a384-7c4c-4581-9c34-ca9454de2ae8/x1000"
            },
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u041a\u043e\u0440\u0435\u044f \u042e\u0436\u043d\u0430\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7876333,
            "name": "\u0421\u043e\u0432\u043e\u043a",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": "\u0412\u044f\u0447\u0435\u0441\u043b\u0430\u0432 \u0415\u0440\u043c\u0430\u043a\u043e\u0432\u00a0\u2014\u00a0\u043b\u0438\u043f\u043e\u0432\u044b\u0439 \u0431\u0438\u0437\u043d\u0435\u0441\u043c\u0435\u043d \u0438\u00a0\u043f\u0440\u043e\u0436\u0438\u0433\u0430\u0442\u0435\u043b\u044c \u0436\u0438\u0437\u043d\u0438 \u0437\u0430\u0434\u043e\u043b\u0436\u0430\u043b \u043a\u0440\u0443\u043f\u043d\u0443\u044e \u0441\u0443\u043c\u043c\u0443 \u043a\u0440\u0438\u043c\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u043c\u0443 \u0430\u0432\u0442\u043e\u0440\u0438\u0442\u0435\u0442\u0443, \u0438, \u0447\u0442\u043e\u0431\u044b \u0440\u0430\u0441\u043f\u043b\u0430\u0442\u0438\u0442\u044c\u0441\u044f, \u0432\u044b\u043d\u0443\u0436\u0434\u0435\u043d \u0441\u043e\u0433\u043b\u0430\u0441\u0438\u0442\u044c\u0441\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0435\u0433\u043e\u00a0\u043f\u043e\u0440\u0443\u0447\u0435\u043d\u0438\u0435. \u041d\u043e\u00a0\u0432 \u043f\u0443\u0442\u0438 \u0441\u043b\u0443\u0447\u0430\u0435\u0442\u0441\u044f \u0440\u043e\u043a\u043e\u0432\u0430\u044f \u0432\u0441\u0442\u0440\u0435\u0447\u0430. \u0427\u0442\u043e\u0431\u044b \u0432\u044b\u0436\u0438\u0442\u044c, \u0421\u043b\u0430\u0432\u0435 \u043d\u0443\u0436\u043d\u043e \u0441\u044b\u0433\u0440\u0430\u0442\u044c \u0432\u00a0\u0438\u0433\u0440\u0443 \u043d\u0430\u00a0\u0432\u044b\u0436\u0438\u0432\u0430\u043d\u0438\u0435.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 80,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10835644/b2b60381-4c13-416e-95f4-8c3b0bdd1d07/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10835644/b2b60381-4c13-416e-95f4-8c3b0bdd1d07/x1000"
            },
            "genres": [
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7866245,
            "name": null,
            "alternativeName": "Nova Wonders",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2018,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 7.5,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 65,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 60,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2018,
                    "end": 2018
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7869228,
            "name": "\u041d\u043e\u043a\u0442\u044e\u0440\u043d",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2022,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7866243,
            "name": null,
            "alternativeName": "Food Paradise",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2007,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.7,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 138,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 40,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u0422\u0412"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2007,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 1188653,
            "name": "\u041a\u043e\u043d\u0430\u043d \u2013 \u043c\u0430\u043b\u044c\u0447\u0438\u043a \u0438\u0437 \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e. \u0424\u0438\u043b\u044c\u043c",
            "alternativeName": "Mirai Shounen Conan Movie",
            "enName": null,
            "type": "anime",
            "typeNumber": 4,
            "year": 1979,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.9,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 210,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 122,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10809116/1f44dde6-a72d-42dd-b4e1-05fbbf913776/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10809116/1f44dde6-a72d-42dd-b4e1-05fbbf913776/x1000"
            },
            "genres": [
                {
                    "name": "\u0430\u043d\u0438\u043c\u0435"
                },
                {
                    "name": "\u043c\u0443\u043b\u044c\u0442\u0444\u0438\u043b\u044c\u043c"
                },
                {
                    "name": "\u0444\u0430\u043d\u0442\u0430\u0441\u0442\u0438\u043a\u0430"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u042f\u043f\u043e\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7869971,
            "name": "\u041a\u043e\u0440\u0435\u0448\u0430. \u0421\u0435\u0440\u0438\u0430\u043b",
            "alternativeName": "Koresha. Serial",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "releaseYears": [
                {
                    "start": 2025,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 5,
    "pages": 107884
}
Ответ на странице 6:
{
    "docs": [
        {
            "id": 7868246,
            "name": "\u0412\u043e\u0441\u043a\u0440\u0435\u0448\u0435\u043d\u0438\u0435",
            "alternativeName": "Revival",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "post-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false,
            "poster": {
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10953618/bd564b61-1282-454f-9c11-3a416fcc17fe/x1000",
                "url": "https://image.openmoviedb.com/kinopoisk-images/10953618/bd564b61-1282-454f-9c11-3a416fcc17fe/orig"
            }
        },
        {
            "id": 7865896,
            "name": null,
            "alternativeName": "East of Eden",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2026,
            "description": null,
            "shortDescription": null,
            "status": "post-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2026,
                    "end": 2026
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7866240,
            "name": null,
            "alternativeName": "Nova Science Now: How Smart Are Animals?",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2011,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.6,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 28,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 60,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2011,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7866242,
            "name": null,
            "alternativeName": "Drop Dead City: New York on the Brink in 1975",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 108,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0438\u0441\u0442\u043e\u0440\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7869628,
            "name": "\u0420\u0435\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u043d\u0435 \u043d\u0443\u0436\u043d\u0430. \u0412\u043e\u0441\u0442\u043e\u0447\u043d\u043e-\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0438\u0439 \u043f\u0430\u043d\u043a",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": "\u0428\u0435\u0441\u0442\u044c \u043d\u043e\u0432\u0435\u043b\u043b, \u043f\u043e\u0441\u0432\u044f\u0449\u0435\u043d\u043d\u044b\u0445 \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u043c \u043f\u0430\u043d\u043a-\u0440\u043e\u043a-\u043a\u043e\u043c\u0430\u043d\u0434\u0430\u043c \u0418\u0440\u043a\u0443\u0442\u0441\u043a\u043e\u0439 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0438\u00a0\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0438 \u0411\u0443\u0440\u044f\u0442\u0438\u044f, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0441\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043b\u0438 \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0442\u0438\u043b\u044c \u0438\u00a0\u0432\u043d\u0435\u0441\u043b\u0438 \u043a\u0443\u043b\u044c\u0442\u0443\u0440\u043d\u044b\u0439 \u0432\u043a\u043b\u0430\u0434 \u0432\u00a0\u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435 \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430 \u0412\u043e\u0441\u0442\u043e\u0447\u043d\u043e\u0439 \u0421\u0438\u0431\u0438\u0440\u0438.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 149,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 18,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/4716873/4fad0a3a-8455-41aa-b186-6775c68d965d/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/4716873/4fad0a3a-8455-41aa-b186-6775c68d965d/x1000"
            },
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0431\u0438\u043e\u0433\u0440\u0430\u0444\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7865897,
            "name": null,
            "alternativeName": "Der Wald in mir",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.7,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 20,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 91,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0413\u0435\u0440\u043c\u0430\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7870294,
            "name": "\u0423\u0441\u0442\u0440\u0435\u043c\u043b\u0435\u043d\u043d\u044b\u0435 \u0432 \u043d\u0435\u0431\u043e",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 25,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 0,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10671298/5844ab03-3839-48d0-916b-9026681f05eb/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10671298/5844ab03-3839-48d0-916b-9026681f05eb/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7869970,
            "name": "\u041d\u0430\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u043e",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 25,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 6,
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7865911,
            "name": null,
            "alternativeName": "Shutout",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7870297,
            "name": "\u042f \u0440\u0438\u0441\u0443\u044e \u043b\u043e\u0448\u0430\u0434\u044c",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": "\u041b\u0438\u0437\u0430 \u043e\u0442\u043b\u0438\u0447\u0430\u0435\u0442\u0441\u044f \u043e\u0442\u00a0\u0441\u0432\u043e\u0438\u0445 \u0441\u0432\u0435\u0440\u0441\u0442\u043d\u0438\u043a\u043e\u0432 \u0442\u0435\u043c, \u0447\u0442\u043e\u00a0\u0435\u0435 \u0433\u043b\u0430\u0432\u043d\u044b\u043c\u0438 \u0434\u0440\u0443\u0437\u044c\u044f\u043c\u0438 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043b\u043e\u0448\u0430\u0434\u0438. \u041e\u0434\u043d\u0430\u0436\u0434\u044b \u044d\u0442\u043e\u00a0\u043e\u0431\u0441\u0442\u043e\u044f\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u043f\u043e\u043c\u043e\u0433\u0430\u0435\u0442 \u0434\u0435\u0432\u043e\u0447\u043a\u0435 \u043f\u0440\u0435\u043e\u0434\u043e\u043b\u0435\u0442\u044c \u0442\u0432\u043e\u0440\u0447\u0435\u0441\u043a\u0438\u0439 \u043a\u0440\u0438\u0437\u0438\u0441.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 23,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 6,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/4486454/518ae549-a050-4420-8d8f-91b671e58fb7/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/4486454/518ae549-a050-4420-8d8f-91b671e58fb7/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 6,
    "pages": 107884
}
Ответ на странице 7:
{
    "docs": [
        {
            "id": 7870289,
            "name": "\u0414\u044c\u043e\u043b",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 25,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 6,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/4716873/1d4b90d8-289f-4895-b6de-c1bfb5b0b58a/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/4716873/1d4b90d8-289f-4895-b6de-c1bfb5b0b58a/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7865908,
            "name": null,
            "alternativeName": "Havumets\u00e4n lapset",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.2,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 238,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 93,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0438\u043d\u043b\u044f\u043d\u0434\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7870295,
            "name": "\u0425\u0430\u0440\u0430\u043c\u0430",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 25,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 16,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10812607/97f1c292-b4d2-4abf-b3e7-ed995c578bf7/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10812607/97f1c292-b4d2-4abf-b3e7-ed995c578bf7/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7869974,
            "name": "\u0421\u0430\u043c\u0441\u043e\u043d",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": "\u041e\u0431 \u043e\u0441\u0435\u0442\u0438\u043d\u0441\u043a\u043e\u043c \u0438\u043a\u043e\u043d\u043e\u043f\u0438\u0441\u0446\u0435 \u0421\u0430\u043c\u0441\u043e\u043d\u0435 \u041c\u0430\u0440\u0437\u043e\u0435\u0432\u0435.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 25,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 0,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10671298/b713d032-88dd-43d8-921c-8b66f7ca4824/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10671298/b713d032-88dd-43d8-921c-8b66f7ca4824/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7865898,
            "name": null,
            "alternativeName": "Im Haus meiner Eltern",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 95,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0413\u0435\u0440\u043c\u0430\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7867843,
            "name": "\u0421\u043b\u0443\u0447\u0430\u0439\u043d\u044b\u0435 \u0432\u0441\u0442\u0440\u0435\u0447\u0438",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 26,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 6,
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7867845,
            "name": "\u041c\u043e\u044f \u0434\u043e\u0447\u044c \u2013 \u0437\u043e\u043c\u0431\u0438",
            "alternativeName": "Jombittal",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": "\u041c\u0443\u0436\u0447\u0438\u043d\u0430 \u0441\u043a\u0440\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u0432\u00a0\u0434\u043e\u043c\u0435 \u043f\u043e\u0436\u0438\u043b\u043e\u0439 \u043c\u0430\u0442\u0435\u0440\u0438 \u0432\u00a0\u0441\u0435\u043b\u044c\u0441\u043a\u043e\u0439 \u043c\u0435\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u043f\u044b\u0442\u0430\u044f\u0441\u044c \u0437\u0430\u0449\u0438\u0442\u0438\u0442\u044c \u0434\u043e\u0447\u044c, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0437\u0430\u0440\u0430\u0437\u0438\u043b\u0430\u0441\u044c \u0437\u043e\u043c\u0431\u0438-\u0432\u0438\u0440\u0443\u0441\u043e\u043c.",
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10703859/efe95164-1b4d-490e-bc1a-6f90b158fa83/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10703859/efe95164-1b4d-490e-bc1a-6f90b158fa83/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                },
                {
                    "name": "\u0443\u0436\u0430\u0441\u044b"
                }
            ],
            "countries": [
                {
                    "name": "\u041a\u043e\u0440\u0435\u044f \u042e\u0436\u043d\u0430\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7870296,
            "name": "\u042f \u043d\u0435 \u0420\u0443\u0431\u043b\u0451\u0432",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": "\u041e\u0431 \u0443\u0440\u0430\u043b\u044c\u0441\u043a\u043e\u043c \u0438\u043a\u043e\u043d\u043e\u043f\u0438\u0441\u0446\u0435 \u0418\u0433\u043e\u0440\u0435 \u0414\u044b\u043c\u0448\u0430\u043a\u043e\u0432\u0435.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 25,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 6,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10703859/ff3cf6e0-881c-42ea-8258-047ea77d7abf/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10703859/ff3cf6e0-881c-42ea-8258-047ea77d7abf/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7867844,
            "name": "\u041f\u043e\u0434\u043f\u043e\u043b\u044c\u0435",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": "\u041c\u043e\u043b\u043e\u0434\u043e\u0439 \u0447\u0435\u043b\u043e\u0432\u0435\u043a \u0432\u044b\u043d\u0443\u0436\u0434\u0435\u043d\u043d\u043e \u043f\u043e\u043a\u0438\u043d\u0443\u043b \u0441\u0432\u043e\u044e \u0420\u043e\u0434\u0438\u043d\u0443. \u0412\u00a0\u0447\u0443\u0436\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0435 \u043e\u043d\u00a0\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u0432\u00a0\u043f\u043e\u043b\u043d\u043e\u043c \u043e\u0434\u0438\u043d\u043e\u0447\u0435\u0441\u0442\u0432\u0435. \u041d\u0430\u0435\u0434\u0438\u043d\u0435 \u0441\u043e\u00a0\u0441\u0432\u043e\u0438\u043c\u0438 \u043c\u044b\u0441\u043b\u044f\u043c\u0438.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 25,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 16,
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7869229,
            "name": "\u0412\u043e\u0440\u043e\u043d\u0435\u0436 \u2013 \u0434\u0435\u0442\u0441\u0442\u0432\u043e 40-\u0445",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2010,
            "description": "\u041e \u0441\u0443\u0440\u043e\u0432\u044b\u0445 \u0433\u043e\u0434\u0430\u0445 \u0412\u0435\u043b\u0438\u043a\u043e\u0439 \u041e\u0442\u0435\u0447\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u0432\u043e\u0439\u043d\u044b, \u0443\u0432\u0438\u0434\u0435\u043d\u043d\u044b\u0445 \u0433\u043b\u0430\u0437\u0430\u043c\u0438 \u0440\u0435\u0431\u0435\u043d\u043a\u0430.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 16,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10812607/d2f3ee2d-6ca6-4d24-ace2-ebe85824e3a3/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10812607/d2f3ee2d-6ca6-4d24-ace2-ebe85824e3a3/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0438\u0441\u0442\u043e\u0440\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 7,
    "pages": 107884
}
Ответ на странице 8:
{
    "docs": [
        {
            "id": 7865913,
            "name": null,
            "alternativeName": "Dreadnought",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "pre-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7867841,
            "name": null,
            "alternativeName": "To Fall in Love",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2023,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 5.2,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 43,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 87,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7866539,
            "name": "\u0414\u0435\u043b\u043e \u043e \u0445\u043e\u043a\u043a\u0435\u0439\u043d\u043e\u0439 \u0430\u0440\u0435\u043d\u0435",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": "\u041b\u0435\u043e\u043d\u0438\u0434 \u041a\u0430\u043d\u0435\u0432\u0441\u043a\u0438\u0439 \u043f\u044b\u0442\u0430\u0435\u0442\u0441\u044f \u0440\u0430\u0437\u043e\u0431\u0440\u0430\u0442\u044c\u0441\u044f \u0432\u00a0\u043d\u043e\u0432\u043e\u043c \u0437\u0430\u0433\u0430\u0434\u043e\u0447\u043d\u043e\u043c \u0434\u0435\u043b\u0435. \u0415\u043c\u0443\u00a0\u043f\u0440\u0435\u0434\u0441\u0442\u043e\u0438\u0442 \u0443\u0437\u043d\u0430\u0442\u044c, \u043a\u0430\u043a\u00a0\u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u0445\u043e\u043a\u043a\u0435\u0439\u043d\u0430\u044f \u0430\u0440\u0435\u043d\u0430 \u0438\u00a0\u043a\u0430\u043a \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u043a\u0438 \u0441\u0442\u0430\u0434\u0438\u043e\u043d\u0430 \u043f\u043e\u043c\u043e\u0433\u0430\u044e\u0442 \u043a\u043e\u043c\u0430\u043d\u0434\u0435 \u043f\u043e\u0431\u0435\u0436\u0434\u0430\u0442\u044c.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 12,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 18,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/4486362/1ce0b4fb-3f3c-41f0-bc32-37158761d429/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/4486362/1ce0b4fb-3f3c-41f0-bc32-37158761d429/x1000"
            },
            "backdrop": {
                "url": "https://image.openmoviedb.com/kinopoisk-ott-images/374297/2a00000196a5de22ab98b6020b9d85840cd9/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-ott-images/374297/2a00000196a5de22ab98b6020b9d85840cd9/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0441\u043f\u043e\u0440\u0442"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false,
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ]
        },
        {
            "id": 7869230,
            "name": null,
            "alternativeName": "The Riders",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "pre-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7865910,
            "name": null,
            "alternativeName": "Trash's Revenge: Return of The Living Dead Universe",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "pre-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0443\u0436\u0430\u0441\u044b"
                }
            ],
            "countries": [
                {
                    "name": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7868242,
            "name": null,
            "alternativeName": "Group Therapy",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.2,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 76,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 86,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7865909,
            "name": null,
            "alternativeName": "Shark Attack",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "pre-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0431\u043e\u0435\u0432\u0438\u043a"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7865895,
            "name": null,
            "alternativeName": "Big Cat",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7869629,
            "name": "\u041f\u0430\u043f\u0430 \u043c\u043e\u0436\u0435\u0442",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": "\u0412\u0438\u043a\u0442\u043e\u0440 \u0438\u00a0\u0412\u0435\u0440\u0430 \u0441\u0447\u0430\u0441\u0442\u043b\u0438\u0432\u043e \u0436\u0435\u043d\u0430\u0442\u044b \u0443\u0436\u0435\u00a020 \u043b\u0435\u0442. \u041e\u043d\u0438\u00a0\u0436\u0438\u0432\u0443\u0442 \u0432\u00a0\u0431\u043e\u043b\u044c\u0448\u043e\u043c \u0434\u043e\u043c\u0435 \u0441\u00a0\u0447\u0435\u0442\u044b\u0440\u044c\u043c\u044f \u0434\u0435\u0442\u044c\u043c\u0438 \u0438\u00a0\u0441\u043e\u0431\u0430\u043a\u043e\u0439. \u0412\u0438\u043a\u0442\u043e\u0440\u00a0\u2014\u00a0\u0443\u0441\u043f\u0435\u0448\u043d\u044b\u0439 \u0442\u043e\u043f-\u043c\u0435\u043d\u0435\u0434\u0436\u0435\u0440, \u0440\u0430\u0431\u043e\u0442\u0430\u044e\u0449\u0438\u0439 \u0432\u00a0\u0441\u0435\u0442\u0435\u0432\u043e\u043c \u043c\u0430\u0433\u0430\u0437\u0438\u043d\u0435 \u00ab\u041f\u043e\u043c\u0438\u0434\u043e\u0440&\u041a\u043e\u00bb. \u0410\u00a0\u0412\u0435\u0440\u0430, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u0431\u043e\u0442\u0438\u0442\u044c\u0441\u044f \u043e\u00a0\u0434\u0435\u0442\u044f\u0445, \u0437\u0430\u0431\u0440\u043e\u0441\u0438\u043b\u0430 \u043a\u0430\u0440\u044c\u0435\u0440\u0443 \u044e\u0440\u0438\u0441\u0442\u0430, \u0438\u00a0\u0446\u0435\u043b\u044b\u043c\u0438 \u0434\u043d\u044f\u043c\u0438 \u043a\u0440\u0443\u0442\u0438\u0442\u0441\u044f \u043a\u0430\u043a\u00a0\u0431\u0435\u043b\u043a\u0430 \u0432\u00a0\u043a\u043e\u043b\u0435\u0441\u0435. \u041d\u043e\u00a0\u043e\u0434\u043d\u0430\u0436\u0434\u044b \u043f\u043e\u0441\u043b\u0435 \u043d\u0435\u00a0\u0441\u0430\u043c\u043e\u0433\u043e \u0443\u0434\u0430\u0447\u043d\u043e\u0433\u043e \u0440\u0430\u0431\u043e\u0447\u0435\u0433\u043e \u0434\u043d\u044f\u00a0\u0412\u0438\u043a\u0442\u043e\u0440 \u0437\u0430\u044f\u0432\u043b\u044f\u0435\u0442, \u0447\u0442\u043e\u00a0\u0435\u0433\u043e \u0440\u0430\u0431\u043e\u0442\u0430 \u0433\u043e\u0440\u0430\u0437\u0434\u043e \u0442\u044f\u0436\u0435\u043b\u0435\u0435, \u0447\u0435\u043c\u00a0\u0435\u0435 \u043f\u043e\u0432\u0441\u0435\u0434\u043d\u0435\u0432\u043d\u044b\u0435 \u0437\u0430\u0431\u043e\u0442\u044b \u043e\u00a0\u0441\u0435\u043c\u044c\u0435. \u0422\u043e\u0433\u0434\u0430 \u0412\u0435\u0440\u0430, \u0447\u0442\u043e\u0431\u044b \u043e\u0442\u043e\u043c\u0441\u0442\u0438\u0442\u044c \u043d\u0435\u0431\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u043d\u043e\u043c\u0443 \u0441\u0443\u043f\u0440\u0443\u0433\u0443, \u0440\u0435\u0448\u0430\u0435\u0442 \u0432\u0437\u044f\u0442\u044c \u043e\u0442\u043f\u0443\u0441\u043a \u043e\u0442\u00a0\u043c\u0430\u0442\u0435\u0440\u0438\u043d\u0441\u0442\u0432\u0430 \u0438\u00a0\u043d\u0430 \u0434\u0435\u0441\u044f\u0442\u044c \u0434\u043d\u0435\u0439 \u0443\u0435\u0437\u0436\u0430\u0435\u0442 \u043f\u043e\u00a0\u043f\u0443\u0442\u0435\u0432\u043a\u0435 \u043d\u0430\u00a0\u0410\u043b\u0442\u0430\u0439. \u0412\u0438\u043a\u0442\u043e\u0440 \u043f\u043e\u043b\u043e\u043d \u0440\u0435\u0448\u0438\u043c\u043e\u0441\u0442\u0438 \u0434\u043e\u043a\u0430\u0437\u0430\u0442\u044c, \u0447\u0442\u043e\u00a0\u0431\u0435\u0437 \u0442\u0440\u0443\u0434\u0430 \u0441\u043f\u0440\u0430\u0432\u0438\u0442\u0441\u044f \u0441\u00a0\u043d\u0435\u0445\u0438\u0442\u0440\u044b\u043c\u0438 \u0434\u043e\u043c\u0430\u0448\u043d\u0438\u043c\u0438 \u043e\u0431\u044f\u0437\u0430\u043d\u043d\u043e\u0441\u0442\u044f\u043c\u0438\u00a0\u2014\u00a0\u043d\u043e \u0441\u0442\u043e\u0438\u0442 \u0441\u0443\u043f\u0440\u0443\u0433\u0435 \u0443\u0435\u0445\u0430\u0442\u044c, \u043a\u0430\u043a\u00a0\u0435\u0433\u043e \u0443\u0432\u0435\u0440\u0435\u043d\u043d\u043e\u0441\u0442\u044c \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442 \u0442\u0430\u044f\u0442\u044c \u043d\u0430\u00a0\u0433\u043b\u0430\u0437\u0430\u0445.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 18,
            "genres": [
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                },
                {
                    "name": "\u0441\u0435\u043c\u0435\u0439\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false,
            "backdrop": {
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-ott-images/2439731/2a00000196aa0bf8b914be89c1af07c894c5/x1000",
                "url": "https://image.openmoviedb.com/kinopoisk-ott-images/2439731/2a00000196aa0bf8b914be89c1af07c894c5/orig"
            }
        },
        {
            "id": 7868936,
            "name": "\u041f\u043e \u0441\u043b\u0435\u0434\u0443 \u0442\u0435\u043d\u0438",
            "alternativeName": "Six jours",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": "\u0412 2005 \u0433\u043e\u0434\u0443 \u0438\u043d\u0441\u043f\u0435\u043a\u0442\u043e\u0440 \u043f\u043e\u043b\u0438\u0446\u0438\u0438 \u041c\u0430\u043b\u0438\u043a \u0437\u0430\u043d\u0438\u043c\u0430\u043b\u0441\u044f \u0440\u0430\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u043f\u043e\u0445\u0438\u0449\u0435\u043d\u0438\u044f \u0438\u00a0\u0443\u0431\u0438\u0439\u0441\u0442\u0432\u0430 \u0440\u0435\u0431\u0435\u043d\u043a\u0430. \u041f\u0440\u0435\u0441\u0442\u0443\u043f\u043d\u0438\u043a \u0438\u0441\u0447\u0435\u0437, \u0430\u00a0\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u0435 \u0437\u0430\u0448\u043b\u043e \u0432\u00a0\u0442\u0443\u043f\u0438\u043a. \u0421\u043f\u0443\u0441\u0442\u044f \u0434\u0435\u0441\u044f\u0442\u044c \u043b\u0435\u0442, \u043a\u043e\u0433\u0434\u0430 \u0434\u0435\u043b\u043e \u0433\u043e\u0442\u043e\u0432\u044f\u0442\u0441\u044f \u043e\u043a\u043e\u043d\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0437\u0430\u043a\u0440\u044b\u0442\u044c, \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u043d\u043e\u0432\u043e\u0435 \u043f\u043e\u0445\u0438\u0449\u0435\u043d\u0438\u0435 \u0441\u00a0\u0442\u0435\u043c \u0436\u0435\u00a0\u043f\u043e\u0447\u0435\u0440\u043a\u043e\u043c. \u0423\u00a0\u041c\u0430\u043b\u0438\u043a\u0430 \u043e\u0441\u0442\u0430\u0435\u0442\u0441\u044f \u0448\u0435\u0441\u0442\u044c \u0434\u043d\u0435\u0439 \u0434\u043e\u00a0\u0438\u0441\u0442\u0435\u0447\u0435\u043d\u0438\u044f \u0441\u0440\u043e\u043a\u0430 \u0434\u0430\u0432\u043d\u043e\u0441\u0442\u0438\u00a0\u2014\u00a0\u0448\u0435\u0441\u0442\u044c \u0434\u043d\u0435\u0439, \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0439\u0442\u0438 \u043d\u0430\u00a0\u0441\u043b\u0435\u0434 \u0443\u0431\u0438\u0439\u0446\u044b, \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u0438\u0442\u044c \u043d\u043e\u0432\u0443\u044e \u0442\u0440\u0430\u0433\u0435\u0434\u0438\u044e \u0438, \u043d\u0430\u043a\u043e\u043d\u0435\u0446, \u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u0441\u043f\u0440\u0430\u0432\u0435\u0434\u043b\u0438\u0432\u043e\u0441\u0442\u0438.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 5.9,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 39,
                "imdb": 152,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 95,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 18,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10835644/1ef5dd49-1870-45cc-89cb-421d5d5f5b7f/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10835644/1ef5dd49-1870-45cc-89cb-421d5d5f5b7f/x1000"
            },
            "genres": [
                {
                    "name": "\u0431\u043e\u0435\u0432\u0438\u043a"
                },
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
                },
                {
                    "name": "\u0411\u0435\u043b\u044c\u0433\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 8,
    "pages": 107884
}
Ответ на странице 9:
{
    "docs": [
        {
            "id": 7865907,
            "name": null,
            "alternativeName": "E.1027 - Eileen Gray and the House by the Sea",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.9,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 105,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 89,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0428\u0432\u0435\u0439\u0446\u0430\u0440\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7867839,
            "name": null,
            "alternativeName": "Til Death Do Us Part",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.1,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 180,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 90,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7865912,
            "name": null,
            "alternativeName": "Sonny Lovejoy",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "pre-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0443\u0436\u0430\u0441\u044b"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7867268,
            "name": null,
            "alternativeName": "American Gangster",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "pre-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u0440\u0438\u043c\u0438\u043d\u0430\u043b"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7867842,
            "name": null,
            "alternativeName": "Ocean with David Attenborough",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 95,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7867267,
            "name": null,
            "alternativeName": "Sherlock Holmes & The Murder on the Orient Express",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 90,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856503,
            "name": null,
            "alternativeName": "Phantom Investigators",
            "type": "animated-series",
            "typeNumber": 5,
            "year": 2002,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.8,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 45,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 30,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043c\u0443\u043b\u044c\u0442\u0444\u0438\u043b\u044c\u043c"
                },
                {
                    "name": "\u0444\u0430\u043d\u0442\u0430\u0441\u0442\u0438\u043a\u0430"
                },
                {
                    "name": "\u0444\u044d\u043d\u0442\u0435\u0437\u0438"
                },
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                },
                {
                    "name": "\u0441\u0435\u043c\u0435\u0439\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2002,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7856454,
            "name": null,
            "alternativeName": "Extreme Wales with Richard Parks",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2016,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 9,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 12,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 30,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2016,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7856502,
            "name": null,
            "alternativeName": "Adventurers: Masters of Time",
            "type": "animated-series",
            "typeNumber": 5,
            "year": 2005,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 7.6,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 54,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 26,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043c\u0443\u043b\u044c\u0442\u0444\u0438\u043b\u044c\u043c"
                },
                {
                    "name": "\u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f"
                },
                {
                    "name": "\u0441\u0435\u043c\u0435\u0439\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0413\u0435\u0440\u043c\u0430\u043d\u0438\u044f"
                },
                {
                    "name": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2005,
                    "end": 2006
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7856414,
            "name": null,
            "alternativeName": "Chasing the Rains",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2022,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 7.8,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 52,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 44,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2022,
                    "end": 2022
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 9,
    "pages": 107884
}
Ответ на странице 10:
{
    "docs": [
        {
            "id": 445249,
            "name": null,
            "alternativeName": "Time Upon a Once",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2007,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 4.7,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 16,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 2,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0444\u044d\u043d\u0442\u0435\u0437\u0438"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7860285,
            "name": null,
            "alternativeName": "Kart Shahn",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2023,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 3.6,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 85,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10812607/08306af5-ca93-46c8-a068-c8325f977ca7/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10812607/08306af5-ca93-46c8-a068-c8325f977ca7/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856408,
            "name": null,
            "alternativeName": "Lost Cave Temples of the Himalaya",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2009,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.4,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 12,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 53,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856409,
            "name": null,
            "alternativeName": "Heinrich Vogeler - Maler, Genosse, M\u00e4rtyrer",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2022,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 89,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0413\u0435\u0440\u043c\u0430\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 1254186,
            "name": null,
            "alternativeName": "Clovek a technika",
            "enName": null,
            "type": "cartoon",
            "typeNumber": 3,
            "year": 1967,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 4.9,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 28,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 1,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043c\u0443\u043b\u044c\u0442\u0444\u0438\u043b\u044c\u043c"
                },
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u041a\u0430\u043d\u0430\u0434\u0430"
                },
                {
                    "name": "\u0427\u0435\u0445\u043e\u0441\u043b\u043e\u0432\u0430\u043a\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 445267,
            "name": null,
            "alternativeName": "Die Hardly Working",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2007,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.5,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 21,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 2,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0431\u043e\u0435\u0432\u0438\u043a"
                },
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856455,
            "name": null,
            "alternativeName": "Where It's Still a Game",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2003,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 98,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856407,
            "name": null,
            "alternativeName": "Cave People of the Himalaya",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2012,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.2,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 20,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7857957,
            "name": "\u0412 \u043f\u043e\u0438\u0441\u043a\u0430\u0445 \u0437\u043e\u043b\u043e\u0442\u043e\u0439 \u0431\u0430\u0431\u044b",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2022,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 34,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856091,
            "name": null,
            "alternativeName": "Plan\u00e8te M\u00e9diterran\u00e9e",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2020,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.4,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 6,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 97,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 10,
    "pages": 107884
}
Ответ на странице 11:
{
    "docs": [
        {
            "id": 7856094,
            "name": null,
            "alternativeName": "Die Tortur",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2017,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0413\u0435\u0440\u043c\u0430\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856067,
            "name": null,
            "alternativeName": "The little wood near where I live",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2016,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 26,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0411\u0435\u043b\u044c\u0433\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856412,
            "name": null,
            "alternativeName": "Vadim Mister Cool",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2016,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.7,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 93,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 57,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0431\u0438\u043e\u0433\u0440\u0430\u0444\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856413,
            "name": null,
            "alternativeName": "Secrets of the Enchanted Forests",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2023,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": 300,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2023,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7856482,
            "name": "\u0423\u0440\u043e\u0434\u0438\u043d\u0430",
            "alternativeName": null,
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043c\u0435\u043b\u043e\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2024,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7856432,
            "name": null,
            "alternativeName": "Ocean Wonders",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2023,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0431\u043e\u0435\u0432\u0438\u043a"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2023,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7856467,
            "name": null,
            "alternativeName": "Filles du Feu",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2023,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 6.1,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 62,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u0438\u0441\u0442\u043e\u0440\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2023,
                    "end": 2023
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7856415,
            "name": null,
            "alternativeName": "SEA CHANGE, a special presentation of NOVA",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 8.2,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 13,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2024,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7859946,
            "name": null,
            "alternativeName": "Untitled Novak Djokovic Series",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0441\u043f\u043e\u0440\u0442"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7857628,
            "name": null,
            "alternativeName": "Vulcanizadora",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.1,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 102,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 85,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 11,
    "pages": 107884
}
Ответ на странице 12:
{
    "docs": [
        {
            "id": 7857960,
            "name": "\u042e\u0433\u0440\u0430 \u0434\u043b\u044f \u043b\u0435\u043d\u0438\u043d\u0433\u0440\u0430\u0434\u0446\u0435\u0432",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": "\u0420\u0430\u0441\u0441\u043a\u0430\u0437 \u043e\u00a0\u0431\u044b\u0432\u0448\u0438\u0445 \u0432\u043e\u0441\u043f\u0438\u0442\u0430\u043d\u043d\u0438\u043a\u0430\u0445 \u0434\u0435\u0442\u0441\u043a\u0438\u0445 \u0434\u043e\u043c\u043e\u0432, \u044d\u0432\u0430\u043a\u0443\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0438\u0437\u00a0\u0431\u043b\u043e\u043a\u0430\u0434\u043d\u043e\u0433\u043e \u041b\u0435\u043d\u0438\u043d\u0433\u0440\u0430\u0434\u0430 \u0432\u00a0\u0425\u0430\u043d\u0442\u044b-\u041c\u0430\u043d\u0441\u0438\u0439\u0441\u043a\u0438\u0439 \u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u043e\u043a\u0440\u0443\u0433 \u0432\u00a0\u0433\u043e\u0434\u044b \u0412\u0435\u043b\u0438\u043a\u043e\u0439 \u041e\u0442\u0435\u0447\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u0432\u043e\u0439\u043d\u044b.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 19,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856468,
            "name": null,
            "alternativeName": "Les \u00e9veill\u00e9es",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2023,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.3,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 7,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856054,
            "name": null,
            "alternativeName": "Nobody Dumps My Daughter",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.9,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 105,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 88,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856431,
            "name": null,
            "alternativeName": "Tinikling",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.7,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 7,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 22,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856466,
            "name": null,
            "alternativeName": "Cheech & Chong's Last Movie",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.6,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 204,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 120,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": "r",
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856433,
            "name": null,
            "alternativeName": "Matrioshka",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 88,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u041a\u043e\u043b\u0443\u043c\u0431\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7860284,
            "name": "\u041c\u0435\u043a\u0441\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0435 \u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f",
            "alternativeName": "Al Tagriba El Mexicia",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 2.5,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 87,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 94,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10809116/1fbb5cad-efef-40ce-953b-d4acde980688/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10809116/1fbb5cad-efef-40ce-953b-d4acde980688/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                },
                {
                    "name": "\u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0415\u0433\u0438\u043f\u0435\u0442"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856410,
            "name": null,
            "alternativeName": "Andy Murray: Game Set Match",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.4,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 9,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 45,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856411,
            "name": null,
            "alternativeName": "Dongeng Sang Kancil",
            "enName": null,
            "type": "cartoon",
            "typeNumber": 3,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.7,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 183,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 99,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043c\u0443\u043b\u044c\u0442\u0444\u0438\u043b\u044c\u043c"
                },
                {
                    "name": "\u043c\u044e\u0437\u0438\u043a\u043b"
                },
                {
                    "name": "\u0444\u044d\u043d\u0442\u0435\u0437\u0438"
                },
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                },
                {
                    "name": "\u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f"
                },
                {
                    "name": "\u0441\u0435\u043c\u0435\u0439\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u041c\u0430\u043b\u0430\u0439\u0437\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856092,
            "name": null,
            "alternativeName": "Unschuldig - Der Fall Julia B.",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2023,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.7,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 77,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 180,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u043a\u0440\u0438\u043c\u0438\u043d\u0430\u043b"
                },
                {
                    "name": "\u0434\u0435\u0442\u0435\u043a\u0442\u0438\u0432"
                }
            ],
            "countries": [
                {
                    "name": "\u0413\u0435\u0440\u043c\u0430\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 12,
    "pages": 107884
}
Ответ на странице 13:
{
    "docs": [
        {
            "id": 7857641,
            "name": "\u042d\u043d\u0435\u0440\u0433\u0438\u044f \u0436\u0438\u0437\u043d\u0438",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 12,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856435,
            "name": null,
            "alternativeName": "Minghun",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 168,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 94,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u041f\u043e\u043b\u044c\u0448\u0430"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856434,
            "name": null,
            "alternativeName": "Jaspal",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.4,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 29,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 106,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u043a\u0440\u0438\u043c\u0438\u043d\u0430\u043b"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7859963,
            "name": "\u0412\u044b\u0431\u043e\u0440 \u0421\u043e\u0444\u0438\u0438",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": "\u0412\u0441\u044f \u0436\u0438\u0437\u043d\u044c \u0421\u043e\u0444\u0438\u0438 \u043f\u043e\u0441\u0432\u044f\u0449\u0435\u043d\u0430 \u0431\u0430\u043b\u0435\u0442\u0443. \u041e\u043d\u0430\u00a0\u2014\u00a0\u043f\u0440\u0438\u0440\u043e\u0436\u0434\u0451\u043d\u043d\u0430\u044f \u0430\u0440\u0442\u0438\u0441\u0442\u043a\u0430, \u0438\u00a0\u0442\u0430\u043d\u0435\u0446 \u0434\u043b\u044f\u00a0\u043d\u0435\u0451\u00a0\u2014\u00a0\u044d\u0442\u043e \u0432\u0441\u0451. \u041d\u043e\u00a0\u043a\u043e\u0433\u0434\u0430 \u0432\u0440\u0430\u0447 \u0441\u043e\u043e\u0431\u0449\u0430\u0435\u0442 \u0435\u0439\u00a0\u0448\u043e\u043a\u0438\u0440\u0443\u044e\u0449\u0443\u044e \u043d\u043e\u0432\u043e\u0441\u0442\u044c, \u043f\u0435\u0440\u0435\u0434 \u043d\u0435\u0439\u00a0\u0432\u0441\u0442\u0430\u0451\u0442 \u043c\u0443\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0432\u044b\u0431\u043e\u0440.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 5,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 12,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10809116/089e369f-df37-47fa-a02c-792d7308040d/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10809116/089e369f-df37-47fa-a02c-792d7308040d/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856494,
            "name": null,
            "alternativeName": "Anaon",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.5,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 84,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 52,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0444\u0430\u043d\u0442\u0430\u0441\u0442\u0438\u043a\u0430"
                },
                {
                    "name": "\u0444\u044d\u043d\u0442\u0435\u0437\u0438"
                },
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7856477,
            "name": null,
            "alternativeName": "Kevin Costner's the West",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7861078,
            "name": "\u0410\u0434\u0441\u043a\u0438\u0439 \u043c\u043e\u0442\u0435\u043b\u044c",
            "alternativeName": "Hell Motel",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0443\u0436\u0430\u0441\u044b"
                }
            ],
            "countries": [
                {
                    "name": "\u041a\u0430\u043d\u0430\u0434\u0430"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": 2025
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7856546,
            "name": null,
            "alternativeName": "Invisible Boys",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 8.4,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 1053,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7855663,
            "name": null,
            "alternativeName": "Horror's Greatest",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.5,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 354,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 60,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0443\u0436\u0430\u0441\u044b"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2024,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7860605,
            "name": "\u0412\u0435\u0434\u044c\u043c\u043d\u0430\u0434\u0437\u043e\u0440",
            "alternativeName": "Witch Watch",
            "type": "anime",
            "typeNumber": 4,
            "year": 2025,
            "description": "\u041f\u043e\u0441\u043b\u0435 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u0448\u043a\u043e\u043b\u044b \u043a\u043e\u043b\u0434\u043e\u0432\u0441\u043a\u0438\u0445 \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432 \u043d\u0430\u0447\u0438\u043d\u0430\u044e\u0449\u0430\u044f \u0432\u0435\u0434\u044c\u043c\u0430 \u041d\u0438\u043a\u043e \u0412\u0430\u043a\u0430\u0446\u0443\u043a\u0438 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0435\u0442\u0441\u044f \u0432\u00a0\u0440\u043e\u0434\u043d\u043e\u0439 \u0433\u043e\u0440\u043e\u0434 \u043d\u0430\u00a0\u043f\u0440\u0430\u043a\u0442\u0438\u043a\u0443. \u0412\u00a0\u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u0444\u0430\u043c\u0438\u043b\u044c\u044f\u0440\u0430 \u043e\u043d\u0430\u00a0\u0432\u044b\u0431\u0438\u0440\u0430\u0435\u0442 \u0434\u0440\u0443\u0433\u0430 \u0434\u0435\u0442\u0441\u0442\u0432\u0430 \u041c\u043e\u0440\u0438\u0445\u0438\u0442\u043e \u041e\u0442\u043e\u0433\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u0435\u043c\u043e\u043d\u043e\u043c \u043e\u043d\u0438, \u0430\u00a0\u0435\u0433\u043e \u043f\u0440\u0435\u0434\u043a\u0438 \u0441\u00a0\u0434\u0430\u0432\u043d\u0438\u0445 \u0432\u0440\u0435\u043c\u0451\u043d \u0441\u043b\u0443\u0436\u0438\u043b\u0438 \u0432\u0435\u0434\u044c\u043c\u0430\u043c. \u0421\u0430\u043c\u00a0\u041c\u043e\u0440\u0438\u0445\u0438\u0442\u043e \u043d\u0435\u00a0\u0441\u0438\u043b\u044c\u043d\u043e \u0440\u0430\u0434\u00a0\u043f\u043e\u0434\u043e\u0431\u043d\u044b\u043c \u043e\u0431\u0441\u0442\u043e\u044f\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430\u043c, \u043d\u043e\u00a0\u0432\u044b\u0431\u043e\u0440\u0430 \u0443\u00a0\u043d\u0435\u0433\u043e \u043d\u0435\u0442, \u0432\u0435\u0434\u044c \u0435\u0441\u043b\u0438 \u043e\u043d\u00a0\u043e\u0441\u043b\u0443\u0448\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u0438\u043a\u0430\u0437\u0430 \u0432\u0435\u0434\u044c\u043c\u044b, \u0442\u043e\u00a0\u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u043d\u0435\u00a0\u0441\u0430\u043c\u044b\u0435 \u043f\u0440\u0438\u044f\u0442\u043d\u044b\u0435. \u041c\u0430\u043b\u043e \u0442\u043e\u0433\u043e, \u0442\u0435\u043f\u0435\u0440\u044c \u043f\u0430\u0440\u043d\u044e \u043f\u0440\u0435\u0434\u0441\u0442\u043e\u0438\u0442 \u043d\u0435\u00a0\u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u0434\u0447\u0438\u043d\u044f\u0442\u044c\u0441\u044f \u041d\u0438\u043a\u043e, \u043d\u043e\u00a0\u0438 \u0436\u0438\u0442\u044c \u0441\u00a0\u043d\u0435\u0439 \u043f\u043e\u0434\u00a0\u043e\u0434\u043d\u043e\u0439 \u043a\u0440\u044b\u0448\u0435\u0439.",
            "shortDescription": "\u041f\u043e\u0442\u043e\u043c\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043e\u0433\u0440 \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0444\u0430\u043c\u0438\u043b\u044c\u044f\u0440\u043e\u043c \u044e\u043d\u043e\u0439 \u0447\u0430\u0440\u043e\u0434\u0435\u0439\u043a\u0438. \u041e\u0441\u0442\u0440\u043e\u0443\u043c\u043d\u043e\u0435 \u0430\u043d\u0438\u043c\u0435 \u043e\u0442 \u0440\u0435\u0436\u0438\u0441\u0441\u0435\u0440\u0430 \u00ab\u0422\u0435\u043c\u043d\u043e\u0433\u043e \u0441\u043e\u0431\u0440\u0430\u043d\u0438\u044f\u00bb",
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.7,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 56,
                "imdb": 305,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 24,
            "ratingMpaa": null,
            "ageRating": 18,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10703959/9ab566e3-bcbc-4033-b7d0-97398f8d0773/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10703959/9ab566e3-bcbc-4033-b7d0-97398f8d0773/x1000"
            },
            "genres": [
                {
                    "name": "\u0430\u043d\u0438\u043c\u0435"
                },
                {
                    "name": "\u043c\u0443\u043b\u044c\u0442\u0444\u0438\u043b\u044c\u043c"
                },
                {
                    "name": "\u0444\u044d\u043d\u0442\u0435\u0437\u0438"
                },
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u042f\u043f\u043e\u043d\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false,
            "backdrop": {
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-ott-images/1652588/2a00000196a915c36ca498931a2a904447a8/x1000",
                "url": "https://image.openmoviedb.com/kinopoisk-ott-images/1652588/2a00000196a915c36ca498931a2a904447a8/orig"
            }
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 13,
    "pages": 107884
}
Ответ на странице 14:
{
    "docs": [
        {
            "id": 7861077,
            "name": "\u041c\u0430\u0433\u0435\u043b\u043b\u0430\u043d",
            "alternativeName": "Magalhaes",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 165,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0431\u0438\u043e\u0433\u0440\u0430\u0444\u0438\u044f"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u043c\u0435\u043b\u043e\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0438\u043b\u0438\u043f\u043f\u0438\u043d\u044b"
                },
                {
                    "name": "\u0418\u0441\u043f\u0430\u043d\u0438\u044f"
                },
                {
                    "name": "\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u0438\u044f"
                },
                {
                    "name": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856074,
            "name": null,
            "alternativeName": "The Circle",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "pre-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                }
            ],
            "countries": [
                {
                    "name": "\u041a\u0430\u043d\u0430\u0434\u0430"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7860601,
            "name": "\u0411\u043e\u0435\u0432\u044b\u0435 \u043b\u0430\u0437\u0435\u0440\u044b. \u041e\u0445\u043e\u0442\u0430 \u0437\u0430 \u0441\u0443\u043f\u0435\u0440\u043e\u0440\u0443\u0436\u0438\u0435\u043c",
            "alternativeName": null,
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": "\u0421\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u0435\u043b\u0438 \u0448\u0442\u0440\u0438\u0445-\u043a\u043e\u0434\u043e\u0432 \u0438\u00a0\u043f\u0440\u0438\u043d\u0442\u0435\u0440\u044b, \u0446\u0435\u043b\u0435\u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438 \u0438\u00a0\u0434\u0430\u043b\u044c\u043d\u043e\u043c\u0435\u0440\u044b, \u0445\u0438\u0440\u0443\u0440\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u043a\u0430\u043b\u044c\u043f\u0435\u043b\u0438 \u043d\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u044f \u0438\u00a0\u0434\u0430\u0436\u0435 \u0445\u043e\u043b\u043e\u0434\u043d\u044b\u0439 \u0442\u0435\u0440\u043c\u043e\u044f\u0434\u0435\u0440\u043d\u044b\u0439 \u0441\u0438\u043d\u0442\u0435\u0437. \u0412\u0441\u0435\u00a0\u044d\u0442\u043e \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043f\u0440\u0438\u00a0\u043f\u043e\u043c\u043e\u0449\u0438 \u043b\u0430\u0437\u0435\u0440\u0430\u00a0\u2014\u00a0\u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0435\u0442\u0435\u043d\u0438\u044f \u0433\u0435\u043d\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u043e\u0432\u0435\u0442\u0441\u043a\u0438\u0445 \u0444\u0438\u0437\u0438\u043a\u043e\u0432 \u0410\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440\u0430 \u041f\u0440\u043e\u0445\u043e\u0440\u043e\u0432\u0430 \u0438\u00a0\u041d\u0438\u043a\u043e\u043b\u0430\u044f \u0411\u0430\u0441\u043e\u0432\u0430. \u0412\u00a0\u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435 1950-\u0445 \u0433\u043e\u0434\u043e\u0432 \u043e\u043d\u0438\u00a0\u0441\u043a\u043e\u043d\u0441\u0442\u0440\u0443\u0438\u0440\u043e\u0432\u0430\u043b\u0438 \u043e\u043f\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u043a\u0432\u0430\u043d\u0442\u043e\u0432\u044b\u0439 \u0433\u0435\u043d\u0435\u0440\u0430\u0442\u043e\u0440, \u043f\u043e\u0441\u043b\u0443\u0436\u0438\u0432\u0448\u0438\u0439 \u043e\u0441\u043d\u043e\u0432\u043e\u0439 \u0434\u043b\u044f\u00a0\u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0431\u043e\u0435\u0432\u044b\u0445 \u043b\u0430\u0437\u0435\u0440\u043e\u0432.",
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 48,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": 2025
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7856072,
            "name": null,
            "alternativeName": "Riqu\u00edsimos, por cierto",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.6,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 19,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 22,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u041c\u0435\u043a\u0441\u0438\u043a\u0430"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7856056,
            "name": null,
            "alternativeName": "Formula E: Driver",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 2,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0441\u043f\u043e\u0440\u0442"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": 2025
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7859200,
            "name": null,
            "alternativeName": "Pigcasso: Million Dollar Pig",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 60,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u042e\u0410\u0420"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856531,
            "name": null,
            "alternativeName": "Race for the Crown",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.7,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 179,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 45,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0441\u043f\u043e\u0440\u0442"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7859961,
            "name": "\u041d\u0435 \u043f\u0430\u0440\u043a\u043e\u0432\u0430\u0442\u044c\u0441\u044f",
            "alternativeName": "Juchageumji",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": "\u0418\u0437-\u0437\u0430 \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e\u0433\u043e \u0441\u0442\u0440\u0435\u0441\u0441\u0430 \u043d\u0430\u00a0\u0440\u0430\u0431\u043e\u0442\u0435 \u0401\u043d-\u0445\u0438 \u043d\u0435\u00a0\u0432\u044b\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u0438\u00a0\u0432\u0441\u0442\u0443\u043f\u0430\u0435\u0442 \u0432\u00a0\u043f\u0435\u0440\u0435\u043f\u0430\u043b\u043a\u0443 \u0441\u043e\u00a0\u0441\u043b\u0443\u0447\u0430\u0439\u043d\u044b\u043c \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u043e\u043c \u043d\u0430\u00a0\u043f\u0430\u0440\u043a\u043e\u0432\u043a\u0435, \u0447\u0442\u043e\u00a0\u043f\u0440\u0438\u0432\u043e\u0434\u0438\u0442 \u043a\u00a0\u043d\u0435\u043f\u0440\u0435\u0434\u0441\u043a\u0430\u0437\u0443\u0435\u043c\u044b\u043c \u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f\u043c.",
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 91,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10671298/6c6ab1a3-0110-40d8-803b-954a10889aa0/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10671298/6c6ab1a3-0110-40d8-803b-954a10889aa0/x1000"
            },
            "genres": [
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                }
            ],
            "countries": [
                {
                    "name": "\u041a\u043e\u0440\u0435\u044f \u042e\u0436\u043d\u0430\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7859202,
            "name": null,
            "alternativeName": "Forgiveness: A Complicated Grace",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "post-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 120,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u042e\u0410\u0420"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7859573,
            "name": null,
            "alternativeName": "Untitled Romantic Thriller Keanu Reeves/Sandra Bullock Amazon MGM Studios Project",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "pre-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                },
                {
                    "name": "\u043c\u0435\u043b\u043e\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 14,
    "pages": 107884
}
Ответ на странице 15:
{
    "docs": [
        {
            "id": 7860604,
            "name": "\u041e\u0434\u043d\u0438\u043c \u0434\u044b\u0445\u0430\u043d\u0438\u0435\u043c \u0441 \u041f\u043e\u0431\u0435\u0434\u043e\u0439",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": "\u0421\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u044c \u0442\u0430\u043d\u043a\u0430 \u0422-34 \u041c\u0438\u0445\u0430\u0438\u043b \u041a\u043e\u0448\u043a\u0438\u043d, \u0430\u043b\u044c\u043f\u0438\u043d\u0438\u0441\u0442 \u041c\u0438\u0445\u0430\u0438\u043b \u0411\u043e\u0431\u0440\u043e\u0432, \u043e\u043b\u0438\u043c\u043f\u0438\u0439\u0441\u043a\u0438\u0439 \u0447\u0435\u043c\u043f\u0438\u043e\u043d \u042e\u0440\u0438\u0439 \u0422\u044e\u043a\u0430\u043b\u043e\u0432, \u0441\u043a\u0443\u043b\u044c\u043f\u0442\u043e\u0440 \u041c\u0438\u0445\u0430\u0438\u043b \u0410\u043d\u0438\u043a\u0443\u0448\u0438\u043d, \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0442\u043e\u0440 \u0412\u0435\u043d\u0438\u0430\u043c\u0438\u043d \u0411\u0430\u0441\u043d\u0435\u0440 \u043d\u0435\u00a0\u0441\u043e\u0432\u0435\u0440\u0448\u0430\u043b\u0438 \u043f\u043e\u043a\u0430\u0437\u043d\u044b\u0445 \u043f\u043e\u0434\u0432\u0438\u0433\u043e\u0432, \u0430\u00a0\u043f\u0440\u043e\u0441\u0442\u043e \u0434\u0435\u043b\u0430\u043b\u0438 \u0441\u0432\u043e\u0435 \u0434\u0435\u043b\u043e, \u0434\u0435\u043d\u044c \u0437\u0430\u00a0\u0434\u043d\u0435\u043c \u043f\u0440\u0438\u0431\u043b\u0438\u0436\u0430\u044f \u043f\u043e\u0431\u0435\u0434\u0443 \u0432\u00a0\u0412\u0435\u043b\u0438\u043a\u043e\u0439 \u041e\u0442\u0435\u0447\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u0432\u043e\u0439\u043d\u0435. \u0418\u0445\u00a0\u0441\u0443\u0434\u044c\u0431\u044b, \u0441\u043b\u043e\u0432\u043d\u043e \u043d\u0438\u0442\u0438, \u0441\u043f\u043b\u0435\u043b\u0438\u0441\u044c \u0432\u00a0\u0435\u0434\u0438\u043d\u0443\u044e \u0438\u0441\u0442\u043e\u0440\u0438\u044e \u043c\u0443\u0436\u0435\u0441\u0442\u0432\u0430, \u0442\u0430\u043b\u0430\u043d\u0442\u0430 \u0438\u00a0\u043d\u0435\u0441\u0433\u0438\u0431\u0430\u0435\u043c\u043e\u0439 \u0432\u043e\u043b\u0438.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 7,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 60,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 12,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10671298/f79caf49-3b6f-4a3c-b78d-5f98235cb59c/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10671298/f79caf49-3b6f-4a3c-b78d-5f98235cb59c/x1000"
            },
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0438\u0441\u0442\u043e\u0440\u0438\u044f"
                },
                {
                    "name": "\u0432\u043e\u0435\u043d\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": true,
            "backdrop": {
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-ott-images/1648503/2a00000196a4f2b5195411b15215791b37d4/x1000",
                "url": "https://image.openmoviedb.com/kinopoisk-ott-images/1648503/2a00000196a4f2b5195411b15215791b37d4/orig"
            }
        },
        {
            "id": 7859199,
            "name": null,
            "alternativeName": "Code 3",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 104,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10592371/145d8877-8cf1-4bf0-914c-6c78cfd4bd92/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10592371/145d8877-8cf1-4bf0-914c-6c78cfd4bd92/x1000"
            },
            "genres": [
                {
                    "name": "\u0431\u043e\u0435\u0432\u0438\u043a"
                },
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7857926,
            "name": "\u0412 \u0430\u0434\u0443 \u043c\u0435\u0441\u0442 \u043d\u0435\u0442",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856489,
            "name": null,
            "alternativeName": "The Last Gunfight",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 98,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": "r",
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0431\u043e\u0435\u0432\u0438\u043a"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7859203,
            "name": null,
            "alternativeName": "Cang mang de tian ya shi wo de ai",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 108,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/4483445/88bd4181-e14f-465e-91fb-b1213d136c00/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/4483445/88bd4181-e14f-465e-91fb-b1213d136c00/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u041a\u0438\u0442\u0430\u0439"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856476,
            "name": null,
            "alternativeName": "Thandel",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.6,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 3601,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 152,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0431\u043e\u0435\u0432\u0438\u043a"
                },
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                },
                {
                    "name": "\u043c\u0435\u043b\u043e\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0418\u043d\u0434\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856095,
            "name": null,
            "alternativeName": "Iliza Shlesinger: A Different Animal",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 2,
                "imdb": 453,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 60,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7857935,
            "name": null,
            "alternativeName": "The Mosquito Bowl: A Game of Life and Death in World War II",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "pre-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0432\u043e\u0435\u043d\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7855666,
            "name": null,
            "alternativeName": "Nine Little Indians",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "post-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856053,
            "name": null,
            "alternativeName": "Salvable",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 5.1,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 38,
                "imdb": 421,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 101,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": "r",
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u043a\u0440\u0438\u043c\u0438\u043d\u0430\u043b"
                }
            ],
            "countries": [
                {
                    "name": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 15,
    "pages": 107884
}
Ответ на странице 16:
{
    "docs": [
        {
            "id": 7856492,
            "name": null,
            "alternativeName": "Aldeas-A New Story",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "pre-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856493,
            "name": null,
            "alternativeName": "Road House 2",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "pre-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0431\u043e\u0435\u0432\u0438\u043a"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7859201,
            "name": null,
            "alternativeName": "The Heat - Chris van Heerden Story",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "pre-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u042e\u0410\u0420"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856093,
            "name": null,
            "alternativeName": "Vincent Lindon - Coeur sanglant",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.4,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 52,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 83,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0431\u0438\u043e\u0433\u0440\u0430\u0444\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856491,
            "name": null,
            "alternativeName": "Jewel Thief: The Heist Begins",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 4.1,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 2975,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 116,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0431\u043e\u0435\u0432\u0438\u043a"
                },
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                },
                {
                    "name": "\u043f\u0440\u0438\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0418\u043d\u0434\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7855679,
            "name": null,
            "alternativeName": "Yanuni",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0413\u0435\u0440\u043c\u0430\u043d\u0438\u044f"
                },
                {
                    "name": "\u0411\u0440\u0430\u0437\u0438\u043b\u0438\u044f"
                },
                {
                    "name": "\u041a\u0430\u043d\u0430\u0434\u0430"
                },
                {
                    "name": "\u0421\u0428\u0410"
                },
                {
                    "name": "\u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7860269,
            "name": "\u041f\u0440\u043e\u0441\u0442\u0438 \u043c\u043e\u044e \u043e\u0448\u0438\u0431\u043a\u0443",
            "alternativeName": "Bhool Chuk Maaf",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": "\u0413\u0430\u043d\u0433\u0441\u0442\u0435\u0440 \u043f\u044b\u0442\u0430\u0435\u0442\u0441\u044f \u0438\u0437\u0431\u0435\u0436\u0430\u0442\u044c \u043d\u0430\u0441\u0438\u043b\u0438\u044f \u0438\u00a0\u0432\u0435\u0441\u0442\u0438 \u043c\u0438\u0440\u043d\u0443\u044e \u0436\u0438\u0437\u043d\u044c, \u0434\u0430\u0432\u00a0\u043a\u043b\u044f\u0442\u0432\u0443 \u0441\u0432\u043e\u0435\u0439 \u0436\u0435\u043d\u0435.",
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 140,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 12,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10953618/b55035b3-281e-47b7-b2f9-a84e1a96e148/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10953618/b55035b3-281e-47b7-b2f9-a84e1a96e148/x1000"
            },
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0418\u043d\u0434\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false,
            "backdrop": {
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-ott-images/1531675/2a00000196a4f2190f4c4545fd80961c09dd/x1000",
                "url": "https://image.openmoviedb.com/kinopoisk-ott-images/1531675/2a00000196a4f2190f4c4545fd80961c09dd/orig"
            }
        },
        {
            "id": 7856073,
            "name": null,
            "alternativeName": "The Twister: Caught in the Storm",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.8,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 3555,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 89,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7855665,
            "name": null,
            "alternativeName": "Blake & Mortimer: The Yellow M",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "announced",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0431\u043e\u0435\u0432\u0438\u043a"
                },
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                },
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0411\u0435\u043b\u044c\u0433\u0438\u044f"
                },
                {
                    "name": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
                },
                {
                    "name": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7855664,
            "name": "\u041c\u0443\u0441\u0430: \u0421\u043e\u0431\u0435\u0441\u0435\u0434\u043d\u0438\u043a \u0410\u043b\u043b\u0430\u0445\u0430. \u041d\u0430 \u0440\u0430\u0441\u0441\u0432\u0435\u0442\u0435",
            "alternativeName": "Musa Kalimullah: Be Vaght-e Tolue",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 5.9,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 208,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 140,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u0431\u0438\u043e\u0433\u0440\u0430\u0444\u0438\u044f"
                },
                {
                    "name": "\u0438\u0441\u0442\u043e\u0440\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0418\u0440\u0430\u043d"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 16,
    "pages": 107884
}
Ответ на странице 17:
{
    "docs": [
        {
            "id": 7857963,
            "name": "\u0422\u0430\u0439\u043d\u0430\u044f \u0434\u0432\u0435\u0440\u044c",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0438\u0441\u0442\u043e\u0440\u0438\u044f"
                },
                {
                    "name": "\u0444\u044d\u043d\u0442\u0435\u0437\u0438"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7855748,
            "name": null,
            "alternativeName": "Untitled Heartstopper Film",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "pre-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "countries": [
                {
                    "name": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7856055,
            "name": null,
            "alternativeName": "Les Mis\u00e9rables",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "pre-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u0438\u0441\u0442\u043e\u0440\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 6706157,
            "name": "\u0416\u0432\u0430\u043d\u0435\u0446\u043a\u0438\u0439",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": "\u0418\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0435 \u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0435 \u0430\u0440\u0442\u0438\u0441\u0442\u044b \u0434\u0430\u0440\u044f\u0442 \u043d\u043e\u0432\u0443\u044e \u0436\u0438\u0437\u043d\u044c \u043b\u0443\u0447\u0448\u0438\u043c \u043c\u043e\u043d\u043e\u043b\u043e\u0433\u0430\u043c \u041c\u0438\u0445\u0430\u0438\u043b\u0430 \u0416\u0432\u0430\u043d\u0435\u0446\u043a\u043e\u0433\u043e. \u0417\u0440\u0438\u0442\u0435\u043b\u0435\u0439 \u0436\u0434\u0443\u0442 \u043e\u0442\u043a\u0440\u043e\u0432\u0435\u043d\u0438\u044f \u043e\u00a0\u0416\u0432\u0430\u043d\u0435\u0446\u043a\u043e\u043c, \u0440\u0435\u043f\u0435\u0442\u0438\u0446\u0438\u0438 \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u043d\u044b\u0445 \u043d\u043e\u043c\u0435\u0440\u043e\u0432 \u0438\u00a0\u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u043a\u0430\u0434\u0440\u044b, \u0441\u043d\u044f\u0442\u044b\u0435 \u0432\u00a0\u0435\u0433\u043e \u0434\u043e\u043c\u0435, \u0430\u00a0\u0442\u0430\u043a\u0436\u0435 \u0440\u0430\u043d\u0435\u0435 \u043d\u0435\u00a0\u0438\u0437\u0434\u0430\u043d\u043d\u044b\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 8,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 90,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 16,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10703859/4eb8546b-d913-495b-b901-596c50d015d2/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10703859/4eb8546b-d913-495b-b901-596c50d015d2/x1000"
            },
            "backdrop": {
                "url": "https://image.openmoviedb.com/kinopoisk-ott-images/2385704/2a000001955b2d385d6c6f8c0500c5b6ac0e/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-ott-images/2385704/2a000001955b2d385d6c6f8c0500c5b6ac0e/x1000"
            },
            "genres": [
                {
                    "name": "\u043a\u043e\u043d\u0446\u0435\u0440\u0442"
                },
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                },
                {
                    "name": "\u0431\u0438\u043e\u0433\u0440\u0430\u0444\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7790084,
            "name": "\u0413\u043e\u0440\u044f\u0447\u0435\u0435 \u043c\u0435\u0441\u0442\u0435\u0447\u043a\u043e",
            "alternativeName": "Hot Spot",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 8,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 2,
                "imdb": 666,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 55,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10835644/16471610-c146-4456-a14b-662be8623a6e/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10835644/16471610-c146-4456-a14b-662be8623a6e/x1000"
            },
            "genres": [
                {
                    "name": "\u0444\u0430\u043d\u0442\u0430\u0441\u0442\u0438\u043a\u0430"
                },
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u042f\u043f\u043e\u043d\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": 2025
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 5199417,
            "name": null,
            "alternativeName": "Wild China with Ray Mears",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2021,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 7.5,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 34,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": 30,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
                },
                {
                    "name": "\u041a\u0438\u0442\u0430\u0439"
                }
            ],
            "releaseYears": [
                {
                    "start": 2021,
                    "end": 2021
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7789714,
            "name": null,
            "alternativeName": "Unknown Belize",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2023,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0411\u0435\u043b\u0438\u0437"
                }
            ],
            "releaseYears": [
                {
                    "start": 2023,
                    "end": 2023
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7789690,
            "name": null,
            "alternativeName": "Very Superstitious with George Lopez",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2018,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.6,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 24,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": 30,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u0422\u0412"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2018,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7790911,
            "name": "\u0421\u0435\u043a\u0440\u0435\u0442\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u044b \u0445\u0440\u0430\u043d\u0438\u043c",
            "alternativeName": "Reservatet",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "post-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 120
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u043a\u0440\u0438\u043c\u0438\u043d\u0430\u043b"
                }
            ],
            "countries": [
                {
                    "name": "\u0414\u0430\u043d\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": 2025
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7788321,
            "name": null,
            "alternativeName": "Murder on the Inca Trail",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 6.2,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 56,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u0422\u0412"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u043a\u0440\u0438\u043c\u0438\u043d\u0430\u043b"
                },
                {
                    "name": "\u0434\u0435\u0442\u0435\u043a\u0442\u0438\u0432"
                }
            ],
            "countries": [
                {
                    "name": "\u0413\u0435\u0440\u043c\u0430\u043d\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2024,
                    "end": 2024
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 17,
    "pages": 107884
}
Ответ на странице 18:
{
    "docs": [
        {
            "id": 7792292,
            "name": "\u041d\u0430 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u043d\u0430\u0447\u0430\u043b\u0430\u0445",
            "alternativeName": "Peurobono",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": "\u0427\u0435\u0441\u0442\u043e\u043b\u044e\u0431\u0438\u0432\u044b\u0439 \u0441\u0443\u0434\u044c\u044f \u0432\u044b\u043d\u0443\u0436\u0434\u0435\u043d \u0443\u0432\u043e\u043b\u0438\u0442\u044c\u0441\u044f \u0438\u00a0\u0441\u0442\u0430\u0442\u044c \u0430\u0434\u0432\u043e\u043a\u0430\u0442\u043e\u043c \u0432\u00a0\u043d\u0435\u043a\u043e\u043c\u043c\u0435\u0440\u0447\u0435\u0441\u043a\u043e\u0439 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438.",
            "shortDescription": null,
            "status": "filming",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u041a\u043e\u0440\u0435\u044f \u042e\u0436\u043d\u0430\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7789709,
            "name": null,
            "alternativeName": "The Emerald Isles with Ardal O'Hanlon",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 8.4,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 25,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": 60,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2024,
                    "end": 2024
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7790096,
            "name": "\u0412\u043d\u0435 \u044e\u0440\u0438\u0441\u0434\u0438\u043a\u0446\u0438\u0438",
            "alternativeName": "Exterritorial",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": "\u0421\u043e\u043b\u0434\u0430\u0442 \u0441\u043f\u0435\u0446\u043d\u0430\u0437\u0430 \u0421\u0430\u0440\u0430 \u043f\u043e\u0441\u0435\u0449\u0430\u0435\u0442 \u043a\u043e\u043d\u0441\u0443\u043b\u044c\u0441\u0442\u0432\u043e \u0421\u0428\u0410\u00a0\u0432\u043e \u0424\u0440\u0430\u043d\u043a\u0444\u0443\u0440\u0442\u0435 \u0441\u00a0\u043c\u0430\u043b\u0435\u043d\u044c\u043a\u0438\u043c \u0441\u044b\u043d\u043e\u043c, \u043d\u043e\u00a0\u0440\u0435\u0431\u0451\u043d\u043e\u043a \u0432\u043d\u0435\u0437\u0430\u043f\u043d\u043e \u043f\u0440\u043e\u043f\u0430\u0434\u0430\u0435\u0442. \u0411\u043e\u043b\u0435\u0435 \u0442\u043e\u0433\u043e, \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u043a\u0438 \u043a\u043e\u043d\u0441\u0443\u043b\u044c\u0441\u0442\u0432\u0430 \u043d\u0435\u00a0\u043c\u043e\u0433\u0443\u0442 \u0432\u0441\u043f\u043e\u043c\u043d\u0438\u0442\u044c, \u0431\u044b\u043b\u00a0\u043b\u0438 \u043c\u0430\u043b\u044c\u0447\u0438\u043a \u0432\u00a0\u0437\u0434\u0430\u043d\u0438\u0438.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 6.025,
                "imdb": 5.8,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": null
            },
            "votes": {
                "kp": 215,
                "imdb": 5725,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 109,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0431\u043e\u0435\u0432\u0438\u043a"
                },
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                },
                {
                    "name": "\u0434\u0435\u0442\u0435\u043a\u0442\u0438\u0432"
                }
            ],
            "countries": [
                {
                    "name": "\u0413\u0435\u0440\u043c\u0430\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7789374,
            "name": "\u041c\u0435\u043b\u043a\u0430\u044f \u0440\u044b\u0431\u0451\u0448\u043a\u0430",
            "alternativeName": "Janchaengi",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2023,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.3,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 21,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 95,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/4486454/6eb61a52-ea2a-44c9-96fe-680e990ef5b1/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/4486454/6eb61a52-ea2a-44c9-96fe-680e990ef5b1/x1000"
            },
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u041a\u043e\u0440\u0435\u044f \u042e\u0436\u043d\u0430\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7789758,
            "name": null,
            "alternativeName": "Maid in the Middle",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2020,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 97,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 18,
            "genres": [
                {
                    "name": "\u0434\u043b\u044f \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7789364,
            "name": "\u0412\u0440\u0435\u043c\u0435\u043d\u0430 \u0433\u043e\u0434\u0430",
            "alternativeName": "The Four Seasons",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 7.367,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": null
            },
            "votes": {
                "kp": 230,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 1,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10703859/0a11afcc-d872-4d1d-8a10-77bd589c07bb/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10703859/0a11afcc-d872-4d1d-8a10-77bd589c07bb/x1000"
            },
            "genres": [
                {
                    "name": "\u043c\u0435\u043b\u043e\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": 2025
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7790910,
            "name": "\u0421\u0442\u0430\u0432\u043a\u0430",
            "alternativeName": "Bet",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 138
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/4716873/eb8b4fac-c540-4bac-a09a-91307333cf3c/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/4716873/eb8b4fac-c540-4bac-a09a-91307333cf3c/x1000"
            },
            "genres": [
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u043a\u0440\u0438\u043c\u0438\u043d\u0430\u043b"
                },
                {
                    "name": "\u0434\u0435\u0442\u0435\u043a\u0442\u0438\u0432"
                }
            ],
            "countries": [
                {
                    "name": "\u041a\u0430\u043d\u0430\u0434\u0430"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7790098,
            "name": null,
            "alternativeName": "Kivun ja ilon ty\u00f6",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.7,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 15,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 85,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0438\u043d\u043b\u044f\u043d\u0434\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 978015,
            "name": null,
            "alternativeName": "The Legend of William Tell",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2006,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 5.1,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 14,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 86,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0441\u0435\u043c\u0435\u0439\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 556304,
            "name": null,
            "alternativeName": "Tarmul n-are sf\u00e2rsit",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 1962,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.5,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 48,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 73,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043c\u0435\u043b\u043e\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u0443\u043c\u044b\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 18,
    "pages": 107884
}
Ответ на странице 19:
{
    "docs": [
        {
            "id": 7788320,
            "name": null,
            "alternativeName": "Chaplin et les temps modernes: La voie du silence",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 8.7,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 23,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 54,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0431\u0438\u043e\u0433\u0440\u0430\u0444\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 5140820,
            "name": null,
            "alternativeName": "Wonders of the Celtic Deep",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2021,
            "description": null,
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 7.5,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 17,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": 240,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2021,
                    "end": 2022
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7789746,
            "name": null,
            "alternativeName": "Songkhram Song Duan",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "post-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10592371/cbcd22a7-725b-4f20-8219-4f536a4fde81/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10592371/cbcd22a7-725b-4f20-8219-4f536a4fde81/x1000"
            },
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0422\u0430\u0438\u043b\u0430\u043d\u0434"
                }
            ],
            "releaseYears": [
                {
                    "start": 2025,
                    "end": 2025
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7787999,
            "name": null,
            "alternativeName": "Plan A - Die j\u00fcdischen R\u00e4cher",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2021,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 44,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0413\u0435\u0440\u043c\u0430\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7789727,
            "name": null,
            "alternativeName": "Following the Music: On the Road with the California Guitar Trio",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2004,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 62,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7790099,
            "name": null,
            "alternativeName": "Tenung",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": "post-production",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10671298/f6c366e8-1a57-45bb-9aab-56fce5904fe6/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10671298/f6c366e8-1a57-45bb-9aab-56fce5904fe6/x1000"
            },
            "genres": [
                {
                    "name": "\u0443\u0436\u0430\u0441\u044b"
                }
            ],
            "countries": [
                {
                    "name": "\u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7791628,
            "name": "\u0418\u0434\u0435\u0430\u043b\u044c\u043d\u0430\u044f \u0440\u0430\u0431\u043e\u0442\u0430",
            "alternativeName": "Kkulalba",
            "type": "tv-series",
            "typeNumber": 2,
            "year": null,
            "description": null,
            "shortDescription": null,
            "status": "filming",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u043c\u0435\u0434\u0438\u044f"
                },
                {
                    "name": "\u0443\u0436\u0430\u0441\u044b"
                }
            ],
            "countries": [
                {
                    "name": "\u041a\u043e\u0440\u0435\u044f \u042e\u0436\u043d\u0430\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": null,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7784977,
            "name": null,
            "alternativeName": "Ground Zero",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 7.9,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 1,
                "imdb": 4920,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 134,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0431\u043e\u0435\u0432\u0438\u043a"
                },
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u0438\u0441\u0442\u043e\u0440\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u0418\u043d\u0434\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7787998,
            "name": "\u0422\u0438\u0445\u043e\u0435 \u043c\u0430\u0442\u0435\u0440\u0438\u043d\u0441\u0442\u0432\u043e",
            "alternativeName": null,
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2025,
            "description": "\u041e\u0431 \u0443\u0434\u0438\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0436\u0435\u043d\u0449\u0438\u043d\u0435\u00a0\u2014\u00a0\u041b\u044e\u0431\u043e\u0432\u0438 \u0421\u0430\u0435\u0442\u043e\u0432\u043e\u0439, \u043a\u043e\u0442\u043e\u0440\u0430\u044f, \u043d\u0435\u0441\u043c\u043e\u0442\u0440\u044f \u043d\u0430\u00a0\u0441\u0432\u043e\u044e \u0433\u043b\u0443\u0445\u043e\u0442\u0443, \u0441\u043e\u0437\u0434\u0430\u043b\u0430 \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u0443\u044e \u0441\u0435\u043c\u044c\u044e, \u043f\u0440\u0438\u043d\u044f\u0432 \u043d\u0430\u00a0\u0432\u043e\u0441\u043f\u0438\u0442\u0430\u043d\u0438\u0435 \u0432\u043e\u0441\u0435\u043c\u044c \u0433\u043b\u0443\u0445\u0438\u0445 \u0434\u0435\u0442\u0435\u0439.",
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 12,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7787997,
            "name": null,
            "alternativeName": "Ick",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2024,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 5.6,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 204,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 87,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0443\u0436\u0430\u0441\u044b"
                },
                {
                    "name": "\u0444\u0430\u043d\u0442\u0430\u0441\u0442\u0438\u043a\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                },
                {
                    "name": "\u041e\u0410\u042d"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 19,
    "pages": 107884
}
Ответ на странице 20:
{
    "docs": [
        {
            "id": 1421104,
            "name": null,
            "alternativeName": "Lene Marie oder Das wahre Gesicht der Anorexie",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2020,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 8.6,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 5,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 58,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439"
                },
                {
                    "name": "\u0431\u0438\u043e\u0433\u0440\u0430\u0444\u0438\u044f"
                }
            ],
            "countries": [
                {
                    "name": "\u041d\u043e\u0440\u0432\u0435\u0433\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7784032,
            "name": "\u042f \u043f\u043e\u043c\u043e\u0433\u0443",
            "alternativeName": null,
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2024,
            "description": "\u0422\u0430\u0442\u044c\u044f\u043d\u0430 \u0410\u0440\u0445\u0438\u043f\u043e\u0432\u0430\u00a0\u2014\u00a0\u0432\u0435\u0434\u0443\u0449\u0438\u0439 \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u0438\u0441\u0442 \u0432\u00a0\u0426\u0435\u043d\u0442\u0440\u0435 \u043f\u0441\u0438\u0445\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u043f\u043e\u043c\u043e\u0449\u0438. \u041d\u0430\u00a0\u0440\u0430\u0431\u043e\u0442\u0435 \u0435\u0435\u00a0\u043e\u0447\u0435\u043d\u044c \u0446\u0435\u043d\u044f\u0442 \u0438\u00a0\u0441\u0442\u0430\u0432\u044f\u0442 \u0432\u00a0\u043f\u0440\u0438\u043c\u0435\u0440 \u043c\u043e\u043b\u043e\u0434\u044b\u043c. \u041d\u043e\u00a0\u0441\u0430\u043c\u0430 \u0422\u0430\u0442\u044c\u044f\u043d\u0430, \u043a\u0430\u043a\u00a0\u00ab\u0441\u0430\u043f\u043e\u0436\u043d\u0438\u043a \u0431\u0435\u0437\u00a0\u0441\u0430\u043f\u043e\u0433\u00bb: \u043e\u043d\u0430\u00a0\u043b\u0435\u0433\u043a\u043e \u0440\u0435\u0448\u0430\u0435\u0442 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0434\u0440\u0443\u0433\u0438\u0445 \u043b\u044e\u0434\u0435\u0439, \u043d\u043e\u00a0\u0441\u043e \u0441\u0432\u043e\u0435\u0439 \u0441\u0435\u043c\u044c\u0435\u0439 \u0440\u0430\u0437\u043e\u0431\u0440\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u00a0\u043c\u043e\u0436\u0435\u0442. \u0414\u0435\u0441\u043f\u043e\u0442\u0438\u0447\u043d\u0430\u044f \u043c\u0430\u0442\u044c \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442 \u0435\u0439\u00a0\u043d\u0430 \u043d\u0435\u0440\u0432\u044b. \u0421\u044b\u043d-\u043f\u043e\u0434\u0440\u043e\u0441\u0442\u043e\u043a \u0441\u00a0\u043d\u0435\u0439 \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043d\u0435\u00a0\u043e\u0431\u0449\u0430\u0435\u0442\u0441\u044f. \u0410\u00a0\u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u043f\u043e\u0434\u0440\u0443\u0433\u0430 \u0412\u0430\u043b\u044f \u0437\u0430\u0432\u0435\u0440\u044f\u0435\u0442: \u043a\u0430\u043a\u00a0\u0442\u043e\u043b\u044c\u043a\u043e \u0432\u00a0\u0434\u043e\u043c\u0435 \u043f\u043e\u044f\u0432\u0438\u0442\u0441\u044f \u043c\u0443\u0436\u0447\u0438\u043d\u0430, \u0432\u0441\u0435\u00a0\u0441\u0440\u0430\u0437\u0443 \u043d\u0430\u043b\u0430\u0434\u0438\u0442\u0441\u044f. \u041e\u0434\u043d\u0430\u0436\u0434\u044b \u043d\u0430\u00a0\u0440\u0430\u0431\u043e\u0442\u0443 \u043a\u00a0\u0422\u0430\u0442\u044c\u044f\u043d\u0435 \u043f\u0440\u0438\u0445\u043e\u0434\u0438\u0442 \u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c, \u043c\u0430\u0439\u043e\u0440 \u0412\u043b\u0430\u0434\u0438\u043c\u0438\u0440 \u0421\u043c\u0430\u0433\u0438\u043d, \u0438\u00a0\u0441\u043e\u043e\u0431\u0449\u0430\u0435\u0442, \u0447\u0442\u043e\u00a0\u0436\u0435\u043d\u0449\u0438\u043d\u0430, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0422\u0430\u0442\u044c\u044f\u043d\u0430 \u0441\u043f\u0430\u0441\u043b\u0430 \u043e\u0442\u00a0\u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u0441\u0430\u043c\u043e\u0443\u0431\u0438\u0439\u0441\u0442\u0432\u0430, \u043f\u043e\u0437\u0436\u0435 \u0432\u0441\u0435\u00a0\u0436\u0435 \u043f\u043e\u0448\u043b\u0430 \u043d\u0430\u00a0\u044d\u0442\u043e\u0442 \u043e\u0442\u0447\u0430\u044f\u043d\u043d\u044b\u0439 \u0448\u0430\u0433. \u041c\u043e\u0433\u043b\u0430 \u043b\u0438\u00a0\u0422\u0430\u0442\u044c\u044f\u043d\u0430 \u0434\u043e\u0432\u0435\u0441\u0442\u0438 \u0435\u0435\u00a0\u0438\u043b\u0438 \u043f\u043e\u0434\u0442\u043e\u043b\u043a\u043d\u0443\u0442\u044c \u043f\u043e\u043a\u043e\u043d\u0447\u0438\u0442\u044c \u0441\u00a0\u0441\u043e\u0431\u043e\u0439, \u0421\u043c\u0430\u0433\u0438\u043d\u0443 \u043f\u0440\u0435\u0434\u0441\u0442\u043e\u0438\u0442 \u044d\u0442\u043e\u00a0\u0432\u044b\u044f\u0441\u043d\u0438\u0442\u044c.",
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 5,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10835644/2dcff509-f510-4952-bb3c-d579b92e73e0/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10835644/2dcff509-f510-4952-bb3c-d579b92e73e0/x1000"
            },
            "genres": [
                {
                    "name": "\u043c\u0435\u043b\u043e\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2024,
                    "end": 2024
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7783382,
            "name": "\u041f\u0440\u0438\u043d\u0446 \u043d\u0430 \u043a\u0440\u0430\u0441\u043d\u043e\u043c \u0432\u0435\u043b\u043e\u0441\u0438\u043f\u0435\u0434\u0435",
            "alternativeName": null,
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2024,
            "description": "\u041e\u043b\u044c\u0433\u0430 \u0422\u0438\u0445\u043e\u043c\u0438\u0440\u043e\u0432\u0430 \u0438\u0437\u00a0\u0422\u0432\u0435\u0440\u0438 \u0442\u0440\u0443\u0434\u0438\u0442\u0441\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u043c \u0440\u0430\u0431\u043e\u0442\u043d\u0438\u043a\u043e\u043c. \u041a\u043e\u0433\u0434\u0430-\u0442\u043e \u0443\u00a0\u043d\u0435\u0435 \u0441\u043b\u0443\u0447\u0438\u043b\u043e\u0441\u044c \u043d\u0435\u0441\u0447\u0430\u0441\u0442\u044c\u0435: \u0435\u0435\u00a0\u043c\u0430\u043b\u0435\u043d\u044c\u043a\u043e\u0433\u043e \u0441\u044b\u043d\u0430 \u043d\u0430\u0441\u043c\u0435\u0440\u0442\u044c \u0441\u0431\u0438\u043b\u0430 \u043c\u0430\u0448\u0438\u043d\u0430. \u041f\u043e\u0441\u043b\u0435 \u044d\u0442\u043e\u0433\u043e \u0435\u0435\u00a0\u043c\u0443\u0436 \u0443\u0448\u0435\u043b, \u0438\u00a0\u0442\u0435\u043f\u0435\u0440\u044c \u043e\u043d\u0430\u00a0\u0436\u0438\u0432\u0435\u0442 \u043e\u0434\u043d\u0430, \u0434\u0430\u0432\u043d\u043e \u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0432 \u043a\u0440\u0435\u0441\u0442 \u043d\u0430\u00a0\u0441\u0432\u043e\u0435\u0439 \u043b\u0438\u0447\u043d\u043e\u0439 \u0436\u0438\u0437\u043d\u0438. \u041d\u043e\u00a0\u043e\u0434\u043d\u0430\u0436\u0434\u044b \u0433\u0430\u0434\u0430\u043b\u043a\u0430 \u043f\u0440\u0435\u0434\u0441\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u0435\u0439, \u0447\u0442\u043e\u00a0\u041e\u043b\u044c\u0433\u0430 \u0441\u043a\u043e\u0440\u043e \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u0442 \u0441\u0432\u043e\u0435\u0433\u043e \u043f\u0440\u0438\u043d\u0446\u0430, \u043d\u043e\u00a0\u043d\u0435 \u043d\u0430\u00a0\u0431\u0435\u043b\u043e\u043c \u043a\u043e\u043d\u0435, \u0430\u00a0\u043d\u0430 \u043a\u0440\u0430\u0441\u043d\u043e\u043c \u0432\u0435\u043b\u043e\u0441\u0438\u043f\u0435\u0434\u0435. \u0418\u00a0\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e, \u0432\u0441\u043a\u043e\u0440\u0435 \u0443\u00a0\u041e\u043b\u044c\u0433\u0438 \u043f\u043e\u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u043e\u0432\u044b\u0439 \u043f\u043e\u0434\u043e\u043f\u0435\u0447\u043d\u044b\u0439, \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u043f\u0438\u0441\u0430\u0442\u0435\u043b\u044c \u0421\u0443\u0432\u043e\u0440\u0438\u043d, \u0432\u00a0\u043a\u0440\u0430\u0441\u043d\u043e\u0439 \u0438\u043d\u0432\u0430\u043b\u0438\u0434\u043d\u043e\u0439 \u043a\u043e\u043b\u044f\u0441\u043a\u0435. \u0421\u0443\u0432\u043e\u0440\u0438\u043d\u00a0\u2014\u00a0\u0443\u0433\u0440\u044e\u043c\u044b\u0439 \u0438\u00a0\u043d\u0435\u043f\u0440\u0438\u0432\u0435\u0442\u043b\u0438\u0432\u044b\u0439 \u0436\u0435\u043d\u043e\u043d\u0435\u043d\u0430\u0432\u0438\u0441\u0442\u043d\u0438\u043a, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u044f \u043c\u0435\u0436\u0434\u0443 \u043d\u0438\u043c\u0438 \u0441\u0440\u0430\u0437\u0443 \u043d\u0435\u00a0\u0437\u0430\u043b\u0430\u0434\u0438\u043b\u0438\u0441\u044c. \u0410\u00a0\u0432\u0441\u043a\u043e\u0440\u0435 \u043d\u0430\u00a0\u043f\u043e\u0440\u043e\u0433\u0435 \u0435\u0433\u043e\u00a0\u0434\u043e\u043c\u0430 \u043f\u043e\u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u0435\u0432\u0443\u0448\u043a\u0430 \u041f\u043e\u043b\u0438\u043d\u0430, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0437\u0430\u044f\u0432\u043b\u044f\u0435\u0442, \u0447\u0442\u043e\u00a0\u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043e\u0447\u0435\u0440\u044c\u044e \u0421\u0443\u0432\u043e\u0440\u0438\u043d\u0430. \u041f\u043e\u043b\u0443\u0447\u0438\u0432 \u043f\u043e\u043b\u043d\u043e\u0435 \u0434\u043e\u0432\u0435\u0440\u0438\u0435 \u043e\u0442\u0446\u0430, \u043e\u043d\u0430\u00a0\u043d\u0430\u043c\u0435\u0440\u0435\u0432\u0430\u0435\u0442\u0441\u044f \u043b\u044e\u0431\u044b\u043c\u0438 \u043f\u0443\u0442\u044f\u043c\u0438 \u0432\u044b\u0433\u043d\u0430\u0442\u044c \u041e\u043b\u044c\u0433\u0443 \u0438\u0437\u00a0\u043e\u0442\u0446\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u0434\u043e\u043c\u0430.",
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 11,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/4483445/d1ef5e55-f2c5-454a-b84c-070568f06f9d/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/4483445/d1ef5e55-f2c5-454a-b84c-070568f06f9d/x1000"
            },
            "genres": [
                {
                    "name": "\u043c\u0435\u043b\u043e\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2024,
                    "end": 2024
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7784353,
            "name": "\u0427\u0430\u0439\u043d\u0430\u044f \u043f\u0430\u0440\u0430",
            "alternativeName": null,
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2024,
            "description": "\u0422\u0430\u043b\u0430\u043d\u0442\u043b\u0438\u0432\u0430\u044f \u0445\u0443\u0434\u043e\u0436\u043d\u0438\u0446\u0430 \u041e\u043b\u044c\u0433\u0430 \u0413\u043e\u0440\u0434\u0435\u0435\u0432\u0430 \u0443\u0436\u0435\u00a0\u043f\u044f\u0442\u044c \u043b\u0435\u0442\u00a0\u0432 \u0440\u0430\u0437\u0432\u043e\u0434\u0435. \u041d\u043e\u00a0\u0431\u044b\u0432\u0448\u0438\u0439 \u043c\u0443\u0436, \u0438\u0433\u0440\u043e\u043c\u0430\u043d \u0412\u0438\u0442\u0451\u043a, \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u0442 \u043f\u0440\u0438\u0445\u043e\u0434\u0438\u0442\u044c \u043a\u00a0\u043d\u0435\u0439 \u0438\u00a0\u0437\u0430\u043d\u0438\u043c\u0430\u0442\u044c \u0434\u0435\u043d\u044c\u0433\u0438. \u0413\u0430\u043b\u0438\u043d\u0430, \u043d\u0430\u0447\u0430\u043b\u044c\u043d\u0438\u0446\u0430 \u043c\u0430\u0441\u0442\u0435\u0440\u0441\u043a\u043e\u0439, \u0432\u00a0\u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0442\u0440\u0443\u0434\u0438\u0442\u0441\u044f \u041e\u043b\u044c\u0433\u0430, \u0440\u0435\u0448\u0430\u0435\u0442 \u0432\u0437\u044f\u0442\u044c \u0441\u0447\u0430\u0441\u0442\u044c\u0435 \u0441\u0432\u043e\u0435\u0439 \u043b\u0443\u0447\u0448\u0435\u0439 \u043c\u0430\u0441\u0442\u0435\u0440\u0438\u0446\u044b \u043f\u043e\u0434\u00a0\u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c. \u041e\u043d\u0430\u00a0\u0441\u0432\u0430\u0442\u0430\u0435\u0442 \u041e\u043b\u044c\u0433\u0435 \u0431\u0438\u0437\u043d\u0435\u0441\u043c\u0435\u043d\u0430 \u041d\u043e\u0432\u0438\u043a\u043e\u0432\u0430, \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0430 \u043e\u0442\u0435\u043b\u044f, \u0432\u00a0\u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0440\u0435\u0448\u0430\u0435\u0442 \u0441\u0432\u043e\u0437\u0438\u0442\u044c \u0441\u0432\u043e\u0438\u0445 \u0440\u0430\u0431\u043e\u0442\u043d\u0438\u0446 \u043d\u0430\u00a0\u043e\u0442\u0434\u044b\u0445. \u041d\u043e\u00a0\u0434\u043e \u043e\u0442\u0435\u043b\u044f \u041e\u043b\u044c\u0433\u0430 \u043d\u0435\u00a0\u0434\u043e\u0435\u0437\u0436\u0430\u0435\u0442. \u0423\u00a0\u0438\u0445 \u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044f \u0442\u0430\u043a\u0441\u0438 \u041d\u0438\u043a\u043e\u043b\u0430\u044f \u0434\u043e\u043c\u0430 \u0441\u043b\u0443\u0447\u0430\u0435\u0442\u0441\u044f \u0447\u0440\u0435\u0437\u0432\u044b\u0447\u0430\u0439\u043d\u043e\u0435 \u043f\u0440\u043e\u0438\u0441\u0448\u0435\u0441\u0442\u0432\u0438\u0435: \u0435\u0433\u043e\u00a0\u043c\u0430\u043b\u0435\u043d\u044c\u043a\u0438\u0439 \u0441\u044b\u043d\u00a0\u0421\u0435\u0440\u0451\u0436\u0430, \u043f\u043e\u0442\u044f\u043d\u0443\u0432\u0448\u0438\u0441\u044c \u0437\u0430\u00a0\u043f\u0442\u0438\u0447\u043a\u043e\u0439, \u043f\u043e\u0432\u0438\u0441 \u043d\u0430\u00a0\u043a\u0430\u0440\u043d\u0438\u0437\u0435 \u0431\u0430\u043b\u043a\u043e\u043d\u0430. \u041d\u0438\u043a\u043e\u043b\u0430\u044e \u043f\u0440\u0438\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u0441\u0440\u043e\u0447\u043d\u043e \u0432\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u0432\u00a0\u0433\u043e\u0440\u043e\u0434 \u0432\u043c\u0435\u0441\u0442\u0435 \u0441\u00a0\u043f\u0430\u0441\u0441\u0430\u0436\u0438\u0440\u0430\u043c\u0438. \u0421\u00a0\u044d\u0442\u043e\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u041e\u043b\u044c\u0433\u0430 \u0438\u00a0\u041d\u0438\u043a\u043e\u043b\u0430\u0439 \u0432\u043b\u044e\u0431\u043b\u044f\u044e\u0442\u0441\u044f \u0434\u0440\u0443\u0433 \u0432\u00a0\u0434\u0440\u0443\u0433\u0430 \u0438\u00a0\u0432\u0441\u043a\u043e\u0440\u0435 \u0440\u0435\u0448\u0430\u044e\u0442 \u043f\u043e\u0436\u0435\u043d\u0438\u0442\u044c\u0441\u044f. \u041d\u043e\u00a0\u0435\u0441\u043b\u0438 \u043c\u043b\u0430\u0434\u0448\u0438\u0439 \u0441\u044b\u043d\u00a0\u041d\u0438\u043a\u043e\u043b\u0430\u044f \u0421\u0435\u0440\u0451\u0436\u0430 \u0441\u0440\u0430\u0437\u0443 \u043f\u043e\u043b\u044e\u0431\u0438\u043b \u041e\u043b\u044c\u0433\u0443, \u0442\u043e\u00a0\u0441\u0442\u0430\u0440\u0448\u0430\u044f, \u0416\u0435\u043d\u044c\u043a\u0430, \u043e\u0442\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u044c \u0435\u0435.",
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 7,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043c\u0435\u043b\u043e\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2024,
                    "end": 2024
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7781959,
            "name": "\u0416\u0435\u043d\u0441\u043a\u0438\u0439 \u0444\u043e\u0440\u0443\u043c",
            "alternativeName": "Strife",
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2023,
            "description": "\u0412 \u0436\u0438\u0437\u043d\u0438 \u0430\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u0439\u0441\u043a\u043e\u0439 \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u043a\u0438 \u042d\u0432\u0435\u043b\u0438\u043d \u0414\u0436\u043e\u043d\u0441 \u043d\u0430\u0441\u0442\u0443\u043f\u0438\u043b\u0438 \u0442\u044f\u0436\u0451\u043b\u044b\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0430: \u0443\u0432\u043e\u043b\u044c\u043d\u0435\u043d\u0438\u0435, \u0431\u043e\u043b\u0435\u0437\u043d\u0435\u043d\u043d\u044b\u0439 \u0440\u0430\u0437\u0432\u043e\u0434 \u0438\u00a0\u0442\u0440\u0443\u0434\u043d\u043e\u0441\u0442\u0438 \u0441\u00a0\u0432\u043e\u0441\u043f\u0438\u0442\u0430\u043d\u0438\u0435\u043c \u0434\u0435\u0442\u0435\u0439. \u041d\u043e\u00a0\u042d\u0432\u0435\u043b\u0438\u043d \u043d\u0435\u00a0\u0441\u0434\u0430\u0451\u0442\u0441\u044f, \u0430\u00a0\u0431\u0435\u0440\u0451\u0442 \u0441\u0435\u0431\u044f \u0432\u00a0\u0440\u0443\u043a\u0438 \u0438\u00a0\u043e\u0442\u043a\u0440\u044b\u0432\u0430\u0435\u0442 \u043f\u0435\u0440\u0432\u044b\u0439 \u0432\u00a0\u0441\u0442\u0440\u0430\u043d\u0435 \u0441\u0430\u0439\u0442 \u0434\u043b\u044f\u00a0\u0436\u0435\u043d\u0449\u0438\u043d \u043f\u043e\u0434\u00a0\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u043c Eve. \u0415\u0451 \u043d\u043e\u0432\u0430\u044f \u0441\u0442\u0430\u0442\u044c\u044f \u00ab\u042f \u0440\u0430\u0437\u0432\u0435\u043b\u0430\u0441\u044c \u0438\u0437-\u0437\u0430 \u0431\u0435\u043b\u043e\u0433\u043e \u0432\u0438\u043d\u0430\u00bb, \u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u043d\u0430\u00a0\u0441\u0430\u0439\u0442\u0435, \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0432\u0438\u0440\u0443\u0441\u043d\u043e\u0439, \u0438\u00a0\u0432\u043e\u0442 \u0443\u0436\u0435\u00a0\u0442\u044b\u0441\u044f\u0447\u0438 \u043f\u043e\u0441\u0435\u0442\u0438\u0442\u0435\u043b\u044c\u043d\u0438\u0446 \u0448\u0442\u0443\u0440\u043c\u0443\u044e\u0442 \u0431\u043b\u043e\u0433 \u0438\u00a0\u0442\u0440\u0435\u0431\u0443\u044e\u0442 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u044f.",
            "shortDescription": "\u041e\u0441\u0442\u0440\u044b\u0435 \u043d\u0430 \u044f\u0437\u044b\u043a \u0432\u0435\u0434\u0443\u0449\u0438\u0435 \u0438 \u0437\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0433\u043e\u0441\u0442\u0438 \u0434\u0430\u044e\u0442 \u0441\u043e\u0432\u0435\u0442\u044b \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u0438\u0446\u0430 \u0441\u0435\u0442\u0438. \u041f\u043e\u043f\u0443\u043b\u044f\u0440\u043d\u043e\u0435 \u0448\u043e\u0443 \u0441 \u043c\u0435\u0442\u043a\u0438\u043c \u044e\u043c\u043e\u0440\u043e\u043c",
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 6.5,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 18,
                "imdb": 375,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": 18,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/4486454/32b37073-bf1b-4937-904e-45173efccf04/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/4486454/32b37073-bf1b-4937-904e-45173efccf04/x1000"
            },
            "genres": [
                {
                    "name": "\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2023,
                    "end": null
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false,
            "backdrop": {
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-ott-images/2419418/2a000001968a7362485e039d6e4afe89923e/x1000",
                "url": "https://image.openmoviedb.com/kinopoisk-ott-images/2419418/2a000001968a7362485e039d6e4afe89923e/orig"
            }
        },
        {
            "id": 7784354,
            "name": "\u0412\u0435\u0440\u0438\u0442\u044c \u043d\u0435\u043b\u044c\u0437\u044f \u0441\u043e\u043b\u0433\u0430\u0442\u044c",
            "alternativeName": null,
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2024,
            "description": "\u0423\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u0438\u0446\u0430 \u043d\u0430\u0447\u0430\u043b\u044c\u043d\u044b\u0445 \u043a\u043b\u0430\u0441\u0441\u043e\u0432 \u041b\u0435\u043d\u0430 \u0437\u0430\u043c\u0443\u0436\u0435\u043c \u0437\u0430\u00a0\u0431\u0438\u0437\u043d\u0435\u0441\u043c\u0435\u043d\u043e\u043c \u0412\u0430\u0434\u0438\u043c\u043e\u043c \u041a\u0440\u0443\u0433\u043b\u043e\u0432\u044b\u043c. \u0415\u0451 \u0441\u0447\u0430\u0441\u0442\u044c\u0435 \u043e\u043c\u0440\u0430\u0447\u0430\u0435\u0442 \u043b\u0438\u0448\u044c \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 \u0434\u0435\u0442\u0435\u0439, \u043d\u043e\u00a0\u043d\u0438 \u043b\u0435\u0447\u0435\u043d\u0438\u0435, \u043d\u0438\u00a0\u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u043f\u044b\u0442\u043e\u043a \u042d\u041a\u041e\u00a0\u043d\u0435 \u043f\u0440\u0438\u043d\u043e\u0441\u044f\u0442 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432. \u041b\u0435\u043d\u0430 \u0442\u044f\u0436\u0435\u043b\u043e \u043f\u0435\u0440\u0435\u0436\u0438\u0432\u0430\u0435\u0442 \u043d\u0435\u0443\u0434\u0430\u0447\u0443 \u0438\u00a0\u043f\u043e\u043d\u0430\u0447\u0430\u043b\u0443 \u043d\u0435\u00a0\u0437\u0430\u043c\u0435\u0447\u0430\u0435\u0442 \u0441\u0442\u0440\u0430\u043d\u043d\u043e\u0441\u0442\u0435\u0439 \u0432\u00a0\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0438 \u043c\u0443\u0436\u0430. \u041d\u043e\u00a0\u0432\u0441\u043a\u043e\u0440\u0435 \u043f\u043e\u043d\u0438\u043c\u0430\u0435\u0442, \u0447\u0442\u043e\u00a0\u0435\u0435 \u0431\u0440\u0430\u043a\u00a0\u2014\u00a0\u043b\u043e\u0436\u044c. \u041f\u043e\u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441\u043e\u043f\u0435\u0440\u043d\u0438\u0446\u0430\u00a0\u2014\u00a0\u041d\u0438\u043d\u0430, \u043b\u044e\u0431\u043e\u0432\u043d\u0438\u0446\u0430 \u0412\u0430\u0434\u0438\u043c\u0430. \u0418\u00a0\u043e\u043d\u0430 \u0433\u043e\u0442\u043e\u0432\u0430 \u043d\u0430\u00a0\u0432\u0441\u0435 \u0440\u0430\u0434\u0438 \u0441\u0432\u043e\u0435\u0439 \u0431\u0435\u0437\u0443\u043c\u043d\u043e\u0439 \u043b\u044e\u0431\u0432\u0438.",
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 10,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/10953618/5cea4008-1453-4525-932e-4aea81849f6a/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/10953618/5cea4008-1453-4525-932e-4aea81849f6a/x1000"
            },
            "genres": [
                {
                    "name": "\u043c\u0435\u043b\u043e\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2024,
                    "end": 2024
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7784347,
            "name": "\u041f\u043e\u043a\u0430 \u0431\u0440\u0430\u043a \u043d\u0435 \u0440\u0430\u0437\u043b\u0443\u0447\u0438\u0442 \u043d\u0430\u0441",
            "alternativeName": null,
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2024,
            "description": "\u041e\u043b\u044c\u0433\u0430 \u0433\u043e\u0442\u043e\u0432\u0438\u0442\u0441\u044f \u0432\u044b\u0439\u0442\u0438 \u0437\u0430\u043c\u0443\u0436 \u0437\u0430\u00a0\u043b\u044e\u0431\u0438\u043c\u043e\u0433\u043e \u043c\u0443\u0436\u0447\u0438\u043d\u0443\u00a0\u2014\u00a0\u0418\u0433\u043e\u0440\u044f, \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044f \u043a\u0440\u0443\u043f\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0441\u0442\u0432\u0430. \u041d\u0435\u0434\u0430\u0432\u043d\u043e \u043e\u043d\u0430\u00a0\u0438\u0441\u043f\u043e\u043b\u043d\u0438\u043b\u0430 \u043c\u0435\u0447\u0442\u0443\u00a0\u2014\u00a0\u043e\u0442\u043a\u0440\u044b\u043b\u0430 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043c\u0430\u0433\u0430\u0437\u0438\u043d \u043e\u0434\u0435\u0436\u0434\u044b. \u0423\u00a0\u0441\u044b\u043d\u0430 \u041e\u043b\u044c\u0433\u0438 \u043e\u0442\u00a0\u043f\u0435\u0440\u0432\u043e\u0433\u043e \u0431\u0440\u0430\u043a\u0430 \u0414\u0430\u043d\u0438\u043b\u044b \u043f\u043e\u044f\u0432\u0438\u043b\u0430\u0441\u044c \u043b\u044e\u0431\u0438\u043c\u0430\u044f \u0434\u0435\u0432\u0443\u0448\u043a\u0430 \u041c\u0430\u0448\u0430, \u0430\u00a0\u043c\u0430\u0442\u044c \u041e\u043b\u044c\u0433\u0438, \u0417\u043e\u044f\u00a0\u041d\u0438\u043a\u043e\u043b\u0430\u0435\u0432\u043d\u0430, \u0432\u043e\u00a0\u0432\u0441\u0435\u043c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u0434\u043e\u0447\u044c. \u041d\u043e\u00a0\u043d\u0430\u043b\u0430\u0436\u0435\u043d\u043d\u0430\u044f \u0441\u00a0\u0442\u0440\u0443\u0434\u043e\u043c \u0436\u0438\u0437\u043d\u044c \u0440\u0443\u0448\u0438\u0442\u0441\u044f, \u043a\u043e\u0433\u0434\u0430 \u0438\u0437\u00a0\u041b\u043e\u043d\u0434\u043e\u043d\u0430 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u043e \u043f\u0440\u0438\u043b\u0435\u0442\u0430\u0435\u0442 \u043c\u0430\u0442\u044c \u0418\u0433\u043e\u0440\u044f \u0410\u043d\u043d\u0430. \u0421\u00a0\u044d\u0442\u043e\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0432\u00a0\u0441\u0435\u043c\u044c\u0435 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u0447\u0435\u0440\u043d\u0430\u044f \u043f\u043e\u043b\u043e\u0441\u0430. \u0422\u0440\u0435\u043c \u0436\u0435\u043d\u0449\u0438\u043d\u0430\u043c \u0438\u0437\u00a0\u0440\u0430\u0437\u043d\u044b\u0445 \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u0439, \u041e\u043b\u044c\u0433\u0435, \u0417\u043e\u0435\u00a0\u041d\u0438\u043a\u043e\u043b\u0430\u0435\u0432\u043d\u0435 \u0438\u00a0\u041c\u0430\u0448\u0435, \u043f\u0440\u0438\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f, \u0447\u0442\u043e\u0431\u044b \u0441\u043f\u0430\u0441\u0442\u0438 \u0441\u0430\u043c\u043e\u0435 \u0432\u0430\u0436\u043d\u043e\u0435\u00a0\u2014\u00a0\u0441\u0435\u043c\u044c\u044e, \u043a\u0430\u0440\u044c\u0435\u0440\u0443 \u0438\u00a0\u043b\u044e\u0431\u043e\u0432\u044c.",
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 4,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "poster": {
                "url": "https://image.openmoviedb.com/kinopoisk-images/4483445/76fe193b-4f31-409f-80cb-b5f7652771b3/orig",
                "previewUrl": "https://image.openmoviedb.com/kinopoisk-images/4483445/76fe193b-4f31-409f-80cb-b5f7652771b3/x1000"
            },
            "genres": [
                {
                    "name": "\u043c\u0435\u043b\u043e\u0434\u0440\u0430\u043c\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2024,
                    "end": 2024
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7783381,
            "name": "\u0422\u044b \u043c\u043e\u0439, \u044f \u0442\u0432\u043e\u044f",
            "alternativeName": null,
            "type": "tv-series",
            "typeNumber": 2,
            "year": 2024,
            "description": "\u0421\u0443\u043f\u0440\u0443\u0433\u0438 \u041c\u0438\u0440\u0430 \u0438\u00a0\u0421\u0435\u0440\u0433\u0435\u0439 \u041d\u043e\u0432\u0438\u043a\u043e\u0432\u044b \u0432\u043c\u0435\u0441\u0442\u0435 \u0441\u00a0\u0434\u0435\u0442\u0441\u0442\u0432\u0430, \u043e\u043d\u0438\u00a0\u043b\u044e\u0431\u044f\u0442 \u0438\u00a0\u0434\u043e\u0432\u0435\u0440\u044f\u044e\u0442 \u0434\u0440\u0443\u0433 \u0434\u0440\u0443\u0433\u0443. \u041d\u043e\u00a0\u043e\u0434\u043d\u0430\u0436\u0434\u044b \u043d\u0430\u00a0\u041c\u0438\u0440\u0443 \u043e\u0431\u0440\u0430\u0449\u0430\u0435\u0442 \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u0435 \u0412\u043b\u0430\u0434 \u041a\u043e\u0440\u043e\u0441\u0442\u044b\u043b\u0451\u0432, \u0431\u0438\u0437\u043d\u0435\u0441\u043c\u0435\u043d, \u043f\u0440\u0438\u0432\u044b\u043a\u0448\u0438\u0439 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0432\u0441\u0435, \u0447\u0442\u043e\u00a0\u0435\u043c\u0443 \u0445\u043e\u0447\u0435\u0442\u0441\u044f. \u041e\u043d\u00a0\u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442 \u043f\u0440\u0435\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c \u0434\u0435\u0432\u0443\u0448\u043a\u0443 \u0438\u00a0\u0434\u0430\u0436\u0435 \u043f\u043e\u0445\u0438\u0449\u0430\u0435\u0442 \u0421\u0435\u0440\u0433\u0435\u044f. \u041c\u0438\u0440\u0435 \u043f\u043e\u043c\u043e\u0433\u0430\u0435\u0442 \u0441\u043f\u0440\u044f\u0442\u0430\u0442\u044c\u0441\u044f \u0436\u0435\u043d\u0430 \u0412\u043b\u0430\u0434\u0430 \u041b\u044e\u0434\u043c\u0438\u043b\u0430. \u0410\u00a0\u0432\u0441\u043a\u043e\u0440\u0435 \u0431\u0438\u0437\u043d\u0435\u0441\u043c\u0435\u043d\u0430 \u0438\u0437\u0431\u0438\u0432\u0430\u044e\u0442 \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0435, \u0438\u00a0\u043e\u043d \u043f\u043e\u043f\u0430\u0434\u0430\u0435\u0442 \u0432\u00a0\u0431\u043e\u043b\u044c\u043d\u0438\u0446\u0443 \u0441\u00a0\u0442\u044f\u0436\u0435\u043b\u044b\u043c\u0438 \u0442\u0440\u0430\u0432\u043c\u0430\u043c\u0438. \u0421\u0435\u0440\u0433\u0435\u0439 \u0438\u00a0\u041c\u0438\u0440\u0430 \u0440\u0435\u0448\u0430\u044e\u0442 \u0443\u0435\u0445\u0430\u0442\u044c \u043e\u0442\u00a0\u043d\u0435\u043f\u0440\u0438\u044f\u0442\u043d\u043e\u0441\u0442\u0435\u0439 \u043f\u043e\u0434\u0430\u043b\u044c\u0448\u0435 \u0438\u00a0\u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u044e\u0442\u0441\u044f \u0432\u00a0\u0441\u0432\u043e\u0439 \u0440\u043e\u0434\u043d\u043e\u0439 \u0433\u043e\u0440\u043e\u0434. \u041c\u0438\u0440\u0430, \u0442\u0430\u043b\u0430\u043d\u0442\u043b\u0438\u0432\u044b\u0439 \u0430\u043d\u0438\u043c\u0430\u0442\u043e\u0440, \u043f\u043e\u043a\u043e\u0440\u044f\u0435\u0442 \u0441\u0443\u043f\u0440\u0443\u0433\u043e\u0432 \u0421\u0432\u0435\u0442\u043b\u0430\u043d\u0443 \u0438\u00a0\u0418\u0433\u043e\u0440\u044f \u041c\u0430\u0441\u043b\u043e\u0432\u044b\u0445 \u0438\u00a0\u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442 \u043f\u0435\u0440\u0432\u044b\u0439 \u0437\u0430\u043a\u0430\u0437\u00a0\u2014\u00a0\u0441\u0434\u0435\u043b\u0430\u0442\u044c \u0434\u0435\u0442\u0441\u043a\u0438\u0439 \u043f\u0440\u0430\u0437\u0434\u043d\u0438\u043a \u043d\u0430\u00a0\u0440\u0435\u043a\u0435. \u041d\u043e\u00a0\u0432 \u0434\u0435\u043d\u044c \u0432\u0441\u0442\u0440\u0435\u0447\u0438 \u0421\u0432\u0435\u0442\u043b\u0430\u043d\u0443 \u0443\u0431\u0438\u0432\u0430\u044e\u0442 \u043f\u0440\u044f\u043c\u043e \u043d\u0430\u00a0\u0440\u0435\u0447\u043d\u043e\u043c \u043f\u043b\u044f\u0436\u0435, \u0430\u00a0\u041c\u0438\u0440\u0443 \u043e\u0431\u0432\u0438\u043d\u044f\u044e\u0442 \u0432\u00a0\u0435\u0451 \u0443\u0431\u0438\u0439\u0441\u0442\u0432\u0435.",
            "shortDescription": null,
            "status": "completed",
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 23,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043c\u0435\u043b\u043e\u0434\u0440\u0430\u043c\u0430"
                },
                {
                    "name": "\u0434\u0435\u0442\u0435\u043a\u0442\u0438\u0432"
                },
                {
                    "name": "\u043a\u0440\u0438\u043c\u0438\u043d\u0430\u043b"
                }
            ],
            "countries": [
                {
                    "name": "\u0420\u043e\u0441\u0441\u0438\u044f"
                }
            ],
            "releaseYears": [
                {
                    "start": 2024,
                    "end": 2024
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": true,
            "ticketsOnSale": false
        },
        {
            "id": 7780976,
            "name": null,
            "alternativeName": "Captivity",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2022,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 2.4,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 10,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": 78,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u0442\u0440\u0438\u043b\u043b\u0435\u0440"
                }
            ],
            "countries": [
                {
                    "name": "\u0421\u0428\u0410"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        },
        {
            "id": 7781332,
            "name": null,
            "alternativeName": "Farah",
            "enName": null,
            "type": "movie",
            "typeNumber": 1,
            "year": 2023,
            "description": null,
            "shortDescription": null,
            "status": null,
            "rating": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "votes": {
                "kp": 0,
                "imdb": 0,
                "filmCritics": 0,
                "russianFilmCritics": 0,
                "await": 0
            },
            "movieLength": null,
            "totalSeriesLength": null,
            "seriesLength": null,
            "ratingMpaa": null,
            "ageRating": null,
            "genres": [
                {
                    "name": "\u043a\u043e\u0440\u043e\u0442\u043a\u043e\u043c\u0435\u0442\u0440\u0430\u0436\u043a\u0430"
                }
            ],
            "countries": [
                {
                    "name": "\u0418\u043e\u0440\u0434\u0430\u043d\u0438\u044f"
                }
            ],
            "top10": null,
            "top250": null,
            "isSeries": false,
            "ticketsOnSale": false
        }
    ],
    "total": 1078836,
    "limit": 10,
    "page": 20,
    "pages": 107884
}
Данные успешно собраны и сохранены в файл.
        id            name                alternativeName  enName  \
0  6532244  Крутой концерт                           None     NaN   
1  7874438            None              Stand-Up Stand-Up     NaN   
2  7875986            None                  Fantastic Max     NaN   
3  7874440            None      Seriously Amazing Objects     NaN   
4  7873532            None  Kono Sekai wa Fukanzen Sugiru     NaN   

              type  typeNumber    year description shortDescription  \
0            movie           1  2024.0        None             None   
1        tv-series           2  1992.0        None             None   
2  animated-series           5  1988.0        None             None   
3        tv-series           2  2013.0        None             None   
4  animated-series           5  2024.0        None             None   

      status  ... ageRating  \
0       None  ...       NaN   
1  completed  ...       NaN   
2  completed  ...       NaN   
3       None  ...       NaN   
4  completed  ...       NaN   

                                              genres  \
0          [{'name': 'концерт'}, {'name': 'музыка'}]   
1  [{'name': 'документальный'}, {'name': 'комедия'}]   
2     [{'name': 'мультфильм'}, {'name': 'семейный'}]   
3                               [{'name': 'боевик'}]   
4  [{'name': 'мультфильм'}, {'name': 'фэнтези'}, ...   

                                           countries  top10  top250 isSeries  \
0                               [{'name': 'Россия'}]   None    None    False   
1                                  [{'name': 'США'}]   None    None     True   
2  [{'name': 'США'}, {'name': 'Великобритания'}, ...   None    None     True   
3                                  [{'name': 'США'}]   None    None     True   
4                               [{'name': 'Япония'}]   None    None     True   

   ticketsOnSale                    releaseYears poster backdrop  
0          False                             NaN    NaN      NaN  
1          False  [{'start': 1992, 'end': 1995}]    NaN      NaN  
2          False  [{'start': 1988, 'end': 1991}]    NaN      NaN  
3          False  [{'start': 2013, 'end': None}]    NaN      NaN  
4          False  [{'start': 2024, 'end': 2024}]    NaN      NaN  

[5 rows x 26 columns]
In [ ]:
df_movies.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 200 entries, 0 to 199
Data columns (total 26 columns):
 #   Column             Non-Null Count  Dtype  
---  ------             --------------  -----  
 0   id                 200 non-null    int64  
 1   name               75 non-null     object 
 2   alternativeName    152 non-null    object 
 3   enName             0 non-null      float64
 4   type               200 non-null    object 
 5   typeNumber         200 non-null    int64  
 6   year               177 non-null    float64
 7   description        41 non-null     object 
 8   shortDescription   3 non-null      object 
 9   status             63 non-null     object 
 10  rating             200 non-null    object 
 11  votes              200 non-null    object 
 12  movieLength        104 non-null    float64
 13  totalSeriesLength  4 non-null      float64
 14  seriesLength       21 non-null     float64
 15  ratingMpaa         3 non-null      object 
 16  ageRating          35 non-null     float64
 17  genres             197 non-null    object 
 18  countries          196 non-null    object 
 19  top10              0 non-null      object 
 20  top250             0 non-null      object 
 21  isSeries           200 non-null    bool   
 22  ticketsOnSale      200 non-null    bool   
 23  releaseYears       61 non-null     object 
 24  poster             53 non-null     object 
 25  backdrop           8 non-null      object 
dtypes: bool(2), float64(6), int64(2), object(16)
memory usage: 38.0+ KB

У нас есть две колонки с названием фильма, возьмем первую ненулевую для каждого, и сделаем одну колонку с названием фильма

In [ ]:
df_movies_alt = df_movies.copy()
df_movies_alt['name_final'] = df_movies['name'].combine_first(df_movies['alternativeName'])
df_movies_alt = df_movies_alt.drop(columns=['name', 'alternativeName'])
df_movies_alt.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 200 entries, 0 to 199
Data columns (total 25 columns):
 #   Column             Non-Null Count  Dtype  
---  ------             --------------  -----  
 0   id                 200 non-null    int64  
 1   enName             0 non-null      float64
 2   type               200 non-null    object 
 3   typeNumber         200 non-null    int64  
 4   year               177 non-null    float64
 5   description        41 non-null     object 
 6   shortDescription   3 non-null      object 
 7   status             63 non-null     object 
 8   rating             200 non-null    object 
 9   votes              200 non-null    object 
 10  movieLength        104 non-null    float64
 11  totalSeriesLength  4 non-null      float64
 12  seriesLength       21 non-null     float64
 13  ratingMpaa         3 non-null      object 
 14  ageRating          35 non-null     float64
 15  genres             197 non-null    object 
 16  countries          196 non-null    object 
 17  top10              0 non-null      object 
 18  top250             0 non-null      object 
 19  isSeries           200 non-null    bool   
 20  ticketsOnSale      200 non-null    bool   
 21  releaseYears       61 non-null     object 
 22  poster             53 non-null     object 
 23  backdrop           8 non-null      object 
 24  name_final         200 non-null    object 
dtypes: bool(2), float64(6), int64(2), object(15)
memory usage: 36.5+ KB

Видим много пропущенных значений, оставим только те колонки, в которых есть какая-то полезная информация

In [ ]:
threshold = 150 # колонки, в которых меньше 150 ненулевых значений уберем
df_movies_alt = df_movies_alt.loc[:, df_movies_alt.notnull().sum() >= threshold]

df_movies_alt = df_movies_alt.drop(columns=['votes', 'typeNumber', 'isSeries', 'ticketsOnSale'])

df_movies_alt.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 200 entries, 0 to 199
Data columns (total 7 columns):
 #   Column      Non-Null Count  Dtype  
---  ------      --------------  -----  
 0   id          200 non-null    int64  
 1   type        200 non-null    object 
 2   year        177 non-null    float64
 3   rating      200 non-null    object 
 4   genres      197 non-null    object 
 5   countries   196 non-null    object 
 6   name_final  200 non-null    object 
dtypes: float64(1), int64(1), object(5)
memory usage: 11.1+ KB

Сделаем колонку отечественных фильмов. В колонке стран есть список стран, которые участвовали в создании фильма.

In [ ]:
df_movies_alt['is_russian'] = df_movies_alt['countries'].apply(
    lambda x: any(country.get('name') == 'Россия' for country in x) if isinstance(x, list) else False
)
df_movies_alt
Out[ ]:
id type year rating genres countries name_final is_russian
0 6532244 movie 2024.0 {'kp': 0, 'imdb': 0, 'filmCritics': 0, 'russia... [{'name': 'концерт'}, {'name': 'музыка'}] [{'name': 'Россия'}] Крутой концерт True
1 7874438 tv-series 1992.0 {'kp': 0, 'imdb': 7.5, 'filmCritics': 0, 'russ... [{'name': 'документальный'}, {'name': 'комедия'}] [{'name': 'США'}] Stand-Up Stand-Up False
2 7875986 animated-series 1988.0 {'kp': 0, 'imdb': 6.9, 'filmCritics': 0, 'russ... [{'name': 'мультфильм'}, {'name': 'семейный'}] [{'name': 'США'}, {'name': 'Великобритания'}, ... Fantastic Max False
3 7874440 tv-series 2013.0 {'kp': 0, 'imdb': 8, 'filmCritics': 0, 'russia... [{'name': 'боевик'}] [{'name': 'США'}] Seriously Amazing Objects False
4 7873532 animated-series 2024.0 {'kp': 0, 'imdb': 6.1, 'filmCritics': 0, 'russ... [{'name': 'мультфильм'}, {'name': 'фэнтези'}, ... [{'name': 'Япония'}] Kono Sekai wa Fukanzen Sugiru False
... ... ... ... ... ... ... ... ...
195 7784354 tv-series 2024.0 {'kp': 0, 'imdb': 0, 'filmCritics': 0, 'russia... [{'name': 'мелодрама'}] [{'name': 'Россия'}] Верить нельзя солгать True
196 7784347 tv-series 2024.0 {'kp': 0, 'imdb': 0, 'filmCritics': 0, 'russia... [{'name': 'мелодрама'}] [{'name': 'Россия'}] Пока брак не разлучит нас True
197 7783381 tv-series 2024.0 {'kp': 0, 'imdb': 0, 'filmCritics': 0, 'russia... [{'name': 'мелодрама'}, {'name': 'детектив'}, ... [{'name': 'Россия'}] Ты мой, я твоя True
198 7780976 movie 2022.0 {'kp': 0, 'imdb': 2.4, 'filmCritics': 0, 'russ... [{'name': 'триллер'}] [{'name': 'США'}] Captivity False
199 7781332 movie 2023.0 {'kp': 0, 'imdb': 0, 'filmCritics': 0, 'russia... [{'name': 'короткометражка'}] [{'name': 'Иордания'}] Farah False

200 rows × 8 columns

В колонке рейтинга у нас фиксированная структура json-подобного объекта, можно легко перевести его значения в новые колонки:

In [ ]:
df_movies_alt[['rating_kp', 'rating_imdb', 'rating_filmCritics', 'rating_russianFilmCritics', 'rating_await']] = df_movies_alt['rating'].apply(pd.Series)
df_movies_alt
Out[ ]:
id type year rating genres countries name_final is_russian rating_kp rating_imdb rating_filmCritics rating_russianFilmCritics rating_await
0 6532244 movie 2024.0 {'kp': 0, 'imdb': 0, 'filmCritics': 0, 'russia... [{'name': 'концерт'}, {'name': 'музыка'}] [{'name': 'Россия'}] Крутой концерт True 0.0 0.0 0.0 0.0 0.0
1 7874438 tv-series 1992.0 {'kp': 0, 'imdb': 7.5, 'filmCritics': 0, 'russ... [{'name': 'документальный'}, {'name': 'комедия'}] [{'name': 'США'}] Stand-Up Stand-Up False 0.0 7.5 0.0 0.0 0.0
2 7875986 animated-series 1988.0 {'kp': 0, 'imdb': 6.9, 'filmCritics': 0, 'russ... [{'name': 'мультфильм'}, {'name': 'семейный'}] [{'name': 'США'}, {'name': 'Великобритания'}, ... Fantastic Max False 0.0 6.9 0.0 0.0 0.0
3 7874440 tv-series 2013.0 {'kp': 0, 'imdb': 8, 'filmCritics': 0, 'russia... [{'name': 'боевик'}] [{'name': 'США'}] Seriously Amazing Objects False 0.0 8.0 0.0 0.0 0.0
4 7873532 animated-series 2024.0 {'kp': 0, 'imdb': 6.1, 'filmCritics': 0, 'russ... [{'name': 'мультфильм'}, {'name': 'фэнтези'}, ... [{'name': 'Япония'}] Kono Sekai wa Fukanzen Sugiru False 0.0 6.1 0.0 0.0 0.0
... ... ... ... ... ... ... ... ... ... ... ... ... ...
195 7784354 tv-series 2024.0 {'kp': 0, 'imdb': 0, 'filmCritics': 0, 'russia... [{'name': 'мелодрама'}] [{'name': 'Россия'}] Верить нельзя солгать True 0.0 0.0 0.0 0.0 0.0
196 7784347 tv-series 2024.0 {'kp': 0, 'imdb': 0, 'filmCritics': 0, 'russia... [{'name': 'мелодрама'}] [{'name': 'Россия'}] Пока брак не разлучит нас True 0.0 0.0 0.0 0.0 0.0
197 7783381 tv-series 2024.0 {'kp': 0, 'imdb': 0, 'filmCritics': 0, 'russia... [{'name': 'мелодрама'}, {'name': 'детектив'}, ... [{'name': 'Россия'}] Ты мой, я твоя True 0.0 0.0 0.0 0.0 0.0
198 7780976 movie 2022.0 {'kp': 0, 'imdb': 2.4, 'filmCritics': 0, 'russ... [{'name': 'триллер'}] [{'name': 'США'}] Captivity False 0.0 2.4 0.0 0.0 0.0
199 7781332 movie 2023.0 {'kp': 0, 'imdb': 0, 'filmCritics': 0, 'russia... [{'name': 'короткометражка'}] [{'name': 'Иордания'}] Farah False 0.0 0.0 0.0 0.0 0.0

200 rows × 13 columns

Попробуем посмотреть на тип объекта в полученном датасете:

In [ ]:
plt.figure(figsize=(10, 5))

sns.histplot(
    data=df_movies_alt,
    x='type',
    hue='is_russian',
    bins=15,
    kde=False,
    palette='Set2',
    multiple='stack',
)
plt.title('Гистограмма для типа')
plt.xlabel('type')
plt.ylabel('Частота')

plt.tight_layout()
plt.show()
No description has been provided for this image

Мы получили рабочий датасет, использовав API кинопоиска. Теперь можем начать использовать это знание 😊

2. Парсинг HTML напрямую¶

Не всегда бывает так, что информация предоставляется в удобном виде. Тогда приходится парсить сырую HTML-страницу. Но в Python есть различные библиотеки, которые помогают упростить процесс парсинга, одна из них — BeautifulSoup. Попробуем с её помощью начать обход страниц сайта simple.wikipedia.org.

wiki.png

Базовый функционал библиотеки BeautifulSoup позволяет нам:

  • cоздавать парсер HTML-страницы (принимает строку с документом),
  • искать текст на странице (parser.get_text),
  • искать элементы по тегу (parser.find, parser.findAll),
  • извлекать параметры из элемента (element.get).
In [ ]:
!python3 -mpip install url_normalize
!python3 -mpip install bs4
Collecting url_normalize
  Downloading url_normalize-2.2.0-py3-none-any.whl.metadata (4.9 kB)
Requirement already satisfied: idna>=3.3 in /Users/vryakupova/Desktop/smiles/.venv/lib/python3.11/site-packages (from url_normalize) (3.10)
Downloading url_normalize-2.2.0-py3-none-any.whl (14 kB)
Installing collected packages: url_normalize
Successfully installed url_normalize-2.2.0
Collecting bs4
  Downloading bs4-0.0.2-py2.py3-none-any.whl.metadata (411 bytes)
Collecting beautifulsoup4 (from bs4)
  Downloading beautifulsoup4-4.13.4-py3-none-any.whl.metadata (3.8 kB)
Collecting soupsieve>1.2 (from beautifulsoup4->bs4)
  Downloading soupsieve-2.6-py3-none-any.whl.metadata (4.6 kB)
Requirement already satisfied: typing-extensions>=4.0.0 in /Users/vryakupova/Desktop/smiles/.venv/lib/python3.11/site-packages (from beautifulsoup4->bs4) (4.13.2)
Downloading bs4-0.0.2-py2.py3-none-any.whl (1.2 kB)
Downloading beautifulsoup4-4.13.4-py3-none-any.whl (187 kB)
Downloading soupsieve-2.6-py3-none-any.whl (36 kB)
Installing collected packages: soupsieve, beautifulsoup4, bs4
Successfully installed beautifulsoup4-4.13.4 bs4-0.0.2 soupsieve-2.6
In [ ]:
from urllib.parse import urlparse, urldefrag, urljoin
from urllib.request import urlopen
from url_normalize import url_normalize
from bs4 import BeautifulSoup
from queue import Queue
import time

Определим вспомогательные функции, которые будут скачивать страницу с интернета и искать в ней информацию.

In [ ]:
SEED = "https://simple.wikipedia.org/wiki/Data_science"

def download_from_the_internet(url):
    '''Скачивает сраницу с интернета

    Параметры:
        url (str) - ссылка на страницу для скачивания

    Возвращает:
        str - html-страница в виде строки, None в случае неудачи
    '''
    try:
        return urlopen(url).read().decode('utf-8')
    except KeyboardInterrupt:
        raise
    except:
        return None


def extract_links_from_html(url, html):
    '''Парсит ссылки на странице

    Принимает:
        url (str) - исходный урл страницы
        html (str) - содержание html-страницы

    Возвращает:
        list - список ссылок, находящихся на странице
    '''
    parser = BeautifulSoup(html)
    # Формируем ссылки на те страницы, на которые ссылается документ
    return [urljoin(url, link.get('href')) for link in parser.findAll('a')] # параметр а это метка ссылок, берет параметр href- на что ссылается, урлджойн дойн итоговую ссылку


def extract_text_info_from_html(html):
    '''Парсит текстовую информацию на странице

    Принимает:
         html (str) - содержание html-страницы

    Возвращает:
        dict - текстовая часть страницы по ключу text,
               название по ключу title
    '''
    soup = BeautifulSoup(html, features="html.parser")
    for script in soup(["script", "style"]):
        script.extract()

    # Объединяем строки текста
    text = soup.get_text()
    lines = (line.strip() for line in text.splitlines())
    chunks = (phrase.strip() for line in lines for phrase in line.split("  "))
    text = '\n'.join(chunk for chunk in chunks if chunk)

    # Находим название на странице
    title = soup.find('title').string

    return {'text': text, 'title': title}


def is_wiki_article(url):
    '''Проверяет, является ли ссылка страницей на simple.wikipedia'''
    if 'simple.wikipedia' not in url:
        return False

    prohibited = ['Category', 'Special', 'Wikipedia',
                  'php', 'Help']

    # Проверяем, есть ли запрещённые строки в ссылке
    for token in prohibited:
        if token in url:
            return False

    return True

Объявляем список страниц Википедии.

In [ ]:
wiki_df_json = []

Далее напишем обход в ширину графа, построенного на страницах Википедии. Ребро в этом графе означает, что одна страница ссылается на другую. Тогда для того, чтобы получить список соседей страницы, нужно вызвать функцию extract_links_from_html и отфильтровать оттуда статьи Википедии. Однако перед тем, как работать со ссылкой, нам нужно привести её к стандартному виду — нормализовать.

In [ ]:
# Максимальное число загруженных страниц
MAX_DOWNLOADS = 10
# Создаём очередь для обхода в ширину
q = Queue()
q.put(SEED)

already_visited = set()
n_downloads = 0
time_start = time.time()

while not q.empty():
    # Нормализуем урл
    main_url = url_normalize(q.get())
    if main_url in already_visited:
        continue
    already_visited.add(main_url)
    html = download_from_the_internet(main_url)

    # Извлекаем ссылки из страницы
    children_links = extract_links_from_html(main_url, html)
    time.sleep(0.5)

    # Извлекаем текст страницы
    text_info = extract_text_info_from_html(html)

    # Добавляем запись в таблицу
    text_info['url'] = main_url
    wiki_df_json.append(text_info)

    n_downloads += 1
    if n_downloads > MAX_DOWNLOADS:
        break

    # Добавляем ещё не посещённые ссылки в очередь
    for child in children_links:
        if url_normalize(child) not in already_visited and is_wiki_article(child):
            q.put(child)
/var/folders/5f/k6d6ykwj7hgf8mb4_zqgxgl40000gq/T/ipykernel_68281/3903588911.py:32: DeprecationWarning: Call to deprecated method findAll. (Replaced by find_all) -- Deprecated since version 4.0.0.
  return [urljoin(url, link.get('href')) for link in parser.findAll('a')]

Создадим из данных DataFrame и выберем оттуда 5 случайных записей.

In [ ]:
wiki_df = pd.DataFrame(wiki_df_json)
In [ ]:
wiki_df.sample(5)
Out[ ]:
text title url
9 Data - Simple English Wikipedia, the free ency... Data - Simple English Wikipedia, the free ency... https://simple.wikipedia.org/wiki/Data
7 English language - Simple English Wikipedia, t... English language - Simple English Wikipedia, t... https://simple.wikipedia.org/wiki/English_lang...
11 Mathematics - Simple English Wikipedia, the fr... Mathematics - Simple English Wikipedia, the fr... https://simple.wikipedia.org/wiki/Mathematics
0 Data science - Simple English Wikipedia, the f... Data science - Simple English Wikipedia, the f... https://simple.wikipedia.org/wiki/Data_science
3 English language - Simple English Wikipedia, t... English language - Simple English Wikipedia, t... https://simple.wikipedia.org/wiki/English_lang...

В данном случае, кроме ссылки, названия и самого текста, про страницу ничего не известно. Для работы с такими данными можно применять продвинутые методы анализа текстов, про которые рассказывается в последующих курсах.