Movie Title List
This endpoint is the main entry point of the OCMovies API.
The OCMovies API is a RESTful API built using Django Rest Framework with the objective to support educational projects through a local execution of the server. It uses data from more than 80k movies from de IMDb website.
The actual API opens the door to a full exploration of the available movie data without being stuck with quotas. Using this main endpoint, you can search data through the use of filters. Filters allows to filter and sort data using various criteria that can be discovers using the filter button on the browserable API interface.
Some detailed info is only available using the detailed info endpoints
identified with the url field.
If you need to get a full list of available genres, refer to the genres endpoint.
GET /api/v1/titles/?format=api&page=152
{ "count": 85851, "next": "https://ocmovies.debinformatique.fr/api/v1/titles/?format=api&page=153", "previous": "https://ocmovies.debinformatique.fr/api/v1/titles/?format=api&page=151", "results": [ { "id": 20034, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20034?format=api", "imdb_url": "https://www.imdb.com/title/tt0020034/", "title": "La romanza dell'amore", "year": 1929, "imdb_score": "6.1", "votes": 266, "image_url": "https://m.media-amazon.com/images/M/MV5BMjExNTY0OTQ2OF5BMl5BanBnXkFtZTcwNzM3NTk5Mw@@._V1_UY268_CR3,0,182,268_AL_.jpg", "directors": [ "Sam Wood" ], "actors": [ "Benny Rubin", "Jed Prouty", "Lawrence Gray", "Rosetta Duncan", "Vivian Duncan" ], "writers": [ "Byron Morgan", "Leonard Praskins" ], "genres": [ "Comedy", "Musical", "Romance" ] }, { "id": 20062, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20062?format=api", "imdb_url": "https://www.imdb.com/title/tt0020062/", "title": "Il bacio", "year": 1929, "imdb_score": "6.9", "votes": 951, "image_url": "https://m.media-amazon.com/images/M/MV5BNWRkMGU2MjgtZTEzMy00NzIwLWFkYzEtZTFmMWRiNWQwNjUyXkEyXkFqcGdeQXVyMjcxNjI4NTk@._V1_UX182_CR0,0,182,268_AL_.jpg", "directors": [ "Jacques Feyder" ], "actors": [ "Anders Randolf", "Conrad Nagel", "George Davis", "Greta Garbo", "Holmes Herbert", "Lew Ayres" ], "writers": [ "George M. Saville", "Hanns Kräly" ], "genres": [ "Drama", "Romance" ] }, { "id": 20075, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20075?format=api", "imdb_url": "https://www.imdb.com/title/tt0020075/", "title": "Laila, la figlia del nord", "year": 1929, "imdb_score": "7.3", "votes": 219, "image_url": "https://m.media-amazon.com/images/M/MV5BYmRlYjdmMWMtMzhjZC00ZjViLWFjYmItYjY0MTk1NTVhOGZiXkEyXkFqcGdeQXVyMzg1ODEwNQ@@._V1_UY268_CR5,0,182,268_AL_.jpg", "directors": [ "George Schnéevoigt" ], "actors": [ "Alice O'Fredericks", "Aslag Aslagsen Sara", "Cally Monrad", "Finn Bernhoft", "Harald Schwenzen", "Henry Gleditsch", "Ibe Brekke", "Lilly Larson-Lund", "Mattis Morotaja", "Mona Mårtenson", "Peter Malberg", "Rasmus Christiansen", "Tryggve Larssen" ], "writers": [ "George Schnéevoigt", "Jens Andreas Friis" ], "genres": [ "Drama", "Romance" ] }, { "id": 20078, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20078?format=api", "imdb_url": "https://www.imdb.com/title/tt0020078/", "title": "Erik il grande", "year": 1929, "imdb_score": "6.7", "votes": 327, "image_url": "https://m.media-amazon.com/images/M/MV5BMzQzOGFjZGItNDZkNC00N2JkLTgwOTEtNWNlNDljNWZkZGZkL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UX182_CR0,0,182,268_AL_.jpg", "directors": [ "Pál Fejös" ], "actors": [ "Anders Randolf", "Conrad Veidt", "Eddie Boland", "Fred MacKaye", "George Irving", "Gusztáv Pártos", "Leslie Fenton", "Mary Philbin", "Rosita Delmar", "Sam De Grasse", "William H. Turner" ], "writers": [ "James Ashmore Creelman", "Walter Anthony" ], "genres": [ "Drama", "Horror", "Romance" ] }, { "id": 20080, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20080?format=api", "imdb_url": "https://www.imdb.com/title/tt0020080/", "title": "The Last Warning", "year": 1928, "imdb_score": "6.7", "votes": 457, "image_url": "https://m.media-amazon.com/images/M/MV5BMmE3MGJiMjUtMDViZS00NmI5LWFmYzctYTI3NzRjMThiNTlhXkEyXkFqcGdeQXVyMzU4ODM5Nw@@._V1_UY268_CR9,0,182,268_AL_.jpg", "directors": [ "Paul Leni" ], "actors": [ "Bert Roach", "Bud Phelps", "Burr McIntosh", "Carrie Daumery", "Charles K. French", "D'Arcy Corrigan", "Francisco Marán", "John Boles", "Laura La Plante", "Mack Swain", "Margaret Livingston", "Montagu Love", "Roy D'Arcy", "Slim Summerville", "Torben Meyer" ], "writers": [ "Alfred A. Cohn", "Wadsworth Camp" ], "genres": [ "Horror", "Mystery", "Thriller" ] } ] }