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

{
    "id": 10323,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10323?format=api",
    "title": "Il gabinetto del dottor Caligari",
    "original_title": "Das Cabinet des Dr. Caligari",
    "year": 1920,
    "date_published": "1920-02-27",
    "duration": 76,
    "description": "Hypnotist Dr. Caligari uses a somnambulist, Cesare, to commit murders.",
    "long_description": "Francis, a young man, recalls in his memory the horrible experiences he and his fiancée Jane recently went through. It is the annual fair in Holstenwall. Francis and his friend Alan visit The Cabinet of Dr. Caligari, an exhibit where the mysterious doctor shows the somnambulist Cesare, and awakens him for some moments from his death-like sleep. When Alan asks Cesare about his future, Cesare answers that he will die before dawn. The next morning Alan is found dead. Francis suspects Cesare of being the murderer, and starts spying on him and Dr. Caligari. The following night Cesare is going to stab Jane in her bed, but softens when he sees the beautiful woman, and instead of committing another murder, he abducts her. Jane's father awakens because of the noise, and he and some servants follow the fleeing Cesare. When Cesare cannot outrun his pursuers anymore, he gently places Jane down on the ground, and runs away. Francis and the police investigate the caravan of Dr. Caligari, but the ...",
    "avg_vote": "8.1",
    "imdb_score": "8.1",
    "votes": 56820,
    "metascore": null,
    "budget": 18000,
    "budget_currency": "USD",
    "usa_gross_income": 8811,
    "worldwide_gross_income": 8811,
    "reviews_from_users": 237,
    "reviews_from_critics": 160,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNWJiNGJiMTEtMGM3OC00ZWNlLTgwZTgtMzdhNTRiZjk5MTQ1XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Conrad Veidt",
        "Friedrich Feher",
        "Hans Heinrich von Twardowski",
        "Lil Dagover",
        "Rudolf Lettinger",
        "Werner Krauss"
    ],
    "directors": [
        "Robert Wiene"
    ],
    "writers": [
        "Carl Mayer",
        "Hans Janowitz"
    ],
    "genres": [
        "Fantasy",
        "Horror",
        "Mystery"
    ],
    "countries": [
        "Germany"
    ],
    "languages": [
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Decla-Bioscop AG"
}