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

{
    "id": 16104,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16104?format=api",
    "title": "La vedova allegra",
    "original_title": "The Merry Widow",
    "year": 1925,
    "date_published": "1926-01-25",
    "duration": 137,
    "description": "A prince must woo the now wealthy dancer he once abandoned in order to keep her money in the country in order to keep it from crashing economically.",
    "long_description": "Prince Danilo falls in love with dancer Sally O'Hara. His uncle, King Nikita I of Monteblanco forbids the marriage because she is a commoner. Thinking she has been jilted by her prince, Sally marries old, lecherous Baron Sadoja, whose wealth has kept the kingdom afloat. When he dies suddenly, Sally must be wooed all over again by Danilo.",
    "avg_vote": "7.3",
    "imdb_score": "7.3",
    "votes": 2139,
    "metascore": null,
    "budget": 608016,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 16,
    "reviews_from_critics": 19,
    "image_url": "https://m.media-amazon.com/images/M/MV5BODc0MjYyOWItNmQ0Yy00YjNjLThjYWUtZGUwOTdmNzIzNDBlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UY268_CR9,0,182,268_AL_.jpg",
    "actors": [
        "Edward Connelly",
        "George Fawcett",
        "John Gilbert",
        "Josephine Crowell",
        "Mae Murray",
        "Roy D'Arcy",
        "Tully Marshall"
    ],
    "directors": [
        "Erich von Stroheim"
    ],
    "writers": [
        "Benjamin Glazer",
        "Erich von Stroheim"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "An Erich von Stroheim Production"
}