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

{
    "count": 85851,
    "next": null,
    "previous": "https://ocmovies.debinformatique.fr/api/v1/titles/?format=api&page=17170",
    "results": [
        {
            "id": 12876132,
            "url": "https://ocmovies.debinformatique.fr/api/v1/titles/12876132?format=api",
            "imdb_url": "https://www.imdb.com/title/tt12876132/",
            "title": "Deathstroke Knights & Dragons: The Movie",
            "year": 2020,
            "imdb_score": "6.4",
            "votes": 1196,
            "image_url": "https://m.media-amazon.com/images/M/MV5BMWQ4MzUyZDQtNmY0OC00ZjUyLTljZDMtYTYwM2U1ZjE3MTE3XkEyXkFqcGdeQXVyNDU4NzA4NDk@._V1_UX182_CR0,0,182,268_AL_.jpg",
            "directors": [
                "Sung Jin Ahn"
            ],
            "actors": [
                "Castulo Guerra",
                "Chris Jai Alex",
                "Colin Salmon",
                "Faye Mata",
                "Griffin Puatu",
                "Michael Chiklis",
                "Minae Noji",
                "Noshir Dalal",
                "Panta Mosleh",
                "Sasha Alexander"
            ],
            "writers": [
                "J.M. DeMatteis"
            ],
            "genres": [
                "Action",
                "Animation"
            ]
        }
    ]
}