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

{
    "id": 17136,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/17136?format=api",
    "title": "Metropolis",
    "original_title": "Metropolis",
    "year": 1927,
    "date_published": "1928-10-01",
    "duration": 153,
    "description": "In a futuristic city sharply divided between the working class and the city planners, the son of the city's mastermind falls in love with a working class prophet who predicts the coming of a savior to mediate their differences.",
    "long_description": "Sometime in the future, the city of Metropolis is home to a Utopian society where its wealthy residents live a carefree life. One of those is Freder Fredersen. One day, he spots a beautiful woman with a group of children, she and the children quickly disappear. Trying to follow her, he is horrified to find an underground world of workers who apparently run the machinery that keeps the Utopian world above ground functioning. One of the few people above ground who knows about the world below is Freder's father, John Fredersen, who is the founder and master of Metropolis. Freder learns that the woman is called Maria, who espouses the need to join the \"hands\" - the workers - to the \"head\" - those in power above - by a mediator who will act as the \"heart\". Freder wants to help the plight of the workers in their struggle for a better life. But when John learns of what Maria is advocating and that Freder has joined their cause, with the assistance of an old colleague. an inventor called ...",
    "avg_vote": "8.3",
    "imdb_score": "8.3",
    "votes": 158566,
    "metascore": "98.0",
    "budget": 6000000,
    "budget_currency": "DEM",
    "usa_gross_income": 1236166,
    "worldwide_gross_income": 1349711,
    "reviews_from_users": 495,
    "reviews_from_critics": 208,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTg5YWIyMWUtZDY5My00Zjc1LTljOTctYmI0MWRmY2M2NmRkXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Alfred Abel",
        "Brigitte Helm",
        "Erwin Biswanger",
        "Fritz Rasp",
        "Gustav Fröhlich",
        "Heinrich George",
        "Rudolf Klein-Rogge",
        "Theodor Loos"
    ],
    "directors": [
        "Fritz Lang"
    ],
    "writers": [
        "Thea von Harbou"
    ],
    "genres": [
        "Drama",
        "Sci-Fi"
    ],
    "countries": [
        "Germany"
    ],
    "languages": [
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Universum Film (UFA)"
}