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=98
{ "count": 85851, "next": "https://ocmovies.debinformatique.fr/api/v1/titles/?format=api&page=99", "previous": "https://ocmovies.debinformatique.fr/api/v1/titles/?format=api&page=97", "results": [ { "id": 16847, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16847?format=api", "imdb_url": "https://www.imdb.com/title/tt0016847/", "title": "Faust", "year": 1926, "imdb_score": "8.1", "votes": 13815, "image_url": "https://m.media-amazon.com/images/M/MV5BZjFjYzM4NTYtMjcxMi00YTczLTg1NDktZmJhNTUwN2NmOTVlXkEyXkFqcGdeQXVyOTI2MjI5MQ@@._V1_UX182_CR0,0,182,268_AL_.jpg", "directors": [ "F.W. Murnau" ], "actors": [ "Camilla Horn", "Emil Jannings", "Eric Barclay", "Frida Richard", "Gösta Ekman", "Hanna Ralph", "Werner Fuetterer", "William Dieterle", "Yvette Guilbert" ], "writers": [ "Gerhart Hauptmann", "Hans Kyser" ], "genres": [ "Drama", "Fantasy", "Horror" ] }, { "id": 16854, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16854?format=api", "imdb_url": "https://www.imdb.com/title/tt0016854/", "title": "Le disgrazie di adamo", "year": 1926, "imdb_score": "6.3", "votes": 214, "image_url": "https://m.media-amazon.com/images/M/MV5BNWZmYTY4YWYtYTNkZS00ZGVjLTljNDQtNDFmNDgyOTdkYjBjXkEyXkFqcGdeQXVyMjc3MjgzOTU@._V1_UY268_CR6,0,182,268_AL_.jpg", "directors": [ "Howard Hawks" ], "actors": [ "Eulalie Jensen", "George Beranger", "George O'Brien", "Heinie Conklin", "Olive Borden", "Phyllis Haver", "William Austin" ], "writers": [ "Hope Loring", "Howard Hawks" ], "genres": [ "Comedy" ] }, { "id": 16871, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16871?format=api", "imdb_url": "https://www.imdb.com/title/tt0016871/", "title": "Fine Manners", "year": 1926, "imdb_score": "5.8", "votes": 767, "image_url": "https://m.media-amazon.com/images/M/MV5BZTI2NDkzZTItYWNmNS00YTlkLWIwZmUtYWU4ZDg3ZjVkMWUzXkEyXkFqcGdeQXVyMjcxNjI4NTk@._V1_UX182_CR0,0,182,268_AL_.jpg", "directors": [ "Lewis Milestone", "Richard Rosson" ], "actors": [ "Eugene O'Brien", "Gloria Swanson", "Helen Dunbar", "John Miltern", "Roland Drew" ], "writers": [ "J. Clarkson Miller", "James Ashmore Creelman" ], "genres": [ "Comedy" ] }, { "id": 16884, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16884?format=api", "imdb_url": "https://www.imdb.com/title/tt0016884/", "title": "La carne e il diavolo", "year": 1926, "imdb_score": "7.6", "votes": 3945, "image_url": "https://m.media-amazon.com/images/M/MV5BNWYzZjA1MWEtOGUxZi00ZjUxLTg0YTAtZGUxNDc2MmQxM2JjXkEyXkFqcGdeQXVyNjc0MzMzNjA@._V1_UX182_CR0,0,182,268_AL_.jpg", "directors": [ "Clarence Brown" ], "actors": [ "Barbara Kent", "Eugenie Besserer", "George Fawcett", "Greta Garbo", "John Gilbert", "Lars Hanson", "Marc McDermott", "Marcelle Corday", "William Orlamond" ], "writers": [ "Benjamin Glazer", "Hermann Sudermann" ], "genres": [ "Drama", "Romance" ] }, { "id": 16895, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16895?format=api", "imdb_url": "https://www.imdb.com/title/tt0016895/", "title": "Il re degli straccioni", "year": 1926, "imdb_score": "7.4", "votes": 1430, "image_url": "https://m.media-amazon.com/images/M/MV5BMTcxMTEwMTIzNl5BMl5BanBnXkFtZTgwMzYzODYwMjE@._V1_UX182_CR0,0,182,268_AL_.jpg", "directors": [ "Sam Taylor" ], "actors": [ "Harold Lloyd", "Jim Mason", "Jobyna Ralston", "Noah Young", "Paul Weigel" ], "writers": [ "John Grey", "Ted Wilde" ], "genres": [ "Action", "Comedy", "Romance" ] } ] }