In my PHP application, I input from the user the movies that he likes, and then I query the Topic API to retrieve details on each movie.
Is there a way to batch the calls so that I don't have to make multiple http requests? For eg., if the user enters 10 movie names, is it possible to make a single http request to retrieve information on all ten movies, or should I be making 10 API calls - one for each movie? The latter approach severely strains the speed of my application.