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

{
    "id": 12249,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/12249?format=api",
    "title": "Amleto",
    "original_title": "Hamlet",
    "year": 1921,
    "date_published": "1921-01-27",
    "duration": 131,
    "description": "Danish silent movie-star Asta Nielsen formed her own production company to make this film, in which new elements are combined with features (and a few lines) familiar from Shakespeare's ...",
    "long_description": "Danish silent movie-star Asta Nielsen formed her own production company to make this film, in which new elements are combined with features (and a few lines) familiar from Shakespeare's version of the legend. The most important of these changes sees Hamlet made into a female character - a princess forced to masquerade as a man by her scheming mother; from this follows Hamlet's secret passion for Horatio and rivalry with Ophelia for his love. Queen Gertrude is here presented as conspiring in her first husband's murder, and the old king's ghost does not appear - young Hamlet merely hears a voice from the tomb and (apparently) dreams of him. In addition, Hamlet now kills Claudius (in a fire) immediately upon returning from Norway with an army led by old school- friend Fortinbras, and it falls to Gertrude to engineer Hamlet's death in the fencing match as well as kill herself by accidentally drinking the poisoned wine.",
    "avg_vote": "7.0",
    "imdb_score": "7.0",
    "votes": 385,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 5,
    "reviews_from_critics": 8,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTFhOTFmNTMtY2MzYy00NDg2LWFlODgtM2ZmMTIzYmFiMTJmXkEyXkFqcGdeQXVyNjA5MTAzODY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Anton De Verdier",
        "Asta Nielsen",
        "Eduard von Winterstein",
        "Fritz Achterberg",
        "Hans Junkermann",
        "Heinz Stieda",
        "Lilly Jacobson",
        "Mathilde Brandt",
        "Paul Conradi"
    ],
    "directors": [
        "Heinz Schall",
        "Svend Gade"
    ],
    "writers": [
        "Edward P. Vining",
        "Erwin Gepard"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "Germany"
    ],
    "languages": [
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Art-Film GmbH"
}