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

{
    "id": 14446,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/14446?format=api",
    "title": "Il tesoro",
    "original_title": "Der Schatz",
    "year": 1923,
    "date_published": "1924-01-01",
    "duration": 80,
    "description": "In and around a bell maker near Marburg (today Slovenia) people tell the story of a treasure that was hidden during the Turki invasion of 1683, the year the Turkish Army was besieging ...",
    "long_description": "In and around a bell maker near Marburg (today Slovenia) people tell the story of a treasure that was hidden during the Turki invasion of 1683, the year the Turkish Army was besieging Vienna. Everybody think it's nonsense except for an old worker there, who feels that the treasure must be in the bell maker's house. A young traveling worker who has fallen in love with the bell maker's daughter Beate makes fun of this, but she convinces him that the old worker is not that nuts. So he starts searching for himself, and soon he finds it, as well as the old worker. He tells his master, who decides, that the young one has to disappear. He and Beate are leaving, while the old worker offers his part of the treasure to the master if he allows him to marry Beate. Beate, after coming home, hears of that and leaves together with the young worker.",
    "avg_vote": "6.7",
    "imdb_score": "6.7",
    "votes": 249,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 3,
    "reviews_from_critics": 5,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZTk2MTE2NDEtYzBlZi00ZWU0LTkwYmQtNGM0MDY3Y2E1Yjg4XkEyXkFqcGdeQXVyMTY4MjQ0NzU@._V1_UY268_CR30,0,182,268_AL_.jpg",
    "actors": [
        "Albert Steinrück",
        "Hans Brausewetter",
        "Ilka Grüning",
        "Lucie Mannheim",
        "Werner Krauss"
    ],
    "directors": [
        "Georg Wilhelm Pabst"
    ],
    "writers": [
        "Rudolph Hans Bartsch",
        "Willy Hennings"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "Germany"
    ],
    "languages": [
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Carl Froelich-Film GmbH (I)"
}