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

{
    "count": 85851,
    "next": "https://ocmovies.debinformatique.fr/api/v1/titles/?format=api&page=261",
    "previous": "https://ocmovies.debinformatique.fr/api/v1/titles/?format=api&page=259",
    "results": [
        {
            "id": 22879,
            "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22879?format=api",
            "imdb_url": "https://www.imdb.com/title/tt0022879/",
            "title": "Addio alle armi",
            "year": 1932,
            "imdb_score": "6.5",
            "votes": 5066,
            "image_url": "https://m.media-amazon.com/images/M/MV5BMzM2ODc0NTY3OF5BMl5BanBnXkFtZTgwMjQwNzkzMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
            "directors": [
                "Frank Borzage"
            ],
            "actors": [
                "Adolphe Menjou",
                "Blanche Friderici",
                "Gary Cooper",
                "Gilbert Emery",
                "Helen Hayes",
                "Jack La Rue",
                "Mary Forbes",
                "Mary Philips"
            ],
            "writers": [
                "Benjamin Glazer",
                "Oliver H.P. Garrett"
            ],
            "genres": [
                "Drama",
                "Romance",
                "War"
            ]
        },
        {
            "id": 22882,
            "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22882?format=api",
            "imdb_url": "https://www.imdb.com/title/tt0022882/",
            "title": "Il levriero del mare",
            "year": 1932,
            "imdb_score": "5.7",
            "votes": 493,
            "image_url": "https://m.media-amazon.com/images/M/MV5BNzk4ODAxODI0NF5BMl5BanBnXkFtZTgwMzgzNzkxMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
            "directors": [
                "Harry A. Pollard",
                "Sam Wood"
            ],
            "actors": [
                "Albert Gran",
                "Arthur Byron",
                "Ben Hendricks Jr.",
                "Cliff Edwards",
                "Conrad Nagel",
                "Kenneth Thomson",
                "Madge Evans",
                "Warburton Gamble",
                "William Haines"
            ],
            "writers": [
                "Byron Morgan",
                "Ralph Spence"
            ],
            "genres": [
                "Comedy",
                "Romance",
                "Sport"
            ]
        },
        {
            "id": 22888,
            "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22888?format=api",
            "imdb_url": "https://www.imdb.com/title/tt0022888/",
            "title": "The Final Edition",
            "year": 1932,
            "imdb_score": "6.3",
            "votes": 100,
            "image_url": "https://m.media-amazon.com/images/M/MV5BYjhjMTUyMDktMzIyNy00YjY1LWJlNGUtODE2NzgyNjUzOTBiXkEyXkFqcGdeQXVyMTcyODY2NDQ@._V1_UY268_CR84,0,182,268_AL_.jpg",
            "directors": [
                "Howard Higgin"
            ],
            "actors": [
                "Bertha Mann",
                "Bradley Page",
                "James Donlan",
                "Mae Clarke",
                "Mary Doran",
                "Morgan Wallace",
                "Pat O'Brien",
                "Phil Tead",
                "Robert Emmett O'Connor"
            ],
            "writers": [
                "Dorothy Howell",
                "Roy Chanslor"
            ],
            "genres": [
                "Crime",
                "Drama"
            ]
        },
        {
            "id": 22890,
            "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22890?format=api",
            "imdb_url": "https://www.imdb.com/title/tt0022890/",
            "title": "Fireman, Save My Child!",
            "year": 1932,
            "imdb_score": "5.9",
            "votes": 227,
            "image_url": "https://m.media-amazon.com/images/M/MV5BNzNkZmEyNzQtNDgwNC00MWM0LWI0YzEtNGVhMDZmYWY2YzdmXkEyXkFqcGdeQXVyMTY5Nzc4MDY@._V1_UY268_CR8,0,182,268_AL_.jpg",
            "directors": [
                "Lloyd Bacon"
            ],
            "actors": [
                "Curtis Benton",
                "Evalyn Knapp",
                "Frank Shellenback",
                "George MacFarlane",
                "Guy Kibbee",
                "Joe E. Brown",
                "Lilian Bond",
                "Richard Carle",
                "Virginia Sale"
            ],
            "writers": [
                "Ray Enright",
                "Robert Lord"
            ],
            "genres": [
                "Comedy",
                "Sport"
            ]
        },
        {
            "id": 22897,
            "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22897?format=api",
            "imdb_url": "https://www.imdb.com/title/tt0022897/",
            "title": "Carne",
            "year": 1932,
            "imdb_score": "6.5",
            "votes": 507,
            "image_url": "https://m.media-amazon.com/images/M/MV5BNDg4MTc1NTktNGI5My00NTg1LTlhNmUtOGQ4MzcyMDljZThiXkEyXkFqcGdeQXVyMTk2MzI2Ng@@._V1_UX182_CR0,0,182,268_AL_.jpg",
            "directors": [
                "John Ford"
            ],
            "actors": [
                "Edward Brophy",
                "Greta Meyer",
                "Herman Bing",
                "Jean Hersholt",
                "John Miljan",
                "Karen Morley",
                "Ricardo Cortez",
                "Vince Barnett",
                "Wallace Beery"
            ],
            "writers": [
                "Edmund Goulding",
                "Leonard Praskins"
            ],
            "genres": [
                "Drama",
                "Romance"
            ]
        }
    ]
}