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

{
    "id": 20286,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20286?format=api",
    "title": "Prapancha Pash",
    "original_title": "Prapancha Pash",
    "year": 1929,
    "date_published": "2008-01-01",
    "duration": 74,
    "description": "Two neighboring Indian kingdoms are ruled by cousins - King Ranjit and King Sohat. Unbeknownst to Ranjit, Sohat is plotting to seize control of his kingdom.",
    "long_description": "With King Ranjit visiting him, King Sohat sees an opportunity to kill his young cousin and take over his kingdom. One of Sohat's henchmen fells Ranjit with a poisoned arrow, making it look like a simple hunting accident. Ranjit is taken to the home a healer who has withdrawn from society and lives in a simple hut with his beautiful daughter Sunita. Ranjit survives and love blossoms between between him and Sunita and they are soon engaged. Sohat now sees an opportunity not only to get control of Ranjit's kingdom but also Sunita as his own bride. On eve of Ranjit wedding, Sohat challenges him to a game of dice. Ranjit heartily agrees not realizing Sohat is using crooked dice.",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 735,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 2306,
    "reviews_from_users": 8,
    "reviews_from_critics": 14,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTIyMjMxNDA1M15BMl5BanBnXkFtZTcwMDQ5MzM2MQ@@._V1_UY268_CR5,0,182,268_AL_.jpg",
    "actors": [
        "Charu Roy",
        "Himanshu Rai",
        "Lala Bijoykishen",
        "Modhu Bose",
        "Sarada Gupta",
        "Seeta Devi",
        "Tincory Chakrabarty"
    ],
    "directors": [
        "Franz Osten"
    ],
    "writers": [
        "Niranjan Pal",
        "W.A. Burton"
    ],
    "genres": [
        "Adventure",
        "Drama",
        "Romance"
    ],
    "countries": [
        "Germany",
        "India",
        "UK"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "British Instructional Films (BIF)"
}