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

{
    "id": 24184,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24184?format=api",
    "title": "L'uomo invisibile",
    "original_title": "The Invisible Man",
    "year": 1933,
    "date_published": "1935-04-29",
    "duration": 71,
    "description": "A scientist finds a way of becoming invisible, but in doing so, he becomes murderously insane.",
    "long_description": "A mysterious man, whose head is completely covered in bandages, wants a room. The proprietors of the pub aren't used to making their house an inn during the winter months, but the man insists. They soon come to regret their decision. The man quickly runs out of money, and he has a violent temper besides. Worse still, he seems to be some kind of chemist and has filled his room with messy chemicals, test tubes, beakers and the like. When they try to throw him out, they make a ghastly discovery. Meanwhile, Flora Cranley appeals to her father to do something about the mysterious disappearance of Dr. Griffin, his assistant and her sweetheart. Her father's other assistant, the cowardly Dr. Kemp, is no help. He wants her for himself. Little does Flora guess that the wild tales, from newspapers and radio broadcasts, of an invisible homicidal maniac are stories of Dr. Griffin himself, who has discovered the secret of invisibility and gone mad in the process.",
    "avg_vote": "7.7",
    "imdb_score": "7.7",
    "votes": 30240,
    "metascore": "87.0",
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 27105,
    "reviews_from_users": 194,
    "reviews_from_critics": 109,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTM3NzkyOTIzNl5BMl5BanBnXkFtZTcwNTI4MzI2OA@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Claude Rains",
        "Donald Stuart",
        "Dudley Digges",
        "E.E. Clive",
        "Forrester Harvey",
        "Gloria Stuart",
        "Harry Stubbs",
        "Henry Travers",
        "Holmes Herbert",
        "Merle Tottenham",
        "Una O'Connor",
        "William Harrigan"
    ],
    "directors": [
        "James Whale"
    ],
    "writers": [
        "H.G. Wells",
        "R.C. Sherriff"
    ],
    "genres": [
        "Horror",
        "Sci-Fi"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Universal Pictures"
}