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

{
    "id": 11697832,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11697832?format=api",
    "title": "DAU. Natasha",
    "original_title": "DAU. Natasha",
    "year": 2020,
    "date_published": "2020-02-26",
    "duration": 138,
    "description": "Natasha works in the canteen of a secret Soviet research institute. She drinks a lot, likes to talk about love and embarks on an affair. State security intervenes. A tale of violence that is as radical as it is provocative.",
    "long_description": "A tension-weary couple negotiate a path between defiance and compliance in a closed scientific Institute in Moscow at the beginning of the Cold War-during Stalin-era: Natasha runs the canteen of secret Soviet research institute. When the customers have all gone home, she gossips and bickers tensely with her younger assistant- the doctor's daughter Olga, who is too lazy to help clean up and mocks Natasha for a life wasted in the affair she has been having with a married man, Blinov. The two women have a surrogate mother-daughter relationship, very much love-hate, with at times a borderline-erotic intimacy. One evening, they get roaring drunk with all the scientists and apparatchiks who have come in to celebrate a sinister experiment in radiation conducted by a visiting French scientist Luc, who goes to bed with Natasha. And then, with a sickening inevitability, she is pulled in for questioning by the security services, in the form of hatchet-faced officer Azhippo.",
    "avg_vote": "6.4",
    "imdb_score": "6.4",
    "votes": 866,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 4,
    "reviews_from_critics": 19,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMDVkOWRiYjMtZDA1NS00YTdiLWI0MzQtYzAyYzRkNTZkMDc5XkEyXkFqcGdeQXVyMjc5NDYwNTU@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Alexandr Bozhik",
        "Alexei Blinov",
        "Anatoliy Sidko",
        "Luc Bigé",
        "Natalia Berezhnaya",
        "Olga Shkabarnya",
        "Raisa Voloshchuk",
        "Valery Andreev",
        "Vladimir Azhippo"
    ],
    "directors": [
        "Ilya Khrzhanovskiy",
        "Jekaterina Oertel"
    ],
    "writers": [
        "Ilya Khrzhanovskiy",
        "Kora Landau-Drobantseva"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "Germany",
        "Russia",
        "UK",
        "Ukraine"
    ],
    "languages": [
        "English",
        "Russian",
        "Ukrainian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Phenomen Berlin Filmproduktions"
}