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

{
    "id": 23694,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23694?format=api",
    "title": "L'isola degli zombies",
    "original_title": "White Zombie",
    "year": 1932,
    "date_published": "1932-08-04",
    "duration": 69,
    "description": "A young man turns to a witch doctor to lure the woman he loves away from her fiancé, but instead turns her into a zombie slave.",
    "long_description": "Young couple Madeleine and Neil are coaxed by acquaintance Monsieur Beaumont to get married on his Haitian plantation. Beaumont's motives are purely selfish as he makes every attempt to convince the beautiful young girl to run away with him. For help Beaumont turns to the devious Legendre, a man who runs his mill by mind controlling people he has turned into zombies. After Beaumont uses Legendre's zombie potion on Madeleine, he is dissatisfied with her emotionless being and wants her to be changed back. Legendre has no intention of doing this and he drugs Beaumont as well to add to his zombie collection. Meanwhile, grieving 'widower' Neil is convinced by a local priest that Madeleine may still be alive and he seeks her out.",
    "avg_vote": "6.3",
    "imdb_score": "6.3",
    "votes": 9252,
    "metascore": null,
    "budget": 50000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 180,
    "reviews_from_critics": 94,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjEwODU3MDI1OF5BMl5BanBnXkFtZTgwODY4NzYwMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Annette Stone",
        "Bela Lugosi",
        "Brandon Hurst",
        "Claude Morgan",
        "Dan Crimmins",
        "Frederick Peters",
        "George Burr MacAnnan",
        "John Fergusson",
        "John Harron",
        "John T. Prince",
        "Joseph Cawthorn",
        "Madge Bellamy",
        "Robert Frazer",
        "Velma Gresham"
    ],
    "directors": [
        "Victor Halperin"
    ],
    "writers": [
        "Garnett Weston"
    ],
    "genres": [
        "Horror"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Victor & Edward Halperin Productions"
}