Сочетания клавиш
Расширенный Поиск
I get my api key but i do not understand how i will use this api to get movies list , tv serial list , etc
Hi Ankit,
An example API request searching for the movies called "batman" looks like so:
https://api.themoviedb.org/3/search/movie?api_key=###&query=batman
With an ID from those results, lets say the first results, id 268, you can then go and query the full details:
https://api.themoviedb.org/3/movie/268?api_key=###
As always, the full documentation is located here: http://docs.themoviedb.apiary.io/
Hope that helps.
Thanks sir
Не можете найти фильм или сериал? Войдите на сайт, чтобы добавить его.
Войти
Регистрация
Хотите поставить оценку или добавить в список?
Нет аккаунта?
Присоединитесь к сообществу
Ответ от Travis Bell
, 3 февраля 2016 в 16:11
Hi Ankit,
An example API request searching for the movies called "batman" looks like so:
With an ID from those results, lets say the first results, id 268, you can then go and query the full details:
https://api.themoviedb.org/3/movie/268?api_key=###
As always, the full documentation is located here: http://docs.themoviedb.apiary.io/
Hope that helps.
Ответ от Ankit Keshari
, 4 февраля 2016 в 11:19
Thanks sir