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

{
    "id": 11613548,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11613548?format=api",
    "title": "Kathbirali",
    "original_title": "Kathbirali",
    "year": 2019,
    "date_published": "2020-01-17",
    "duration": 115,
    "description": "Hasu is a young, innocent village boy. He has none to be called as family in this world. That's why he has made all the villagers his family members. Hasu's life revolve around, love of his...",
    "long_description": "Hasu is a young, innocent village boy. He has none to be called as family in this world. That's why he has made all the villagers his family members. Hasu's life revolve around, love of his life-Kajol and his childhood friend-Anis. When finally Hasu is going to be settled and live happily ever after with Kajol, life takes an unexpected turn and everything falls apart. When Hasu's love and friendship are at stake, what will Hasu do?",
    "avg_vote": "7.5",
    "imdb_score": "7.5",
    "votes": 375,
    "metascore": null,
    "budget": 7200000,
    "budget_currency": "BDT",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 18,
    "reviews_from_critics": null,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNDJhZmVhYjgtNzdmMy00NzVhLWEwZjYtYTQwOGIyMTYwY2QxXkEyXkFqcGdeQXVyNDE2MDI4Mzc@._V1_UY268_CR87,0,182,268_AL_.jpg",
    "actors": [
        "Abul Kalam Azad Setu",
        "Asaduzzaman Abir",
        "Hindol Roy",
        "Orchita Sporshia",
        "Sayed Zaman Shawon",
        "Shahriar Ferdous Sazeeb",
        "Shilpi Sharkar Apu",
        "Tanzina Rahman Tasnim"
    ],
    "directors": [
        "Niamul Mukta"
    ],
    "writers": [
        "Muhammad Tasneemul Hasan"
    ],
    "genres": [
        "Drama",
        "Thriller"
    ],
    "countries": [
        "Bangladesh"
    ],
    "languages": [
        "Bengali"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Chilekotha Films"
}