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

{
    "id": 19558,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/19558?format=api",
    "title": "Sinfonia nuziale",
    "original_title": "The Wedding March",
    "year": 1928,
    "date_published": "1930-01-03",
    "duration": 113,
    "description": "A young impoverished aristocrat falls in love with an inn-keepers daughter, but has to marry money.",
    "long_description": "Prince Nikki, Lieutenant of the Guard in pre WWI Vienna, is flat broke, but the only advice he gets from his parents is either to shoot himself or to marry money. During the Chorpus Christi parade his horse accidentaly hurts poor Mitzi, the daughter of inn-keepers in a Viennese suburb, who is, according to the wishes of her parents, going to marry the butcher Schani. When Nikki visits her at the hospital, they fall in love, much to the dislike of her parents and Schani. Nikki's parents, meanwhile have arranged a prospective marriage with Cecilia, the limping daughter of a very rich non-aristocratic industrial. Due to the fact, that Nikki's father is a general in the Austrian-Hungarian Army, resitance is useless. When Mitzi, after hearing of it, is still refusing Schani's proposal, he vowes to shoot Nikki when he leaves the church.",
    "avg_vote": "7.5",
    "imdb_score": "7.4",
    "votes": 1525,
    "metascore": null,
    "budget": 1000000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 17,
    "reviews_from_critics": 21,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjI4NTY2OTEzOV5BMl5BanBnXkFtZTgwNTE1NDU5MTE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Anton Vaverka",
        "Cesare Gravina",
        "Dale Fuller",
        "Elena Jurado",
        "Erich von Stroheim",
        "Fay Wray",
        "George Fawcett",
        "George Nichols",
        "Hughie Mack",
        "Matthew Betz",
        "Maude George",
        "Sidney Bracey",
        "Tiny Jones",
        "Zasu Pitts"
    ],
    "directors": [
        "Erich von Stroheim"
    ],
    "writers": [
        "Erich von Stroheim",
        "Harry Carr"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Famous Lasky Corporation"
}