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

{
    "id": 11379468,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11379468?format=api",
    "title": "Patham Classile Pranayam",
    "original_title": "Patham Classile Pranayam",
    "year": 2019,
    "date_published": "2019-12-06",
    "duration": 121,
    "description": "Vivek and Sambhu are rival classmates. Both are infatuated with Meera but Meera is only interested in studies. Will Meera choose anyone? Their final exams are approaching fast.",
    "long_description": "This film is a versatile love story during the school life of class X students. Class X is the important phase of the school life. It is during this time love blossoms in students' heart where mostly it goes unexpressed. This is the love story of the classmates Vivek and Meera and also about their friends. Obstacles and hardships are inevitable in anybody's life. The opponent of Vivek is his classmate Sambhu. Both Vivek and Sambhu are interested in Meera but Meera is a typical study girl and is not interested in infatuations. After their final exams both Vivek and Sambhu are facing a serious issue regarding Meera. On whose love is Meera going to take her stand forms the climax of the movie ..",
    "avg_vote": "7.9",
    "imdb_score": "7.8",
    "votes": 660,
    "metascore": null,
    "budget": 20000000,
    "budget_currency": "INR",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 12,
    "reviews_from_critics": 1,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMDMzNTQwNTMtYjZiYS00Yjg5LWIzMDEtY2Y5ZTg0NzQxNTYzXkEyXkFqcGdeQXVyODY1NTE0NDY@._V1_UY268_CR9,0,182,268_AL_.jpg",
    "actors": [
        "Abhaya Raju",
        "Arya Devi",
        "Charmila",
        "Jayan Cherthala",
        "Kalabhavan Haneef",
        "Kannan Santhosh",
        "Kiran Raj",
        "Lishoy",
        "Manoj Guiness",
        "Mustafa Lion",
        "Naseer Sankranthy",
        "Pradeep Kottayam",
        "Sunil Sukhada",
        "Vaishnav",
        "Vaishnav Menon"
    ],
    "directors": [
        "Nitheesh K. Nair"
    ],
    "writers": [
        "Nitheesh K. Nair",
        "Prasoon Sukumaran"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "India"
    ],
    "languages": [
        "Malayalam"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Palmstone Multimedia"
}