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=130
{ "count": 85851, "next": "https://ocmovies.debinformatique.fr/api/v1/titles/?format=api&page=131", "previous": "https://ocmovies.debinformatique.fr/api/v1/titles/?format=api&page=129", "results": [ { "id": 18972, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18972?format=api", "imdb_url": "https://www.imdb.com/title/tt0018972/", "title": "La casa del boia", "year": 1928, "imdb_score": "6.6", "votes": 398, "image_url": "https://m.media-amazon.com/images/M/MV5BYjNiOGU1MmMtMmQwYy00YTVjLTgxZmQtNjQ4NjM0M2Q5ZjcxXkEyXkFqcGdeQXVyMjQ3MTQ1MTg@._V1_UY268_CR1,0,182,268_AL_.jpg", "directors": [ "John Ford" ], "actors": [ "Earle Foxe", "Hobart Bosworth", "June Collyer", "Larry Kent", "Victor McLaglen" ], "writers": [ "Marion Orth", "Philip Klein" ], "genres": [ "Drama", "Romance", "Thriller" ] }, { "id": 18990, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18990?format=api", "imdb_url": "https://www.imdb.com/title/tt0018990/", "title": "Heimkehr", "year": 1928, "imdb_score": "6.9", "votes": 156, "image_url": "https://m.media-amazon.com/images/M/MV5BODdkZjBiODctMWUwMi00N2M2LWJhMWItY2JhZWE5OWRmYWFmXkEyXkFqcGdeQXVyMTczMjA2Nzk@._V1_UX182_CR0,0,182,268_AL_.jpg", "directors": [ "Joe May" ], "actors": [ "Dita Parlo", "Else Wasa", "Gustav Fröhlich", "Lars Hanson", "Philipp Manning", "Theodor Loos" ], "writers": [ "Joe May", "Leonhard Frank" ], "genres": [ "Drama", "Romance", "War" ] }, { "id": 18996, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18996?format=api", "imdb_url": "https://www.imdb.com/title/tt0018996/", "title": "High Treason", "year": 1929, "imdb_score": "6.0", "votes": 118, "image_url": "https://m.media-amazon.com/images/M/MV5BZTUxZThkNmItYjI5MS00ZjdlLTg2ODUtZDVkOTk4ZGU1Zjc1L2ltYWdlXkEyXkFqcGdeQXVyMzAyNDIwNzY@._V1_UY268_CR5,0,182,268_AL_.jpg", "directors": [ "Maurice Elvey" ], "actors": [ "Basil Gill", "Benita Hume", "Humberston Wright", "Jameson Thomas" ], "writers": [ "L'Estrange Fawcett", "Noel Pemberton-Billing" ], "genres": [ "Sci-Fi" ] }, { "id": 19043, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/19043?format=api", "imdb_url": "https://www.imdb.com/title/tt0019043/", "title": "Jûjiro", "year": 1928, "imdb_score": "7.1", "votes": 306, "image_url": "https://m.media-amazon.com/images/M/MV5BMmIyNzY3NWEtNDY3OS00OWUxLWI0NGMtMmI2OGUyZDc1MDVlXkEyXkFqcGdeQXVyMjQ3MTQ1MTg@._V1_UX182_CR0,0,182,268_AL_.jpg", "directors": [ "Teinosuke Kinugasa" ], "actors": [ "Akiko Chihaya", "Ippei Sôma", "Junosuke Bandô", "Keinosuke Sawada", "Misao Seki", "Teruko Sanjô", "Yoshie Nakagawa", "Yukiko Ogawa" ], "writers": [ "Teinosuke Kinugasa" ], "genres": [ "Drama" ] }, { "id": 19067, "url": "https://ocmovies.debinformatique.fr/api/v1/titles/19067?format=api", "imdb_url": "https://www.imdb.com/title/tt0019067/", "title": "L'avventuriera", "year": 1928, "imdb_score": "6.9", "votes": 401, "image_url": "https://m.media-amazon.com/images/M/MV5BMTgxMDE5ODMzM15BMl5BanBnXkFtZTcwOTczMDAyMw@@._V1_UY268_CR3,0,182,268_AL_.jpg", "directors": [ "Robert Z. Leonard" ], "actors": [ "Buddy Messinger", "Eugenie Besserer", "Gwen Lee", "Johnny Mack Brown", "Lowell Sherman", "Norma Shearer" ], "writers": [ "Edmund Goulding", "Leroy Scott" ], "genres": [ "Comedy", "Drama", "Romance" ] } ] }