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

{
    "id": 16392,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16392?format=api",
    "title": "Die Stadt ohne Juden",
    "original_title": "Die Stadt ohne Juden",
    "year": 1924,
    "date_published": "1924-05-05",
    "duration": 80,
    "description": "Jews are expelled from the city of Utopia.",
    "long_description": "In the Republic of Utopia, because of the bad economic crisis ailing the nation, the Jews are made the scapegoats for the economic and social ills affecting the population; therefore, the government decides to expel them. Leo Strakosch is among the exiled. He is engaged to Counsellor's Linder's daughter. He gets into the Republic, in a clandestine way, to show to the society the wrongness of their anti-Semitic prejudice. Bettauer's novel differs essentially from the film version. \"Vienna\" was named \"Utopia\". Even a happy ending was provided.",
    "avg_vote": "6.4",
    "imdb_score": "6.4",
    "votes": 249,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 7,
    "reviews_from_critics": 11,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNWIwYmI2YzYtYzJjMi00MTViLWIyM2ItZDA1Nzc4M2QzY2RkL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNTM2NTg3Nzg@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Abisch Meisels",
        "Albrecht Attems",
        "Anny Miletty",
        "Armin Berg",
        "Armin Seydelmann",
        "Eugen Neufeld",
        "Ferdinand Mayerhofer",
        "Gisela Werbisek",
        "Hans Effenberger",
        "Hans Moser",
        "Johannes Riemann",
        "Karl Tema",
        "Laura Glucksman",
        "Mizi Griebl",
        "Theodor Weiser"
    ],
    "directors": [
        "H.K. Breslauer"
    ],
    "writers": [
        "Hugo Bettauer",
        "Ida Jenbach"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "Austria"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "H. K. Breslauer-Film"
}