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

{
    "id": 12505468,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/12505468?format=api",
    "title": "Kadakh",
    "original_title": "Kadakh",
    "year": 2019,
    "date_published": "2020-06-18",
    "duration": 108,
    "description": "Sunil is home alone when the doorbell rings. The stranger at the door is the husband of Chhaya, a woman that Sunil is having an affair with. The man asks many uncomfortable questions about their affair, becoming more and more intrusive.",
    "long_description": "On the day Sunil (Ranvir Shorey) and Malti (Mansi Multani) are hosting a Diwali party, Sunil is visited by an uninvited guest - the husband of the woman he is having an extramarital affair with. What follows is a series of events that turns their festival of lights into a night of dark revelations.",
    "avg_vote": "6.9",
    "imdb_score": "6.9",
    "votes": 996,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 44,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYTQzMWE4NDYtMWQ3Ni00MGVmLTk1ZTgtYTQ3ZDQ5NzY2Zjg5XkEyXkFqcGdeQXVyMTE5ODY5OTcz._V1_.jpg",
    "actors": [
        "Chandrchoor Rai",
        "Cyrus Sahukar",
        "Kaizaad Kotwal",
        "Kalki Koechlin",
        "Krishna Raaz",
        "Mansi Multani",
        "Minty Tejpal",
        "Nupur Asthana",
        "Palomi Ghosh",
        "Rajat Kapoor",
        "Ranvir Shorey",
        "Sagar Deshmukh",
        "Sheena Khalid",
        "Shruti Seth",
        "Tara Sharma"
    ],
    "directors": [
        "Rajat Kapoor"
    ],
    "writers": [
        "Rajat Kapoor"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Thriller"
    ],
    "countries": [
        "India"
    ],
    "languages": [
        "Hindi"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Mithya Talkies"
}