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

{
    "id": 21132,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21132?format=api",
    "title": "The Matrimonial Bed",
    "original_title": "The Matrimonial Bed",
    "year": 1930,
    "date_published": "1930-08-02",
    "duration": 69,
    "description": "It is the fifth anniversary of the death of Adolphe Noblet who died in a train wreck. His servant and friends still worship him but don't care much for his wife Sylvaine's second husband ...",
    "long_description": "It is the fifth anniversary of the death of Adolphe Noblet who died in a train wreck. His servant and friends still worship him but don't care much for his wife Sylvaine's second husband Gustave with whom she has recently had a child. Sylvaine's friends recommend that she use a new hairdresser, Leopold Trebel. However, when this womanizing coiffeur arrives, he turns out to be Adolphe suffering from amnesia. A doctor restores his memory using hypnosis but in the process wipes out everything that has happened to him over the last five years. Adolphe thinks he has been unconscious for only a few hours and the doctor tries to keep the truth from him thinking the shock could kill him. This becomes even more difficult as Leopold's wife, with whom he has had two sets of twins, shows up and insists he is Leopold. Gustave finally tells Adolphe/Leopold the truth and he is left with the decision of which man and in which family he wants to be.",
    "avg_vote": "5.7",
    "imdb_score": "5.7",
    "votes": 154,
    "metascore": null,
    "budget": 208000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 5,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjcwMDQ3MDAwM15BMl5BanBnXkFtZTgwMDQ2MDkwMzE@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Arthur Edmund Carewe",
        "Beryl Mercer",
        "Flora Finch",
        "Florence Eldridge",
        "Frank Fay",
        "James Bradbury Sr.",
        "James Gleason",
        "Lilyan Tashman",
        "Marion Byron",
        "Vivien Oakland"
    ],
    "directors": [
        "Michael Curtiz"
    ],
    "writers": [
        "André Mouëzy-Éon",
        "Yves Mirande"
    ],
    "genres": [
        "Comedy"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Warner Bros."
}