This endpoint gives access to detailed movie information from 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.

Not all the detailed data is present in the title list endpoint available here. Only the detailed information provided on the current endpoint gives access to e.g. the description, long description or buget and income info about the movie.

If you need to get a full list of available genres, refer to the genres endpoint.

Please, refer to the title list endpoint to get various search or sort capabilities, thereby allowing to efficiently identify the movies you want to look at.

GET /api/v1/titles/11054164?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 11054164,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11054164?format=api",
    "title": "Yummy",
    "original_title": "Yummy",
    "year": 2019,
    "date_published": "2019-12-18",
    "duration": 88,
    "description": "An orgy of blood, violence and fun in which a young couple travel to a shabby Eastern European hospital for plastic surgery. Once there things unravel.",
    "long_description": "Yummy is an orgy of blood, violence and fun in which a young couple travel to a shabby Eastern European hospital for plastic surgery. The young woman wants a breast reduction. Her mother comes along for yet another face-lift. Wandering through an abandoned ward the boyfriend stumbles upon a young woman, gagged and strapped to an operating table; she is the result of an experimental rejuvenation treatment. He frees her, but does not realize he just caused the outbreak of a virus that will change doctors, patients and his mother-in-law into bloodthirsty zombies.",
    "avg_vote": "6.0",
    "imdb_score": "5.9",
    "votes": 2910,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 38,
    "reviews_from_critics": 49,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYjZkMjE3NjgtZGRjOS00YzIxLTkyZmMtNGZhNThlOTZiODc5XkEyXkFqcGdeQXVyMTIyNDQxMTE@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Annick Christiaens",
        "Bart Hollanders",
        "Benjamin Ramon",
        "Clara Cleymans",
        "Dimitri 'Vegas' Thivaios",
        "Eric Godon",
        "Hannelore Vens",
        "Isabelle van Hecke",
        "Joshua Rubin",
        "Louise Bergez",
        "Maaike Neuville",
        "Noureddine Farihi",
        "Stijn Van Opstal",
        "Taeke Nicolaï",
        "Tom Audenaert"
    ],
    "directors": [
        "Lars Damoiseaux"
    ],
    "writers": [
        "Eveline Hagenbeek",
        "Lars Damoiseaux"
    ],
    "genres": [
        "Action",
        "Comedy",
        "Horror"
    ],
    "countries": [
        "Belgium"
    ],
    "languages": [
        "Dutch",
        "English"
    ],
    "rated": "18",
    "company": "10.80 Films"
}