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

{
    "id": 10789322,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10789322?format=api",
    "title": "Panther",
    "original_title": "Panther",
    "year": 2019,
    "date_published": "2019-08-09",
    "duration": 127,
    "description": "After a series of bomb blasts in Mumbai, terrorists threaten to do the same in Kolkata and Delhi unless their demands are met. Panther, the country's best RAW agent, embarks on a solo mission to rout the terrorist outfit. Will he succeed?",
    "long_description": "Terrorism has become the biggest enemy of mankind in today's time, and we often fall prey to their inhuman acts. Despite our desperate attempts, we fail to stop the terrorist organizations from harming us. But is this the reality - no reality is often different from what it seems to be. The story is a detailed account of Panther's mission. Panther was alone in the mission but love for the Country never let him feel lonely. He traveled to 3 different Countries and faced the most dangerous and risky situations, but finally come up trump. He ensures that no further attack was conducted in India. And since the mission was a covert operation without the Indian Government's consent, it remained hidden from one and all. The story shall present the inspirational story to every India and people Worldwide. Panther's determination, his love for the Country and his fearless persona help him accomplish this task, which wouldn't have been possible for anyone else. This is why Panther is known as ...",
    "avg_vote": "4.3",
    "imdb_score": "4.2",
    "votes": 189,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 6,
    "reviews_from_critics": null,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOTdmZDNmZDItNDVlMC00ODg4LWE5NGUtYmMwOTU0M2I2Y2IyXkEyXkFqcGdeQXVyMzQ5MzkwMDY@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Abhijit Bhattacharya",
        "Amar Nath Chatterjee",
        "Arnab Bhadra",
        "Arnob Dutta",
        "Biswarup Biswas",
        "Pradip Dhar",
        "Prasanta Kumar Dey",
        "Priyanko Chatterjee",
        "Ramswarup Ganguly",
        "Saswata Chatterjee",
        "Saurav Chakrabarti",
        "Shantilal Chatterjee",
        "Sraddha Das",
        "Subhasish Chatterjee",
        "Tananya Bhattacharyya"
    ],
    "directors": [
        "Anshuman Pratyush"
    ],
    "writers": [
        "Anshuman Pratyush",
        "Prameet"
    ],
    "genres": [
        "Action"
    ],
    "countries": [
        "India"
    ],
    "languages": [
        "Bengali"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Jeetz Filmworks"
}