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

{
    "id": 12494,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/12494?format=api",
    "title": "Destino",
    "original_title": "Der müde Tod",
    "year": 1921,
    "date_published": "1925-01-01",
    "duration": 97,
    "description": "When a woman's fiancé disappears, Death gives her three chances to save him from his fate.",
    "long_description": "As a young couple stops and rests in a small village inn, the man is abducted by Death and is sequestered behind a huge doorless, windowless wall. The woman finds a mystic entrance and is met by Death, who tells her three separate stories set in exotic locales, all involving circumstances similar to hers. In each story, a woman, trying to save her lover from his ultimate tragic fate, fails. The young lady realizes the meaning of the tales and takes the only step she can to reunite herself with her lover.",
    "avg_vote": "7.7",
    "imdb_score": "7.7",
    "votes": 5243,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": 12156,
    "worldwide_gross_income": 12156,
    "reviews_from_users": 34,
    "reviews_from_critics": 43,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNmQxOGUwMDUtZjdmMC00MGRiLWE1MmItZjkyODdkYzY0YWZhL2ltYWdlXkEyXkFqcGdeQXVyMTg2NTc4MzA@._V1_UY268_CR16,0,182,268_AL_.jpg",
    "actors": [
        "Bernhard Goetzke",
        "Erich Pabst",
        "Georg John",
        "Grete Berger",
        "Hans Sternberg",
        "Hermann Picha",
        "Karl Platen",
        "Karl Rückert",
        "Lil Dagover",
        "Lydia Potechina",
        "Max Adalbert",
        "Max Pfeiffer",
        "Paul Rehkopf",
        "Walter Janssen",
        "Wilhelm Diegelmann"
    ],
    "directors": [
        "Fritz Lang"
    ],
    "writers": [
        "Fritz Lang",
        "Thea von Harbou"
    ],
    "genres": [
        "Drama",
        "Fantasy",
        "Thriller"
    ],
    "countries": [
        "Germany"
    ],
    "languages": [
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Decla-Bioscop AG"
}