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

{
    "id": 14586,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/14586?format=api",
    "title": "Das Wachsfigurenkabinett",
    "original_title": "Das Wachsfigurenkabinett",
    "year": 1924,
    "date_published": "1925-01-01",
    "duration": 107,
    "description": "A wax museum hires a writer to give the sculptures stories. The writer imagines himself and the museum owner's daughter in the stories.",
    "long_description": "The owner of a Waxmuseum needs for three of his models stories to be told to the audience. For that reason he has hired a writer, who after one look at the owner's pretty daughter, starts writing stories featuring the models, the daughter and himself. In the first, he is a baker, married to the girl, who is a little bit too much flirting with the customers, among them the wezir of sultan Harun Al-Rashid, who has just ordered his execution because the smell from the bakery is drifting to his palace, yet Harun Al-Rashid wants to meet the beautiful girl himself, while an angry baker is trying to get the Sultan's whishing ring to proof he's not a weakling... The second story is about Tzar Ivan the Terrible who likes watching people die together with his court-chemist. When he orders the execution of the chemist, the chemist thinks of a nice revanche, but till the revanche works, a nobleman is murdered, his daughter kidnapped by Ivan and her groom tortured. While writing the third story ...",
    "avg_vote": "6.6",
    "imdb_score": "6.6",
    "votes": 1765,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 25,
    "reviews_from_critics": 27,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjA2MjI3MDMxOF5BMl5BanBnXkFtZTgwODE5MDgwMjE@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Conrad Veidt",
        "Emil Jannings",
        "Ernst Legal",
        "Georg John",
        "John Gottowt",
        "Olga Belajeff",
        "Paul Biensfeldt",
        "Werner Krauss",
        "William Dieterle"
    ],
    "directors": [
        "Leo Birinsky",
        "Paul Leni"
    ],
    "writers": [
        "Henrik Galeen"
    ],
    "genres": [
        "Fantasy",
        "Horror"
    ],
    "countries": [
        "Germany"
    ],
    "languages": [
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Neptune-Film A.G."
}