I'm just getting familiar with api requests - I saw this example on the website I've also applied for and gotten an api key -- how do I construct the correct url request?
The documentation says the url is constructed like this -- but I'm not sure how to add the discover example to this
https://api.themoviedb.org/3/movie/550?api_key=###
/discover/movie?primary_release_date.gte=2014-09-15&primary_release_date.lte=2014-10-22
Can't find a movie or TV show? Login to create it.
Want to rate or add this item to a list?
Not a member?
Reply by shuaib88
on February 28, 2016 at 9:21 PM
FIgured out how for other people getting started:
url base + paramters
Here's the base for discovering movies:
required parameter:
api_key=###
optional parameter:
primary_release_date.gte=2016-01-01
Full url is below, you can add additional parameters with an ampersand (&)
Reply by janerke5@yahoo.com
on May 17, 2019 at 3:08 AM
That's very helpful. Thank you very much. Question: Will it list all the movies where release date matches 2016-01-01?