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

{
    "id": 18528,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18528?format=api",
    "title": "Lo sconosciuto",
    "original_title": "The Unknown",
    "year": 1927,
    "date_published": "1928-04-09",
    "duration": 63,
    "description": "A criminal on the run hides in a circus and seeks to possess the daughter of the ringmaster at any cost.",
    "long_description": "Alonzo is an armless knife thrower and gun shooter for a circus---or so he appears. He is actually a criminal with his arms intact. He and his accomplice, Cojo (a little person), are hiding from the police. Alonzo views his disguise as perfect, especially since it keeps from view an unusual deformity of his left hand that would immediately give him away as the criminal the police are searching for. Nanon, the daughter of Zanzi, the circus owner, is the target in his act. Although Alonzo is in love with her, Nanon's father despises him. Malabar, the circus strong man, is attracted to Nanon but she is repulsed by his uninhibited sexual advances and desire to touch and hold her. Her phobia extends to the touch of any man's hand. Alonzo feeds her fears in the hopes that Nanon will fall in love with him since he is \"armless.\" Because Zanzi discovers Alonzo really has arms, Alonzo kills him, but Nanon witnesses the killing without seeing Alonzo's face; however, she does see the telltale ...",
    "avg_vote": "7.8",
    "imdb_score": "7.8",
    "votes": 7196,
    "metascore": null,
    "budget": 217000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": 4841,
    "reviews_from_users": 109,
    "reviews_from_critics": 53,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTk3MjQ0MzYzMF5BMl5BanBnXkFtZTgwNDg1NDM4MTE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Frank Lanning",
        "Joan Crawford",
        "John George",
        "Lon Chaney",
        "Nick De Ruiz",
        "Norman Kerry"
    ],
    "directors": [
        "Tod Browning"
    ],
    "writers": [
        "Tod Browning",
        "Waldemar Young"
    ],
    "genres": [
        "Drama",
        "Horror",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}