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

{
    "id": 11418452,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11418452?format=api",
    "title": "Kholop",
    "original_title": "Kholop",
    "year": 2019,
    "date_published": "2019-12-26",
    "duration": 109,
    "description": "An ill-behaved, greedy man wakes up in a 19th century village and finds he is a peasant.",
    "long_description": "Born into an oligarch family, young Grigory is so caught up in his pampered lifestyle he thinks he is above the law. When he goes too far with his escapades and faces a jail sentence, his father takes radical measures. With the help of his old-time friend, a psychologist, he comes up with a plan to 'rehabilitate' his unruly son. They find an abandoned village and reconstruct it, 19th century style. Soon after that, Grigory gets into an arranged,make-believe car accident, and \"goes back in time\". And so, a sophisticated psychological experiment begins, where a spoiled rich kid gets 'reincarnated' as a serf who lives in a barn on his master's estate. All the people he meets there are hired actors whose job is to impact Grigory's personality in such a way as to turn his life around. There are hidden surveillance cameras hidden in every corner of the 'estate', and a team of psychologists watches Grigory's every move. He will have to learn how to communicate properly with people, to ...",
    "avg_vote": "6.7",
    "imdb_score": "6.7",
    "votes": 2915,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 44542660,
    "reviews_from_users": 12,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYmZmYjRiN2EtOWQ3NC00YWI5LWEzYmEtYjIxOTdmYjY5NGQ4XkEyXkFqcGdeQXVyNjcxMTIwNzU@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Aleksandr Samoylenko",
        "Aleksandra Bortich",
        "Anastasiya Kozyreva",
        "Ivan Okhlobystin",
        "Kirill Nagiev",
        "Mariya Mironova",
        "Mikhail Antonov",
        "Mikhail Babichev",
        "Milos Bikovic",
        "Oleg Komarov",
        "Olga Dibtseva",
        "Sergey Sotserdotskiy",
        "Sophia Zayka",
        "Vadim Demchog",
        "Vilen Babichev"
    ],
    "directors": [
        "Klim Shipenko"
    ],
    "writers": [
        "Anton Morozenko",
        "Darya Gratsevich"
    ],
    "genres": [
        "Comedy"
    ],
    "countries": [
        "Russia"
    ],
    "languages": [
        "Russian"
    ],
    "rated": "16",
    "company": "Yellow"
}