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

{
    "id": 15174,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/15174?format=api",
    "title": "I Nibelunghi: La vendetta di Crimilde",
    "original_title": "Die Nibelungen: Kriemhilds Rache",
    "year": 1924,
    "date_published": "1925-03-16",
    "duration": 129,
    "description": "After Siegfried's dead, Kriemhild marries Etzel, the King of the Huns. She gives birth to a child, and invites her brothers for a party. She tries to persuade Etzel and the other Huns, that...",
    "long_description": "After Siegfried's dead, Kriemhild marries Etzel, the King of the Huns. She gives birth to a child, and invites her brothers for a party. She tries to persuade Etzel and the other Huns, that they kill Hagen, the murderer of Siegfried, but he is protected by her brothers. A fierce battle begins to force her brothers to give Hagen to her.",
    "avg_vote": "7.9",
    "imdb_score": "8.0",
    "votes": 3926,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 20,
    "reviews_from_critics": 42,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMWRlYWI5NDUtMDJlMC00Y2E2LWExNDItOWExNjY0MmViMTFmXkEyXkFqcGdeQXVyMzg1ODEwNQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Annie Röttgen",
        "Bernhard Goetzke",
        "Erwin Biswanger",
        "Georg John",
        "Gertrud Arnold",
        "Hans Adalbert Schlettow",
        "Hans Carl Mueller",
        "Hardy von Francois",
        "Hubert Heinrich",
        "Iris Roberts",
        "Margarete Schön",
        "Rudolf Klein-Rogge",
        "Rudolf Rittner",
        "Theodor Loos",
        "Yuri Yurovsky"
    ],
    "directors": [
        "Fritz Lang"
    ],
    "writers": [
        "Thea von Harbou"
    ],
    "genres": [
        "Adventure",
        "Drama",
        "Fantasy"
    ],
    "countries": [
        "Germany"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Decla-Bioscop AG"
}