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=312
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "count": 85851,
    "next": "https://ocmovies.debinformatique.fr/api/v1/titles/?format=api&page=313",
    "previous": "https://ocmovies.debinformatique.fr/api/v1/titles/?format=api&page=311",
    "results": [
        {
            "id": 24028,
            "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24028?format=api",
            "imdb_url": "https://www.imdb.com/title/tt0024028/",
            "title": "Viva le donne",
            "year": 1933,
            "imdb_score": "7.6",
            "votes": 4826,
            "image_url": "https://m.media-amazon.com/images/M/MV5BODdkOGJkY2QtY2FkZi00YmMyLTlmNmMtYzM3YTAxZjQyNjI2XkEyXkFqcGdeQXVyMTY5Nzc4MDY@._V1_UX182_CR0,0,182,268_AL_.jpg",
            "directors": [
                "Lloyd Bacon"
            ],
            "actors": [
                "Arthur Hohl",
                "Barbara Rogers",
                "Claire Dodd",
                "Dick Powell",
                "Frank McHugh",
                "Gordon Westcott",
                "Guy Kibbee",
                "Hugh Herbert",
                "James Cagney",
                "Joan Blondell",
                "Paul Porcasi",
                "Philip Faversham",
                "Renee Whitney",
                "Ruby Keeler",
                "Ruth Donnelly"
            ],
            "writers": [
                "James Seymour",
                "Manuel Seff"
            ],
            "genres": [
                "Comedy",
                "Musical",
                "Romance"
            ]
        },
        {
            "id": 24034,
            "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24034?format=api",
            "imdb_url": "https://www.imdb.com/title/tt0024034/",
            "title": "42a strada",
            "year": 1933,
            "imdb_score": "7.4",
            "votes": 10651,
            "image_url": "https://m.media-amazon.com/images/M/MV5BZWJhN2M3NzktN2RkNC00ZDgwLTg2ZjktMWQzNTE3YzAxMGYyXkEyXkFqcGdeQXVyMTY5Nzc4MDY@._V1_UY268_CR13,0,182,268_AL_.jpg",
            "directors": [
                "Lloyd Bacon"
            ],
            "actors": [
                "Allen Jenkins",
                "Bebe Daniels",
                "Dick Powell",
                "Edward J. Nugent",
                "George Brent",
                "George E. Stone",
                "Ginger Rogers",
                "Guy Kibbee",
                "Ned Sparks",
                "Robert McWade",
                "Ruby Keeler",
                "Una Merkel",
                "Warner Baxter"
            ],
            "writers": [
                "James Seymour",
                "Rian James"
            ],
            "genres": [
                "Comedy",
                "Musical",
                "Romance"
            ]
        },
        {
            "id": 24037,
            "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24037?format=api",
            "imdb_url": "https://www.imdb.com/title/tt0024037/",
            "title": "Friday the Thirteenth",
            "year": 1933,
            "imdb_score": "6.8",
            "votes": 312,
            "image_url": "https://m.media-amazon.com/images/M/MV5BMWY5ZmYwNDYtNjViMS00ZmM2LTkxYmEtZmE3NmJjYmNlODFmXkEyXkFqcGdeQXVyMjcyMDc2OA@@._V1_UY268_CR4,0,182,268_AL_.jpg",
            "directors": [
                "Victor Saville"
            ],
            "actors": [
                "Alfred Drayton",
                "Cyril Smith",
                "D.A. Clarke-Smith",
                "Edmund Gwenn",
                "Eliot Makeham",
                "Gibb McLaughlin",
                "Hartley Power",
                "Jessie Matthews",
                "Mary Jerrold",
                "Max Miller",
                "Muriel Aked",
                "Percy Parsons",
                "Richard Hulton",
                "Sonnie Hale",
                "Ursula Jeans"
            ],
            "writers": [
                "G.H. Moresby-White",
                "Sidney Gilliat"
            ],
            "genres": [
                "Comedy",
                "Drama"
            ]
        },
        {
            "id": 24040,
            "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24040?format=api",
            "imdb_url": "https://www.imdb.com/title/tt0024040/",
            "title": "From Headquarters",
            "year": 1933,
            "imdb_score": "6.5",
            "votes": 215,
            "image_url": "https://m.media-amazon.com/images/M/MV5BYTNjMTJlYWItZGZlMC00MjgzLWI0NzYtZjZkMDAxNGE3YTYwXkEyXkFqcGdeQXVyMTk2MzI2Ng@@._V1_UY268_CR0,0,182,268_AL_.jpg",
            "directors": [
                "William Dieterle"
            ],
            "actors": [
                "Dorothy Burgess",
                "Edward Ellis",
                "Eugene Pallette",
                "George Brent",
                "Henry O'Neill",
                "Hobart Cavanaugh",
                "Hugh Herbert",
                "Ken Murray",
                "Kenneth Thomson",
                "Margaret Lindsay",
                "Murray Kinnell",
                "Robert Barrat",
                "Theodore Newton"
            ],
            "writers": [
                "Peter Milne",
                "Robert N. Lee"
            ],
            "genres": [
                "Drama",
                "Mystery"
            ]
        },
        {
            "id": 24044,
            "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24044?format=api",
            "imdb_url": "https://www.imdb.com/title/tt0024044/",
            "title": "Gabriel Over the White House",
            "year": 1933,
            "imdb_score": "6.4",
            "votes": 1157,
            "image_url": "https://m.media-amazon.com/images/M/MV5BOTQ3NTg2OWUtYmU5Yi00NDUyLWEyYTktZDEzOTY1MzU4N2IyXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UY268_CR1,0,182,268_AL_.jpg",
            "directors": [
                "Gregory La Cava"
            ],
            "actors": [
                "Arthur Byron",
                "C. Henry Gordon",
                "Claire Du Brey",
                "David Landau",
                "Dickie Moore",
                "Franchot Tone",
                "Jean Parker",
                "Karen Morley",
                "Samuel S. Hinds",
                "Walter Huston",
                "William Pawley"
            ],
            "writers": [
                "Bertram Bloch",
                "Carey Wilson"
            ],
            "genres": [
                "Drama",
                "Fantasy",
                "Romance"
            ]
        }
    ]
}