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

{
    "id": 11402054,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11402054?format=api",
    "title": "Viddana",
    "original_title": "Viddana",
    "year": 2020,
    "date_published": "2020-01-16",
    "duration": 103,
    "description": "Welcome to the kitchen of the perfect maid Stefania Chornenko where she excels in cooking while intoxicating the marriage of her half-sister master Adelia Anger against the backdrop of 1900 small town on the outskirts of Austro-Hungary.",
    "long_description": "Two young women caught in a toxic relationship are trying to ultimately grow up against the backdrop of the provincial Eastern Austro-Hungary 1900. The plot revolves around the controversial relationship between maid Stefania Chornenko and blueblood Adelia Anger. Both Stefania's parents and Adelia's mother died during the fire in 1868. Doctor Anger, Adelia's father, adopted neighbors' orphan. Girls grew up together to become as close as sisters, though Stefania served as the maid. This attachment develops into love-trap: on one hand full of mutual manipulation and jealousy, but equally based on care and devotion. The illusion of balance was broken when Adelia married sculptor Petro. Everything gets even more complicated when Joseph, the old love interest of Stefa, returns to town as the priest and married man. The screen adaptation of 'Felix Austria' bestselling novel by Sophia Andrukhovych.",
    "avg_vote": "7.2",
    "imdb_score": "7.0",
    "votes": 278,
    "metascore": null,
    "budget": 60000000,
    "budget_currency": "UAH",
    "usa_gross_income": null,
    "worldwide_gross_income": 251997,
    "reviews_from_users": 2,
    "reviews_from_critics": null,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMzg1NjdkMDYtYTA1OS00YTM0LWFhMjUtMDkxODAyYjYwY2VhXkEyXkFqcGdeQXVyNTg4ODkzODA@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Ada Rogovtseva",
        "Aleksandr Kobzar",
        "Alesya Romanova",
        "Irma Vitovskaya",
        "Kateryna Kukhar",
        "Marianna Januszewicz",
        "Maryna Koshkina",
        "Nataliya Vasko",
        "Roman Lutskyi",
        "Sebastian Cybulski",
        "Sergiy Volosovets",
        "Vazha Goderdzishvili",
        "Yasin Faradzhallakh",
        "Yevgen Yanovych"
    ],
    "directors": [
        "Christina Sivolap"
    ],
    "writers": [
        "Alina Semeryakova",
        "Sofia Andrukhovych"
    ],
    "genres": [
        "Drama",
        "Fantasy",
        "History"
    ],
    "countries": [
        "Ukraine"
    ],
    "languages": [
        "Ukrainian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Film.ua"
}