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=123
{ "count": 85851, "next": "https://ocmovies.debinformatique.fr/api/v1/titles/?format=api&page=124", "previous": "https://ocmovies.debinformatique.fr/api/v1/titles/?format=api&page=122", "results": [ { "id": 18526, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18526?format=api", "imdb_url": "https://www.imdb.com/title/tt0018526/", "title": "Le notti di Chicago", "year": 1927, "imdb_score": "7.5", "votes": 2605, "image_url": "https://m.media-amazon.com/images/M/MV5BNTJmZmI3OWMtZGQyZS00ZmZiLTgyNDgtMDdkNzYxZWJlMzEwXkEyXkFqcGdeQXVyNjMwMjk0MTQ@._V1_UX182_CR0,0,182,268_AL_.jpg", "directors": [ "Arthur Rosson", "Josef von Sternberg" ], "actors": [ "Clive Brook", "Evelyn Brent", "Fred Kohler", "George Bancroft", "Helen Lynch", "Jerry Mandy", "Larry Semon" ], "writers": [ "Ben Hecht", "Charles Furthman" ], "genres": [ "Crime", "Drama", "Film-Noir" ] }, { "id": 18528, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18528?format=api", "imdb_url": "https://www.imdb.com/title/tt0018528/", "title": "Lo sconosciuto", "year": 1927, "imdb_score": "7.8", "votes": 7196, "image_url": "https://m.media-amazon.com/images/M/MV5BMTk3MjQ0MzYzMF5BMl5BanBnXkFtZTgwNDg1NDM4MTE@._V1_UX182_CR0,0,182,268_AL_.jpg", "directors": [ "Tod Browning" ], "actors": [ "Frank Lanning", "Joan Crawford", "John George", "Lon Chaney", "Nick De Ruiz", "Norman Kerry" ], "writers": [ "Tod Browning", "Waldemar Young" ], "genres": [ "Drama", "Horror", "Romance" ] }, { "id": 18530, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18530?format=api", "imdb_url": "https://www.imdb.com/title/tt0018530/", "title": "Controcorrente", "year": 1927, "imdb_score": "6.2", "votes": 250, "image_url": "https://m.media-amazon.com/images/M/MV5BN2QzOWMwZWYtYTgzNC00ZTA5LTg1OTQtZmYyOGMyMDE3OWU4XkEyXkFqcGdeQXVyMjQ3MTQ1MTg@._V1_UY268_CR85,0,182,268_AL_.jpg", "directors": [ "John Ford" ], "actors": [ "Earle Foxe", "Ely Reynolds", "Emile Chautard", "Francis Ford", "Grant Withers", "Harry A. Bailey", "Jane Winton", "Judy King", "Lillian Worth", "Lydia Yeamans Titus", "Nancy Nash", "Raymond Hitchcock", "Sammy Cohen", "Ted McNamara" ], "writers": [ "Randall Faye", "Wallace Smith" ], "genres": [ "Comedy", "Drama" ] }, { "id": 18566, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18566?format=api", "imdb_url": "https://www.imdb.com/title/tt0018566/", "title": "When a Man Loves", "year": 1927, "imdb_score": "6.8", "votes": 309, "image_url": "https://m.media-amazon.com/images/M/MV5BNWI1OGU0ODctM2MyNy00YmMyLWE0MzctMDk0M2M1NzdmYzMzXkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UY268_CR1,0,182,268_AL_.jpg", "directors": [ "Alan Crosland" ], "actors": [ "Bertram Grassby", "Dolores Costello", "Holmes Herbert", "John Barrymore", "Sam De Grasse", "Stuart Holmes", "Tom Santschi", "Warner Oland" ], "writers": [ "Bess Meredyth" ], "genres": [ "History", "Romance" ] }, { "id": 18578, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18578?format=api", "imdb_url": "https://www.imdb.com/title/tt0018578/", "title": "Ali", "year": 1927, "imdb_score": "7.5", "votes": 11339, "image_url": "https://m.media-amazon.com/images/M/MV5BYTI1YjgzZmMtZmIyYy00YTkwLTgyOWEtOTVlNTFkZmMzNTk3XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX182_CR0,0,182,268_AL_.jpg", "directors": [ "Harry d'Abbadie d'Arrast", "William A. Wellman" ], "actors": [ "Arlette Marchal", "Charles 'Buddy' Rogers", "Clara Bow", "El Brendel", "Gary Cooper", "Gunboat Smith", "Henry B. Walthall", "Jobyna Ralston", "Julia Swayne Gordon", "Richard Arlen", "Richard Tucker", "Rod Rogers", "Roscoe Karns" ], "writers": [ "Hope Loring", "John Monk Saunders" ], "genres": [ "Drama", "Romance", "War" ] } ] }