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

{
    "id": 10793644,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10793644?format=api",
    "title": "The Vigil - Non ti lascerĂ  andare",
    "original_title": "The Vigil",
    "year": 2019,
    "date_published": "2020-09-10",
    "duration": 89,
    "description": "A man providing overnight watch to a deceased member of his former Orthodox Jewish community finds himself opposite a malevolent entity, in writer-director Keith Thomas' electrifying feature debut.",
    "long_description": "In the Hasidic community of Boro Park, Brooklyn, a despondent young man, short on both faith and funds, reluctantly agrees to assume the responsibility of an overnight shimmer and fulfill the Jewish practice of watching over the body of a deceased member of the Orthodox community. With only the company of the recently departed and an ailing widow who expresses cryptic reservations as to the man's ability to carry out the task, he soon finds himself exposed to a terrifying haunting within the claustrophobic confines of a home that has become host to a malevolent entity. In what is essentially a one-man show, Dave Davis is profoundly affecting in his portrayal of the hesitant sentinel, exuding an empathetic combination of frayed nerves and timid weariness. Throughout this uncanny night, his vigil gradually transforms into a harrowing spiritual investigation of both his cursed surroundings and his pitiable past - a journey in which the very recesses of his community's collective trauma ...",
    "avg_vote": "5.8",
    "imdb_score": "5.5",
    "votes": 1036,
    "metascore": "66.0",
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 742476,
    "reviews_from_users": 16,
    "reviews_from_critics": 94,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZjY4ZDhlNDUtMDkxZC00YzJlLWI4ZDctMjNjMTE0ODYwY2MzXkEyXkFqcGdeQXVyNjEwNTM2Mzc@._V1_UY268_CR9,0,182,268_AL_.jpg",
    "actors": [
        "Dave Davis",
        "Dun Laskey",
        "Efraim Miller",
        "Fred Melamed",
        "Hershy Fishman",
        "Lea Kalisch",
        "Lynn Cohen",
        "Malky Goldman",
        "Menashe Lustig",
        "Moshe Lobel",
        "Nati Rabinowitz",
        "Rob Tunstall",
        "Ronald Cohen",
        "Spencer Zender"
    ],
    "directors": [
        "Keith Thomas"
    ],
    "writers": [
        "Keith Thomas"
    ],
    "genres": [
        "Horror",
        "Mystery",
        "Thriller"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Yiddish"
    ],
    "rated": "16",
    "company": "Blumhouse Productions"
}